schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
datahub_ingestion_schema.json | sqlalchemy_uri | URI of database to connect to. See https://docs.sqlalchemy.org/en/14/core/engines.html#database-urls. Takes precedence over other connection parameters. | {"type": "string"} |
datahub_ingestion_schema.json | tableau_config | Any non-Dataset source that produces lineage to Datasets should inherit this class.
e.g. Orchestrators, Pipelines, BI Tools etc. | {"type": "object", "properties": {"connect_uri": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "token_name": {"type": "string"}, "token_value": {"type": "string"}, "site": {"default": "", "type": "string"}, "platform_instance": {"type": "string"}, "ssl_verify": {"default": true, "anyOf": [{"type": "boolean"}, {"type": "string"}]}, "extract_column_level_lineage": {"default": true, "type": "boolean"}, "env": {"default": "PROD", "type": "string"}, "stateful_ingestion": {}, "platform_instance_map": {"type": "object", "additionalProperties": {"type": "string"}}, "projects": {"default": ["default"], "type": "array", "items": {"type": "string"}}, "project_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "project_path_separator": {"default": "/", "type": "string"}, "default_schema_map": {"default": {}, "type": "object"}, "ingest_tags": {"default": false, "type": "boolean"}, "ingest_owner": {"default": false, "type": "boolean"}, "ingest_tables_external": {"default": false, "type": "boolean"}, "page_size": {"default": 10, "type": "integer"}, "workbook_page_size": {"default": 1, "type": "integer"}, "lineage_overrides": {"allOf": [{}]}, "extract_usage_stats": {"default": false, "type": "boolean"}, "ingest_embed_url": {"default": false, "type": "boolean"}, "ingest_external_links_for_dashboards": {"default": true, "type": "boolean"}, "ingest_external_links_for_charts": {"default": true, "type": "boolean"}, "extract_project_hierarchy": {"default": true, "type": "boolean"}, "extract_lineage_from_unsupported_custom_sql_queries": {"default": false, "type": "boolean"}}, "required": ["connect_uri"], "additionalProperties": false} |
datahub_ingestion_schema.json | connect_uri | Tableau host URL. | {"type": "string"} |
datahub_ingestion_schema.json | username | Tableau username, must be set if authenticating using username/password. | {"type": "string"} |
datahub_ingestion_schema.json | password | Tableau password, must be set if authenticating using username/password. | {"type": "string"} |
datahub_ingestion_schema.json | token_name | Tableau token name, must be set if authenticating using a personal access token. | {"type": "string"} |
datahub_ingestion_schema.json | token_value | Tableau token value, must be set if authenticating using a personal access token. | {"type": "string"} |
datahub_ingestion_schema.json | site | Tableau Site. Always required for Tableau Online. Use emptystring to connect with Default site on Tableau Server. | {"default": "", "type": "string"} |
datahub_ingestion_schema.json | platform_instance | The instance of the platform that all assets produced by this recipe belong to | {"type": "string"} |
datahub_ingestion_schema.json | ssl_verify | Whether to verify SSL certificates. If using self-signed certificates, set to false or provide the path to the .pem certificate bundle. | {"default": true, "anyOf": [{"type": "boolean"}, {"type": "string"}]} |
datahub_ingestion_schema.json | extract_column_level_lineage | When enabled, extracts column-level lineage from Tableau Datasources | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | env | Environment to use in namespace when constructing URNs. | {"default": "PROD", "type": "string"} |
datahub_ingestion_schema.json | platform_instance_map | A holder for platform -> platform_instance mappings to generate correct dataset urns | {"type": "object", "additionalProperties": {"type": "string"}} |
datahub_ingestion_schema.json | projects | [deprecated] Use project_pattern instead. List of tableau projects | {"default": ["default"], "type": "array", "items": {"type": "string"}} |
datahub_ingestion_schema.json | project_pattern | Filter for specific Tableau projects. For example, use 'My Project' to ingest a root-level Project with name 'My Project', or 'My Project/Nested Project' to ingest a nested Project with name 'Nested Project'. By default, all Projects nested inside a matching Project will be included in ingestion. You can both allow and deny projects based on their name using their name, or a Regex pattern. Deny patterns always take precedence over allow patterns. By default, all projects will be ingested. | {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]} |
datahub_ingestion_schema.json | project_path_separator | The separator used for the project_pattern field between project names. By default, we use a slash. You can change this if your Tableau projects contain slashes in their names, and you'd like to filter by project. | {"default": "/", "type": "string"} |
datahub_ingestion_schema.json | default_schema_map | Default schema to use when schema is not found. | {"default": {}, "type": "object"} |
datahub_ingestion_schema.json | ingest_tags | Ingest Tags from source. This will override Tags entered from UI | {"default": false, "type": "boolean"} |
datahub_ingestion_schema.json | ingest_owner | Ingest Owner from source. This will override Owner info entered from UI | {"default": false, "type": "boolean"} |
datahub_ingestion_schema.json | ingest_tables_external | Ingest details for tables external to (not embedded in) tableau as entities. | {"default": false, "type": "boolean"} |
datahub_ingestion_schema.json | page_size | [advanced] Number of metadata objects (e.g. CustomSQLTable, PublishedDatasource, etc) to query at a time using the Tableau API. | {"default": 10, "type": "integer"} |
datahub_ingestion_schema.json | workbook_page_size | [advanced] Number of workbooks to query at a time using the Tableau API. | {"default": 1, "type": "integer"} |
datahub_ingestion_schema.json | lineage_overrides | Mappings to change generated dataset urns. Use only if you really know what you are doing. | {"allOf": [{}]} |
datahub_ingestion_schema.json | extract_usage_stats | [experimental] Extract usage statistics for dashboards and charts. | {"default": false, "type": "boolean"} |
datahub_ingestion_schema.json | ingest_embed_url | Ingest a URL to render an embedded Preview of assets within Tableau. | {"default": false, "type": "boolean"} |
datahub_ingestion_schema.json | ingest_external_links_for_dashboards | Ingest a URL to link out to from dashboards. | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | ingest_external_links_for_charts | Ingest a URL to link out to from charts. | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | extract_project_hierarchy | Whether to extract entire project hierarchy for nested projects. | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | extract_lineage_from_unsupported_custom_sql_queries | [Experimental] Whether to extract lineage from unsupported custom sql queries using SQL parsing | {"default": false, "type": "boolean"} |
datahub_ingestion_schema.json | mssql_config | Base configuration class for stateful ingestion for source configs to inherit from. | {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "options": {"type": "object"}, "schema_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "table_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "view_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "profile_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "domain": {"default": {}, "type": "object", "additionalProperties": {}}, "include_views": {"default": true, "type": "boolean"}, "include_tables": {"default": true, "type": "boolean"}, "include_table_location_lineage": {"default": true, "type": "boolean"}, "profiling": {"default": {"enabled": false, "operation_config": {"lower_freq_profile_enabled": false, "profile_day_of_week": null, "profile_date_of_month": null}, "limit": null, "offset": null, "report_dropped_profiles": false, "turn_off_expensive_profiling_metrics": false, "profile_table_level_only": false, "include_field_null_count": true, "include_field_distinct_count": true, "include_field_min_value": true, "include_field_max_value": true, "include_field_mean_value": true, "include_field_median_value": true, "include_field_stddev_value": true, "include_field_quantiles": false, "include_field_distinct_value_frequencies": false, "include_field_histogram": false, "include_field_sample_values": true, "field_sample_values_limit": 20, "max_number_of_fields_to_profile": null, "profile_if_updated_since_days": null, "profile_table_size_limit": 5, "profile_table_row_limit": 5000000, "profile_table_row_count_estimate_only": false, "max_workers": 10, "query_combiner_enabled": true, "catch_exceptions": true, "partition_profiling_enabled": true, "partition_datetime": null}, "allOf": [{}]}, "username": {"type": "string"}, "password": {"type": "string", "writeOnly": true, "format": "password"}, "host_port": {"default": "localhost:1433", "type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "sqlalchemy_uri": {"type": "string"}, "use_odbc": {"default": false, "type": "boolean"}, "uri_args": {"default": {}, "type": "object", "additionalProperties": {"type": "string"}}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "convert_urns_to_lowercase": {"default": false, "type": "boolean"}}, "additionalProperties": false} |
datahub_ingestion_schema.json | env | The environment that all assets produced by this connector belong to | {"default": "PROD", "type": "string"} |
datahub_ingestion_schema.json | platform_instance | The instance of the platform that all assets produced by this recipe belong to | {"type": "string"} |
datahub_ingestion_schema.json | options | Any options specified here will be passed to [SQLAlchemy.create_engine](https://docs.sqlalchemy.org/en/14/core/engines.html#sqlalchemy.create_engine) as kwargs. | {"type": "object"} |
datahub_ingestion_schema.json | schema_pattern | Regex patterns for schemas to filter in ingestion. Specify regex to only match the schema name. e.g. to match all tables in schema analytics, use the regex 'analytics' | {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]} |
datahub_ingestion_schema.json | table_pattern | Regex patterns for tables to filter in ingestion. Specify regex to match the entire table name in database.schema.table format. e.g. to match all tables starting with customer in Customer database and public schema, use the regex 'Customer.public.customer.*' | {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]} |
datahub_ingestion_schema.json | view_pattern | Regex patterns for views to filter in ingestion. Note: Defaults to table_pattern if not specified. Specify regex to match the entire view name in database.schema.view format. e.g. to match all views starting with customer in Customer database and public schema, use the regex 'Customer.public.customer.*' | {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]} |
datahub_ingestion_schema.json | profile_pattern | Regex patterns to filter tables (or specific columns) for profiling during ingestion. Note that only tables allowed by the `table_pattern` will be considered. | {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]} |
datahub_ingestion_schema.json | domain | Attach domains to databases, schemas or tables during ingestion using regex patterns. Domain key can be a guid like *urn:li:domain:ec428203-ce86-4db3-985d-5a8ee6df32ba* or a string like "Marketing".) If you provide strings, then datahub will attempt to resolve this name to a guid, and will error out if this fails. There can be multiple domain keys specified. | {"default": {}, "type": "object", "additionalProperties": {}} |
datahub_ingestion_schema.json | include_views | Whether views should be ingested. | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | include_tables | Whether tables should be ingested. | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | include_table_location_lineage | If the source supports it, include table lineage to the underlying storage location. | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | username | username | {"type": "string"} |
datahub_ingestion_schema.json | password | password | {"type": "string", "writeOnly": true, "format": "password"} |
datahub_ingestion_schema.json | host_port | MSSQL host URL. | {"default": "localhost:1433", "type": "string"} |
datahub_ingestion_schema.json | database | database (catalog). If set to Null, all databases will be considered for ingestion. | {"type": "string"} |
datahub_ingestion_schema.json | database_alias | [Deprecated] Alias to apply to database when ingesting. | {"type": "string"} |
datahub_ingestion_schema.json | sqlalchemy_uri | URI of database to connect to. See https://docs.sqlalchemy.org/en/14/core/engines.html#database-urls. Takes precedence over other connection parameters. | {"type": "string"} |
datahub_ingestion_schema.json | use_odbc | See https://docs.sqlalchemy.org/en/14/dialects/mssql.html#module-sqlalchemy.dialects.mssql.pyodbc. | {"default": false, "type": "boolean"} |
datahub_ingestion_schema.json | uri_args | Arguments to URL-encode when connecting. See https://docs.microsoft.com/en-us/sql/connect/odbc/dsn-connection-string-attribute?view=sql-server-ver15. | {"default": {}, "type": "object", "additionalProperties": {"type": "string"}} |
datahub_ingestion_schema.json | database_pattern | Regex patterns for databases to filter in ingestion. | {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]} |
datahub_ingestion_schema.json | convert_urns_to_lowercase | Enable to convert the SQL Server assets urns to lowercase | {"default": false, "type": "boolean"} |
datahub_ingestion_schema.json | nifi_config | Any source that produces dataset urns in a single environment should inherit this class | {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "site_url": {"type": "string"}, "auth": {"default": "NO_AUTH", "allOf": [{}]}, "provenance_days": {"default": 7, "type": "integer"}, "process_group_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "site_name": {"default": "default", "type": "string"}, "site_url_to_site_name": {"default": {}, "type": "object", "additionalProperties": {"type": "string"}}, "username": {"type": "string"}, "password": {"type": "string"}, "client_cert_file": {"type": "string"}, "client_key_file": {"type": "string"}, "client_key_password": {"type": "string"}, "ca_file": {"anyOf": [{"type": "boolean"}, {"type": "string"}]}}, "required": ["site_url"], "additionalProperties": false} |
datahub_ingestion_schema.json | env | The environment that all assets produced by this connector belong to | {"default": "PROD", "type": "string"} |
datahub_ingestion_schema.json | site_url | URL for Nifi, ending with /nifi/. e.g. https://mynifi.domain/nifi/ | {"type": "string"} |
datahub_ingestion_schema.json | auth | Nifi authentication. must be one of : NO_AUTH, SINGLE_USER, CLIENT_CERT, KERBEROS | {"default": "NO_AUTH", "allOf": [{}]} |
datahub_ingestion_schema.json | provenance_days | time window to analyze provenance events for external datasets | {"default": 7, "type": "integer"} |
datahub_ingestion_schema.json | process_group_pattern | regex patterns for filtering process groups | {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]} |
datahub_ingestion_schema.json | site_name | Site name to identify this site with, useful when using input and output ports receiving remote connections | {"default": "default", "type": "string"} |
datahub_ingestion_schema.json | site_url_to_site_name | Lookup to find site_name for site_url ending with /nifi/, required if using remote process groups in nifi flow | {"default": {}, "type": "object", "additionalProperties": {"type": "string"}} |
datahub_ingestion_schema.json | username | Nifi username, must be set for auth = "SINGLE_USER" | {"type": "string"} |
datahub_ingestion_schema.json | password | Nifi password, must be set for auth = "SINGLE_USER" | {"type": "string"} |
datahub_ingestion_schema.json | client_cert_file | Path to PEM file containing the public certificates for the user/client identity, must be set for auth = "CLIENT_CERT" | {"type": "string"} |
datahub_ingestion_schema.json | client_key_file | Path to PEM file containing the client’s secret key | {"type": "string"} |
datahub_ingestion_schema.json | client_key_password | The password to decrypt the client_key_file | {"type": "string"} |
datahub_ingestion_schema.json | ca_file | Path to PEM file containing certs for the root CA(s) for the NiFi | {"anyOf": [{"type": "boolean"}, {"type": "string"}]} |
datahub_ingestion_schema.json | ldap_config | Config used by the LDAP Source. | {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "ldap_server": {"type": "string"}, "ldap_user": {"type": "string"}, "ldap_password": {"type": "string"}, "base_dn": {"type": "string"}, "filter": {"default": "(objectClass=*)", "type": "string"}, "attrs_list": {"type": "array", "items": {"type": "string"}}, "custom_props_list": {"type": "array", "items": {"type": "string"}}, "drop_missing_first_last_name": {"default": true, "type": "boolean"}, "page_size": {"default": 20, "type": "integer"}, "manager_filter_enabled": {"default": true, "type": "boolean"}, "manager_pagination_enabled": {"default": true, "type": "boolean"}, "pagination_enabled": {"default": true, "type": "boolean"}, "user_attrs_map": {"default": {}, "type": "object"}, "group_attrs_map": {"default": {}, "type": "object"}}, "required": ["ldap_server", "ldap_user", "ldap_password", "base_dn"], "additionalProperties": false} |
datahub_ingestion_schema.json | env | The environment that all assets produced by this connector belong to | {"default": "PROD", "type": "string"} |
datahub_ingestion_schema.json | platform_instance | The instance of the platform that all assets produced by this recipe belong to | {"type": "string"} |
datahub_ingestion_schema.json | ldap_server | LDAP server URL. | {"type": "string"} |
datahub_ingestion_schema.json | ldap_user | LDAP user. | {"type": "string"} |
datahub_ingestion_schema.json | ldap_password | LDAP password. | {"type": "string"} |
datahub_ingestion_schema.json | base_dn | LDAP DN. | {"type": "string"} |
datahub_ingestion_schema.json | filter | LDAP extractor filter. | {"default": "(objectClass=*)", "type": "string"} |
datahub_ingestion_schema.json | attrs_list | Retrieved attributes list | {"type": "array", "items": {"type": "string"}} |
datahub_ingestion_schema.json | custom_props_list | A list of custom attributes to extract from the LDAP provider. | {"type": "array", "items": {"type": "string"}} |
datahub_ingestion_schema.json | drop_missing_first_last_name | If set to true, any users without first and last names will be dropped. | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | page_size | Size of each page to fetch when extracting metadata. | {"default": 20, "type": "integer"} |
datahub_ingestion_schema.json | manager_filter_enabled | Use LDAP extractor filter to search managers. | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | manager_pagination_enabled | [deprecated] Use pagination_enabled | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | pagination_enabled | Use pagination while do search query (enabled by default). | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | dbt-cloud_config | Base configuration class for stateful ingestion for source configs to inherit from. | {"type": "object", "properties": {"incremental_lineage": {"default": true, "type": "boolean"}, "sql_parser_use_external_process": {"default": false, "type": "boolean"}, "env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {"allOf": [{}]}, "target_platform": {"type": "string"}, "target_platform_instance": {"type": "string"}, "use_identifiers": {"default": false, "type": "boolean"}, "entities_enabled": {"default": {"models": "YES", "sources": "YES", "seeds": "YES", "snapshots": "YES", "test_definitions": "YES", "test_results": "YES"}, "allOf": [{}]}, "tag_prefix": {"default": "dbt:", "type": "string"}, "node_name_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "meta_mapping": {"default": {}, "type": "object"}, "column_meta_mapping": {"default": {}, "type": "object"}, "query_tag_mapping": {"default": {}, "type": "object"}, "write_semantics": {"default": "PATCH", "type": "string"}, "strip_user_ids_from_email": {"default": false, "type": "boolean"}, "enable_owner_extraction": {"default": true, "type": "boolean"}, "owner_extraction_pattern": {"type": "string"}, "include_env_in_assertion_guid": {"default": false, "type": "boolean"}, "convert_column_urns_to_lowercase": {"default": false, "type": "boolean"}, "enable_meta_mapping": {"default": true, "type": "boolean"}, "enable_query_tag_mapping": {"default": true, "type": "boolean"}, "metadata_endpoint": {"default": "https://metadata.cloud.getdbt.com/graphql", "type": "string"}, "token": {"type": "string"}, "account_id": {"type": "integer"}, "project_id": {"type": "integer"}, "job_id": {"type": "integer"}, "run_id": {"type": "integer"}}, "required": ["target_platform", "token", "account_id", "project_id", "job_id"], "additionalProperties": false} |
datahub_ingestion_schema.json | incremental_lineage | When enabled, emits lineage as incremental to existing lineage already in DataHub. When disabled, re-states lineage on each run. | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | sql_parser_use_external_process | When enabled, sql parser will run in isolated in a separate process. This can affect processing time but can protect from sql parser's mem leak. | {"default": false, "type": "boolean"} |
datahub_ingestion_schema.json | env | Environment to use in namespace when constructing URNs. | {"default": "PROD", "type": "string"} |
datahub_ingestion_schema.json | platform_instance | The instance of the platform that all assets produced by this recipe belong to | {"type": "string"} |
datahub_ingestion_schema.json | stateful_ingestion | DBT Stateful Ingestion Config. | {"allOf": [{}]} |
datahub_ingestion_schema.json | target_platform | The platform that dbt is loading onto. (e.g. bigquery / redshift / postgres etc.) | {"type": "string"} |
datahub_ingestion_schema.json | target_platform_instance | The platform instance for the platform that dbt is operating on. Use this if you have multiple instances of the same platform (e.g. redshift) and need to distinguish between them. | {"type": "string"} |
datahub_ingestion_schema.json | use_identifiers | Use model identifier instead of model name if defined (if not, default to model name). | {"default": false, "type": "boolean"} |
datahub_ingestion_schema.json | entities_enabled | Controls for enabling / disabling metadata emission for different dbt entities (models, test definitions, test results, etc.) | {"default": {"models": "YES", "sources": "YES", "seeds": "YES", "snapshots": "YES", "test_definitions": "YES", "test_results": "YES"}, "allOf": [{}]} |
datahub_ingestion_schema.json | tag_prefix | Prefix added to tags during ingestion. | {"default": "dbt:", "type": "string"} |
datahub_ingestion_schema.json | node_name_pattern | regex patterns for dbt model names to filter in ingestion. | {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]} |
datahub_ingestion_schema.json | meta_mapping | mapping rules that will be executed against dbt meta properties. Refer to the section below on dbt meta automated mappings. | {"default": {}, "type": "object"} |
datahub_ingestion_schema.json | column_meta_mapping | mapping rules that will be executed against dbt column meta properties. Refer to the section below on dbt meta automated mappings. | {"default": {}, "type": "object"} |
datahub_ingestion_schema.json | query_tag_mapping | mapping rules that will be executed against dbt query_tag meta properties. Refer to the section below on dbt meta automated mappings. | {"default": {}, "type": "object"} |
datahub_ingestion_schema.json | write_semantics | Whether the new tags, terms and owners to be added will override the existing ones added only by this source or not. Value for this config can be "PATCH" or "OVERRIDE" | {"default": "PATCH", "type": "string"} |
datahub_ingestion_schema.json | strip_user_ids_from_email | Whether or not to strip email id while adding owners using dbt meta actions. | {"default": false, "type": "boolean"} |
datahub_ingestion_schema.json | enable_owner_extraction | When enabled, ownership info will be extracted from the dbt meta | {"default": true, "type": "boolean"} |
datahub_ingestion_schema.json | owner_extraction_pattern | Regex string to extract owner from the dbt node using the `(?P<name>...) syntax` of the [match object](https://docs.python.org/3/library/re.html#match-objects), where the group name must be `owner`. Examples: (1)`r"(?P<owner>(.*)): (\w+) (\w+)"` will extract `jdoe` as the owner from `"jdoe: John Doe"` (2) `r"@(?P<owner>(.*))"` will extract `alice` as the owner from `"@alice"`. | {"type": "string"} |
datahub_ingestion_schema.json | include_env_in_assertion_guid | Prior to version 0.9.4.2, the assertion GUIDs did not include the environment. If you're using multiple dbt ingestion that are only distinguished by env, then you should set this flag to True. | {"default": false, "type": "boolean"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.