schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
datalogic-scan2deploy-ce.json
outer-identity
The outer-identity of the EAP method
{"type": "string", "default": "", "examples": [""]}
datalogic-scan2deploy-ce.json
fast-reconnect
Indicate if fast reconnect should be enabled
{"type": "boolean", "default": false, "examples": [false]}
datalogic-scan2deploy-ce.json
inner-method
Inner EAP authentication method to use
{"type": "string", "enum": ["eap-tls", "eap-MsChapV2", "eap-gtc"], "default": "eap-tls", "examples": ["eap-MsChapV2"]}
datalogic-scan2deploy-ce.json
auto-pac
Indicates if automatic PAC provisioning is used for an EAP-FAST network
{"type": "boolean", "default": false, "examples": [true]}
datalogic-scan2deploy-ce.json
pac-file-path
Full path to the PAC file for manual PAC provisioning
{"type": "string", "default": "", "examples": [""]}
datalogic-scan2deploy-ce.json
pac-aid-info
PAC authority identity (AID) information used to select PAC from a list of PACs on the device
{"type": "string", "default": "", "examples": [""]}
datalogic-scan2deploy-ce.json
deployment
Section used to download a ZIP archive from a server and inflate it to the 'target-path' folder
{"type": "object", "properties": {"scheme": {"type": "string", "enum": ["http", "https"], "default": "http", "examples": ["http"]}, "host": {"type": "string", "default": "", "examples": ["10.1.20.123"]}, "port": {"type": "integer", "default": 80, "examples": [8080], "minimum": 0, "maximum": 65535}, "path": {"type": "string", "default": "", "examples": ["target.zip"]}}, "required": ["host"]}
datalogic-scan2deploy-ce.json
scheme
Deployment download scheme to use
{"type": "string", "enum": ["http", "https"], "default": "http", "examples": ["http"]}
datalogic-scan2deploy-ce.json
host
Host name or internet protocol address of the server from which the resource is to be fetched
{"type": "string", "default": "", "examples": ["10.1.20.123"]}
datalogic-scan2deploy-ce.json
port
TCP/IP port to be used to contact the server
{"type": "integer", "default": 80, "examples": [8080], "minimum": 0, "maximum": 65535}
datalogic-scan2deploy-ce.json
path
Path to server resource to download, complete with query string if needed
{"type": "string", "default": "", "examples": ["target.zip"]}
datalogic-scan2deploy-ce.json
shell
Section for executable shell commands to be performed in the final staging phase
{"type": "object", "required": ["cmds"], "properties": {"cmds": {"type": "array", "items": {"type": "object", "required": ["app-name"], "properties": {"app-name": {"type": "string", "default": "", "examples": ["\\windows\\dldxu.exe"]}, "args": {"type": "string", "default": "", "examples": ["\\FlashDisk\\target\\config.dxu"]}}}}}}
datalogic-scan2deploy-ce.json
cmds
Each object in 'cmds' is a shell command to execute in the final phase of staging
{"type": "array", "items": {"type": "object", "required": ["app-name"], "properties": {"app-name": {"type": "string", "default": "", "examples": ["\\windows\\dldxu.exe"]}, "args": {"type": "string", "default": "", "examples": ["\\FlashDisk\\target\\config.dxu"]}}}}
datalogic-scan2deploy-ce.json
app-name
Full path to the application to be executed
{"type": "string", "default": "", "examples": ["\\windows\\dldxu.exe"]}
datalogic-scan2deploy-ce.json
args
Command line arguments
{"type": "string", "default": "", "examples": ["\\FlashDisk\\target\\config.dxu"]}
jd2cr.schema.json
A crawler rule. - Anything prefixed as "HTML RegEx" will do Java-flavored pattern-matching on the page's raw (unmodified by javascript) HTML.
{"$schema": "http://json-schema.org/draft-07/schema", "type": "object", "required": ["enabled", "name", "rule", "pattern"], "additionalProperties": false, "properties": {"enabled": {"type": "boolean"}, "cookies": {"examples": [[["cookieName", "cookieValue"]]], "type": "array", "items": {"type": "array", "items": [{"type": "string"}, {"type": "string"}]}}, "updateCookies": {"type": "boolean"}, "logging": {"type": "boolean"}, "maxDecryptDepth": {"examples": [1], "type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "pattern": {"examples": ["https?://www\\.example\\.com/subdir1/subdir2/subdir3"], "type": "string", "format": "regex"}, "rule": {"enum": ["DEEPDECRYPT", "REWRITE", "DIRECTHTTP", "FOLLOWREDIRECT", "SUBMITFORM"], "type": "string"}, "packageNamePattern": {"examples": ["<title>(.*?)</title>"], "type": "string", "format": "regex"}, "passwordPattern": {"examples": ["password:([^>]+)>"], "type": "string", "format": "regex"}, "formPattern": {"examples": ["<form id=\"example\">(.*?)</form>"], "type": "string", "format": "regex"}, "deepPattern": {"examples": ["(https?://absolute\\.url\\.example\\.com/subdir1/.*?\\.ext)", "\"((?:https?://missing\\.domain\\.example\\.com\\)?/partial_url_existing_in_page)\""], "oneOf": [{"type": "string"}, {"type": "null"}], "format": "regex"}, "rewriteReplaceWith": {"examples": ["https://example.com/$1"], "type": "string", "format": "regex"}}, "allOf": [{"if": {"properties": {"rule": {"not": {"const": "DEEPDECRYPT"}}}}, "then": {"properties": {"deepPattern": {"type": "null"}, "packageNamePattern": {"type": "null"}, "passwordPattern": {"type": "null"}}}}, {"if": {"properties": {"rule": {"not": {"const": "REWRITE"}}}}, "then": {"properties": {"rewriteReplaceWith": {"type": "null"}}}}, {"if": {"properties": {"rule": {"not": {"oneOf": [{"const": "DIRECTHTTP"}, {"const": "DEEPDECRYPT"}, {"const": "SUBMITFORM"}, {"const": "FOLLOWREDIRECT"}]}}}}, "then": {"properties": {"updateCookies": {"type": "null"}, "cookies": {"type": "null"}}}}]}
jd2cr.schema.json
enabled
- Type: Boolean - Applies to rule: ALL - Purpose: Enables or disables this rule
{"type": "boolean"}
jd2cr.schema.json
cookies
- Type: Array of length-2 Arrays - Applies to rule: DIRECTHTTP, DEEPDECRYPT, SUBMITFORM or FOLLOWREDIRECT - Purpose: A list of length-2 arrays in the form [["cookieName", "cookieValue"],[..., ...]...]. Here you can put in your personal cookies e.g. login cookies of websites which JD otherwise fails to parse.Also if "updateCookies" is enabled, JD will update these with all cookies it receives from the website(s) that match the "pattern" property.
{"examples": [[["cookieName", "cookieValue"]]], "type": "array", "items": {"type": "array", "items": [{"type": "string"}, {"type": "string"}]}}
jd2cr.schema.json
updateCookies
- Type: Boolean - Applies to rule: DIRECTHTTP, DEEPDECRYPT, SUBMITFORM or FOLLOWREDIRECT - Purpose: If the target websites returns new cookies, save these inside this rule and update this rule.
{"type": "boolean"}
jd2cr.schema.json
logging
- Type: Boolean - Applies to rule: ALL - Purpose: Enable this for support purposes. Logs of your LinkCrawler Rules can be found in your JD install dir/logs/: LinkCrawlerRule.<RuleID>.log.0 and /LinkCrawlerDeep.*
{"type": "boolean"}
jd2cr.schema.json
maxDecryptDepth
- Type: Integer - Applies to rule: ALL - Purpose: How many layers deep do should your rule crawl (e.g. rule returns URLs matching the same rule again recursively - how often is this chain allowed to happen?)
{"examples": [1], "type": "integer"}
jd2cr.schema.json
id
- Type: Integer - Applies to rule: ALL - Purpose: Auto generated ID of the rule. Normally leave this blank and JD2 will autoinsert.
{"type": "integer"}
jd2cr.schema.json
name
- Type: String - Applies to rule: ALL - Purpose: name of the rule.
{"type": "string"}
jd2cr.schema.json
pattern
- Type: RegEx - Applies to rule: ALL - Purpose: defines on which URLs will this rule apply by matching it to the pattern
{"examples": ["https?://www\\.example\\.com/subdir1/subdir2/subdir3"], "type": "string", "format": "regex"}
jd2cr.schema.json
packageNamePattern
- Type: HTML RegEx - Applies to rule: DEEPDECRYPT - Purpose: All URLs crawled by this rule will be grouped into the same package that is the HTML RegEx's first capture
{"examples": ["<title>(.*?)</title>"], "type": "string", "format": "regex"}
jd2cr.schema.json
passwordPattern
- Type: HTML RegEx or null - Applies to rule: DEEPDECRYPT - Purpose: Matches against archive extraction password that may be found as text inside the page's (unmodified by javascript) HTML code. First returned capture must be the password.
{"examples": ["password:([^>]+)>"], "type": "string", "format": "regex"}
jd2cr.schema.json
formPattern
- Type: HTML RegEx - Applies to rule: DEEPDECRYPT - Purpose:
{"examples": ["<form id=\"example\">(.*?)</form>"], "type": "string", "format": "regex"}
jd2cr.schema.json
deepPattern
- Type: HTML RegEx or null - Applies to rule: DEEPDECRYPT - Purpose: Which URLs should this rule look for inside the page's (unmodified by javascript) HTML code. null (or blank) = auto scan and return all supported URLs found in HTML code. Keep in mind that, if the url's found in the html are relative (e.g. starting with a slash / character instead of a protocol like http or a domain (website root) name) you WILL have to enclose the entire expression in quotes (outside of the parentheses that do capturing) like \"(...)\" AND enclose the part that would match the missing part of the url (i.e. from the protocol to the slash-or-other-character it begins with) in an 'OPTIONAL, NON CAPTURING' group (?:...)?. Resulting in the following pattern for pretty much every case \"((?:missing part of full url)?rest of url that is in the html)\"
{"examples": ["(https?://absolute\\.url\\.example\\.com/subdir1/.*?\\.ext)", "\"((?:https?://missing\\.domain\\.example\\.com\\)?/partial_url_existing_in_page)\""], "oneOf": [{"type": "string"}, {"type": "null"}], "format": "regex"}
jd2cr.schema.json
rewriteReplaceWith
- Type: String - Applies to rule: REWRITE - Purpose:Pattern for new URL, can use captures from "pattern" in the $1 form
{"examples": ["https://example.com/$1"], "type": "string", "format": "regex"}
datahub_ingestion_schema.json
Root schema of Datahub Ingestion
{"$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/datahub-ingestion", "definitions": {"console_sink": {"type": "object", "properties": {"type": {"type": "string", "enum": ["console"]}}, "required": ["type"]}, "file_sink": {"type": "object", "properties": {"type": {"type": "string", "enum": ["file"]}, "config": {}}, "required": ["type", "config"]}, "file_sink_config": {"type": "object", "properties": {"filename": {"type": "string"}}, "required": ["filename"], "additionalProperties": false}, "datahub_rest_sink": {"type": "object", "properties": {"type": {"type": "string", "enum": ["datahub-rest"]}, "config": {}}, "required": ["type", "config"], "additionalProperties": false}, "datahub_rest_sink_config": {"type": "object", "properties": {"ca_certificate_path": {"type": "string"}, "client_certificate_path": {"type": "string", "descritption": "Path to client's CA certificate for HTTPS communications"}, "max_threads": {"type": "number", "default": 15}, "retry_status_codes": {"type": "array", "items": {"type": "number"}, "default": [429, 502, 503, 504]}, "server": {"type": "string"}, "timeout_sec": {"type": "number", "default": 30}, "token": {"type": "string"}, "extra_headers": {"type": "string"}, "disable_ssl_verification": {"type": "boolean", "default": false}}, "required": ["server"], "additionalProperties": false}, "datahub_kafka_sink": {"type": "object", "properties": {"type": {"type": "string", "enum": ["datahub-kafka"]}, "config": {}}, "required": ["type", "config"], "additionalProperties": false}, "datahub_kafka_sink_config": {"type": "object", "properties": {"connection": {"type": "object", "properties": {"bootstrap": {"type": "string", "default": "localhost:9092"}, "producer_config": {"type": "object"}, "schema_registry_url": {"type": "string", "default": "http://localhost:8081"}, "schema_registry_config": {"type": "object"}}, "additionalProperties": false, "required": ["bootstrap", "schema_registry_url"]}, "topic_routes": {"type": "object", "properties": {"MetadataChangeEvent": {"type": "string", "default": "MetadataChangeEvent"}, "MetadataChangeProposal": {"type": "string", "default": "MetadataChangeProposal"}}, "additionalProperties": false}}, "required": ["connection"], "additionalProperties": false}, "mysql": {"type": "object", "properties": {"type": {"type": "string", "enum": ["mysql"]}, "config": {}}, "required": ["type", "config"]}, "mysql_config": {"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:3306", "type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "scheme": {"default": "mysql+pymysql", "type": "string"}, "sqlalchemy_uri": {"type": "string"}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}}, "additionalProperties": false}, "oracle": {"type": "object", "properties": {"type": {"type": "string", "enum": ["oracle"]}, "config": {}}, "required": ["type", "config"]}, "oracle_config": {"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": {"type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "scheme": {"default": "oracle+cx_oracle", "type": "string"}, "sqlalchemy_uri": {"type": "string"}, "service_name": {"type": "string"}, "add_database_name_to_urn": {"default": false, "type": "boolean"}}, "required": ["host_port"], "additionalProperties": false}, "powerbi-report-server": {"type": "object", "properties": {"type": {"type": "string", "enum": ["powerbi-report-server"]}, "config": {}}, "required": ["type", "config"]}, "powerbi-report-server_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "workstation_name": {"default": "localhost", "type": "string"}, "host_port": {"type": "string"}, "server_alias": {"default": "", "type": "string"}, "graphql_url": {"type": "string"}, "report_virtual_directory_name": {"type": "string"}, "report_server_virtual_directory_name": {"type": "string"}, "extract_ownership": {"default": true, "type": "boolean"}, "ownership_type": {"default": "NONE", "type": "string"}, "platform_name": {"default": "powerbi", "type": "string"}, "platform_urn": {"default": "urn:li:dataPlatform:powerbi", "type": "string"}, "report_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "chart_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}}, "required": ["username", "password", "host_port", "report_virtual_directory_name", "report_server_virtual_directory_name"], "additionalProperties": false}, "datahub": {"type": "object", "properties": {"type": {"type": "string", "enum": ["datahub"]}, "config": {}}, "required": ["type", "config"]}, "datahub_config": {"type": "object", "properties": {"stateful_ingestion": {"default": {"enabled": true, "max_checkpoint_state_size": 16777216, "state_provider": {"type": "datahub", "config": null}, "ignore_old_state": false, "ignore_new_state": false}, "allOf": [{}]}, "mysql_connection": {"default": {"username": null, "host_port": "localhost:3306", "database": null, "database_alias": null, "scheme": "mysql+pymysql", "sqlalchemy_uri": null, "options": {}}, "allOf": [{}]}, "kafka_connection": {"default": {"bootstrap": "localhost:9092", "schema_registry_url": "http://localhost:8080/schema-registry/api/", "schema_registry_config": {}, "client_timeout_seconds": 60, "consumer_config": {}}, "allOf": [{}]}, "include_all_versions": {"default": false, "type": "boolean"}, "mysql_batch_size": {"default": 10000, "type": "integer"}, "mysql_table_name": {"default": "metadata_aspect_v2", "type": "string"}, "kafka_topic_name": {"default": "MetadataChangeLog_Timeseries_v1", "type": "string"}, "commit_state_interval": {"default": 1000, "type": "integer"}, "commit_with_parse_errors": {"default": false, "type": "boolean"}}}, "bigquery": {"type": "object", "properties": {"type": {"type": "string", "enum": ["bigquery"]}, "config": {}}, "required": ["type", "config"]}, "bigquery_config": {"type": "object", "properties": {"store_last_profiling_timestamps": {"default": false, "type": "boolean"}, "incremental_lineage": {"default": true, "type": "boolean"}, "sql_parser_use_external_process": {"default": false, "type": "boolean"}, "store_last_lineage_extraction_timestamp": {"default": false, "type": "boolean"}, "bucket_duration": {"default": "DAY", "allOf": [{}]}, "end_time": {"type": "string", "format": "date-time"}, "start_time": {"type": "string", "format": "date-time"}, "store_last_usage_extraction_timestamp": {"default": true, "type": "boolean"}, "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": [{}]}, "rate_limit": {"default": false, "type": "boolean"}, "requests_per_min": {"default": 60, "type": "integer"}, "temp_table_dataset_prefix": {"default": "_", "type": "string"}, "sharded_table_pattern": {"default": "((.+)[_$])?(\\d{8})$", "deprecated": true, "type": "string"}, "project_id_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "usage": {"default": {"bucket_duration": "DAY", "end_time": "2023-08-15T22:02:13.573606+00:00", "start_time": "2023-08-14T00:00:00+00:00", "top_n_queries": 10, "user_email_pattern": {"allow": [".*"], "deny": [], "ignoreCase": true}, "include_operational_stats": true, "include_read_operational_stats": false, "format_sql_queries": false, "include_top_n_queries": true, "max_query_duration": 900.0, "apply_view_usage_to_tables": false}, "allOf": [{}]}, "include_usage_statistics": {"default": true, "type": "boolean"}, "capture_table_label_as_tag": {"default": false, "type": "boolean"}, "capture_dataset_label_as_tag": {"default": false, "type": "boolean"}, "dataset_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "match_fully_qualified_names": {"default": false, "type": "boolean"}, "include_external_url": {"default": true, "type": "boolean"}, "debug_include_full_payloads": {"default": false, "type": "boolean"}, "number_of_datasets_process_in_batch_if_profiling_enabled": {"default": 200, "type": "integer"}, "column_limit": {"default": 300, "type": "integer"}, "project_id": {"type": "string"}, "project_ids": {"type": "array", "items": {"type": "string"}}, "project_on_behalf": {"type": "string"}, "lineage_use_sql_parser": {"default": true, "type": "boolean"}, "lineage_parse_view_ddl": {"default": true, "type": "boolean"}, "lineage_sql_parser_use_raw_names": {"default": false, "type": "boolean"}, "extract_column_lineage": {"default": false, "type": "boolean"}, "extract_lineage_from_catalog": {"default": false, "type": "boolean"}, "convert_urns_to_lowercase": {"default": false, "type": "boolean"}, "enable_legacy_sharded_table_support": {"default": true, "type": "boolean"}, "scheme": {"default": "bigquery", "type": "string"}, "log_page_size": {"default": 1000, "exclusiveMinimum": 0, "type": "integer"}, "credential": {"allOf": [{}]}, "extra_client_options": {"default": {}, "type": "object"}, "include_table_lineage": {"default": true, "type": "boolean"}, "max_query_duration": {"default": 900.0, "type": "number", "format": "time-delta"}, "bigquery_audit_metadata_datasets": {"type": "array", "items": {"type": "string"}}, "use_exported_bigquery_audit_metadata": {"default": false, "type": "boolean"}, "use_date_sharded_audit_log_tables": {"default": false, "type": "boolean"}, "upstream_lineage_in_report": {"default": false, "type": "boolean"}}, "additionalProperties": false}, "okta": {"type": "object", "properties": {"type": {"type": "string", "enum": ["okta"]}, "config": {}}, "required": ["type", "config"]}, "okta_config": {"type": "object", "properties": {"stateful_ingestion": {"allOf": [{}]}, "okta_domain": {"type": "string"}, "okta_api_token": {"type": "string"}, "ingest_users": {"default": true, "type": "boolean"}, "ingest_groups": {"default": true, "type": "boolean"}, "ingest_group_membership": {"default": true, "type": "boolean"}, "okta_profile_to_username_attr": {"default": "email", "type": "string"}, "okta_profile_to_username_regex": {"default": "(.*)", "type": "string"}, "okta_profile_to_group_name_attr": {"default": "name", "type": "string"}, "okta_profile_to_group_name_regex": {"default": "(.*)", "type": "string"}, "include_deprovisioned_users": {"default": false, "type": "boolean"}, "include_suspended_users": {"default": false, "type": "boolean"}, "page_size": {"default": 100, "type": "integer"}, "delay_seconds": {"default": 0.01, "anyOf": [{"type": "number"}, {"type": "integer"}]}, "okta_users_filter": {"type": "string"}, "okta_users_search": {"type": "string"}, "okta_groups_filter": {"type": "string"}, "okta_groups_search": {"type": "string"}, "mask_group_id": {"default": true, "type": "boolean"}, "mask_user_id": {"default": true, "type": "boolean"}}, "required": ["okta_domain", "okta_api_token"], "additionalProperties": false}, "lookml": {"type": "object", "properties": {"type": {"type": "string", "enum": ["lookml"]}, "config": {}}, "required": ["type", "config"]}, "lookml_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "stateful_ingestion": {}, "platform_instance": {"type": "string"}, "explore_naming_pattern": {"default": {"pattern": "{model}.explore.{name}"}, "allOf": [{}]}, "explore_browse_pattern": {"default": {"pattern": "/{env}/{platform}/{project}/explores"}, "allOf": [{}]}, "view_naming_pattern": {"default": {"pattern": "{project}.view.{name}"}, "allOf": [{}]}, "view_browse_pattern": {"default": {"pattern": "/{env}/{platform}/{project}/views"}, "allOf": [{}]}, "tag_measures_and_dimensions": {"default": true, "type": "boolean"}, "platform_name": {"default": "looker", "type": "string"}, "extract_column_level_lineage": {"default": true, "type": "boolean"}, "git_info": {"allOf": [{}]}, "base_folder": {"format": "directory-path", "type": "string"}, "project_dependencies": {"default": {}, "type": "object", "additionalProperties": {"anyOf": [{"type": "string", "format": "directory-path"}, {}]}}, "connection_to_platform_map": {"type": "object", "additionalProperties": {}}, "model_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "view_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "parse_table_names_from_sql": {"default": false, "type": "boolean"}, "sql_parser": {"default": "datahub.utilities.sql_parser.DefaultSQLParser", "type": "string"}, "api": {}, "project_name": {"type": "string"}, "transport_options": {"allOf": [{}]}, "max_file_snippet_length": {"default": 512000, "type": "integer"}, "emit_reachable_views_only": {"default": true, "type": "boolean"}, "populate_sql_logic_for_missing_descriptions": {"default": false, "type": "boolean"}, "process_isolation_for_sql_parsing": {"default": false, "type": "boolean"}, "process_refinements": {"default": false, "type": "boolean"}}, "additionalProperties": false}, "redshift": {"type": "object", "properties": {"type": {"type": "string", "enum": ["redshift"]}, "config": {}}, "required": ["type", "config"]}, "redshift_config": {"type": "object", "properties": {"store_last_profiling_timestamps": {"default": false, "type": "boolean"}, "incremental_lineage": {"default": true, "type": "boolean"}, "sql_parser_use_external_process": {"default": false, "type": "boolean"}, "store_last_lineage_extraction_timestamp": {"default": false, "type": "boolean"}, "bucket_duration": {"default": "DAY", "allOf": [{}]}, "end_time": {"type": "string", "format": "date-time"}, "start_time": {"type": "string", "format": "date-time"}, "store_last_usage_extraction_timestamp": {"default": true, "type": "boolean"}, "top_n_queries": {"default": 10, "exclusiveMinimum": 0, "type": "integer"}, "user_email_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "include_operational_stats": {"default": true, "type": "boolean"}, "include_read_operational_stats": {"default": false, "type": "boolean"}, "format_sql_queries": {"default": false, "type": "boolean"}, "include_top_n_queries": {"default": true, "type": "boolean"}, "email_domain": {"type": "string"}, "s3_lineage_config": {"default": {"path_specs": [], "strip_urls": true}, "allOf": [{}]}, "env": {"default": "PROD", "type": "string"}, "platform_instance_map": {"type": "object", "additionalProperties": {"type": "string"}}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "options": {"type": "object"}, "schema_pattern": {"default": {"allow": [".*"], "deny": ["information_schema"], "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": {"type": "string"}, "database": {"default": "dev", "type": "string"}, "database_alias": {"type": "string"}, "scheme": {"default": "redshift+psycopg2", "hidden_from_schema": true, "type": "string"}, "sqlalchemy_uri": {"type": "string"}, "default_schema": {"default": "public", "type": "string"}, "include_table_lineage": {"default": true, "type": "boolean"}, "include_copy_lineage": {"default": true, "type": "boolean"}, "include_usage_statistics": {"default": false, "type": "boolean"}, "include_unload_lineage": {"default": true, "type": "boolean"}, "capture_lineage_query_parser_failures": {"default": false, "hide_from_schema": true, "type": "boolean"}, "table_lineage_mode": {"default": "stl_scan_based", "allOf": [{}]}, "extra_client_options": {"default": {}, "type": "object"}, "match_fully_qualified_names": {"default": false, "type": "boolean"}}, "required": ["host_port"], "additionalProperties": false}, "redshift-usage-legacy": {"type": "object", "properties": {"type": {"type": "string", "enum": ["redshift-usage-legacy"]}, "config": {}}, "required": ["type", "config"]}, "redshift-usage-legacy_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "bucket_duration": {"default": "DAY", "allOf": [{}]}, "end_time": {"type": "string", "format": "date-time"}, "start_time": {"type": "string", "format": "date-time"}, "top_n_queries": {"default": 10, "exclusiveMinimum": 0, "type": "integer"}, "user_email_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "include_operational_stats": {"default": true, "type": "boolean"}, "include_read_operational_stats": {"default": false, "type": "boolean"}, "format_sql_queries": {"default": false, "type": "boolean"}, "include_top_n_queries": {"default": true, "type": "boolean"}, "s3_lineage_config": {"allOf": [{}]}, "platform_instance_map": {"type": "object", "additionalProperties": {"type": "string"}}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "options": {"default": {}, "type": "object"}, "schema_pattern": {"default": {"allow": [".*"], "deny": ["information_schema"], "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": {"type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "sqlalchemy_uri": {"type": "string"}, "default_schema": {"default": "public", "type": "string"}, "include_table_lineage": {"default": true, "type": "boolean"}, "include_copy_lineage": {"default": true, "type": "boolean"}, "include_unload_lineage": {"default": true, "type": "boolean"}, "capture_lineage_query_parser_failures": {"default": false, "type": "boolean"}, "table_lineage_mode": {"default": "stl_scan_based", "allOf": [{}]}, "email_domain": {"type": "string"}}, "required": ["host_port", "email_domain"], "additionalProperties": false}, "demo-data": {"type": "object", "properties": {"type": {"type": "string", "enum": ["demo-data"]}, "config": {}}, "required": ["type", "config"]}, "demo-data_config": {"type": "object", "properties": {}, "additionalProperties": false}, "vertica": {"type": "object", "properties": {"type": {"type": "string", "enum": ["vertica"]}, "config": {}}, "required": ["type", "config"]}, "vertica_config": {"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": {"type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "scheme": {"default": "vertica+vertica_python", "type": "string"}, "sqlalchemy_uri": {"type": "string"}, "models_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "include_projections": {"default": true, "type": "boolean"}, "include_models": {"default": true, "type": "boolean"}, "include_view_lineage": {"default": true, "type": "boolean"}, "include_projection_lineage": {"default": true, "type": "boolean"}}, "required": ["host_port"], "additionalProperties": false}, "redash": {"type": "object", "properties": {"type": {"type": "string", "enum": ["redash"]}, "config": {}}, "required": ["type", "config"]}, "redash_config": {"type": "object", "properties": {"connect_uri": {"default": "http://localhost:5000", "type": "string"}, "api_key": {"default": "REDASH_API_KEY", "type": "string"}, "dashboard_patterns": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "chart_patterns": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "skip_draft": {"default": true, "type": "boolean"}, "page_size": {"default": 25, "type": "integer"}, "api_page_limit": {"default": 9223372036854775807, "type": "integer"}, "parallelism": {"default": 1, "type": "integer"}, "parse_table_names_from_sql": {"default": false, "type": "boolean"}, "sql_parser": {"default": "datahub.utilities.sql_parser.DefaultSQLParser", "type": "string"}, "env": {"default": "PROD", "type": "string"}}, "additionalProperties": false}, "dbt": {"type": "object", "properties": {"type": {"type": "string", "enum": ["dbt"]}, "config": {}}, "required": ["type", "config"]}, "dbt_config": {"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"}, "manifest_path": {"type": "string"}, "catalog_path": {"type": "string"}, "sources_path": {"type": "string"}, "test_results_path": {"type": "string"}, "aws_connection": {"allOf": [{}]}, "git_info": {"allOf": [{}]}}, "required": ["target_platform", "manifest_path", "catalog_path"], "additionalProperties": false}, "presto-on-hive": {"type": "object", "properties": {"type": {"type": "string", "enum": ["presto-on-hive"]}, "config": {}}, "required": ["type", "config"]}, "presto-on-hive_config": {"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:3306", "type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "sqlalchemy_uri": {"type": "string"}, "views_where_clause_suffix": {"default": "", "type": "string"}, "tables_where_clause_suffix": {"default": "", "type": "string"}, "schemas_where_clause_suffix": {"default": "", "type": "string"}, "ingestion_job_id": {"default": "", "type": "string"}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "metastore_db_name": {"type": "string"}, "mode": {"default": "presto-on-hive", "allOf": [{}]}, "use_catalog_subtype": {"default": true, "type": "boolean"}, "use_dataset_pascalcase_subtype": {"default": false, "type": "boolean"}, "include_catalog_name_in_ids": {"default": false, "type": "boolean"}, "enable_properties_merge": {"default": false, "type": "boolean"}, "simplify_nested_field_paths": {"default": false, "type": "boolean"}}, "additionalProperties": false}, "powerbi": {"type": "object", "properties": {"type": {"type": "string", "enum": ["powerbi"]}, "config": {}}, "required": ["type", "config"]}, "powerbi_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {"allOf": [{}]}, "tenant_id": {"type": "string"}, "workspace_id_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "server_to_platform_instance": {"default": {}, "type": "object", "additionalProperties": {}}, "client_id": {"type": "string"}, "client_secret": {"type": "string"}, "scan_timeout": {"default": 60, "type": "integer"}, "scan_batch_size": {"default": 1, "exclusiveMinimum": 0, "maximum": 100, "type": "integer"}, "workspace_id_as_urn_part": {"default": false, "type": "boolean"}, "extract_ownership": {"default": false, "type": "boolean"}, "extract_reports": {"default": true, "type": "boolean"}, "ownership": {"default": {"create_corp_user": true, "use_powerbi_email": false, "remove_email_suffix": false, "dataset_configured_by_as_owner": false, "owner_criteria": null}, "allOf": [{}]}, "modified_since": {"type": "string"}, "extract_dashboards": {"default": true, "type": "boolean"}, "extract_dataset_schema": {"default": false, "type": "boolean"}, "extract_lineage": {"default": true, "type": "boolean"}, "extract_endorsements_to_tags": {"default": false, "type": "boolean"}, "filter_dataset_endorsements": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "extract_workspaces_to_containers": {"default": true, "type": "boolean"}, "extract_datasets_to_containers": {"default": false, "type": "boolean"}, "native_query_parsing": {"default": true, "type": "boolean"}, "convert_urns_to_lowercase": {"default": false, "type": "boolean"}, "convert_lineage_urns_to_lowercase": {"default": true, "type": "boolean"}, "admin_apis_only": {"default": false, "type": "boolean"}, "extract_independent_datasets": {"default": false, "type": "boolean"}}, "required": ["tenant_id", "client_id", "client_secret"], "additionalProperties": false}, "elasticsearch": {"type": "object", "properties": {"type": {"type": "string", "enum": ["elasticsearch"]}, "config": {}}, "required": ["type", "config"]}, "elasticsearch_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "host": {"default": "localhost:9200", "type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "use_ssl": {"default": false, "type": "boolean"}, "verify_certs": {"default": false, "type": "boolean"}, "ca_certs": {"type": "string"}, "client_cert": {"type": "string"}, "client_key": {"type": "string"}, "ssl_assert_hostname": {"default": false, "type": "boolean"}, "ssl_assert_fingerprint": {"type": "string"}, "url_prefix": {"default": "", "type": "string"}, "index_pattern": {"default": {"allow": [".*"], "deny": ["^_.*", "^ilm-history.*"], "ignoreCase": true}, "allOf": [{}]}, "ingest_index_templates": {"default": false, "type": "boolean"}, "index_template_pattern": {"default": {"allow": [".*"], "deny": ["^_.*"], "ignoreCase": true}, "allOf": [{}]}, "profiling": {}, "collapse_urns": {}}, "additionalProperties": false}, "snowflake": {"type": "object", "properties": {"type": {"type": "string", "enum": ["snowflake"]}, "config": {}}, "required": ["type", "config"]}, "snowflake_config": {"type": "object", "properties": {"classification": {"default": {"enabled": false, "sample_size": 100, "max_workers": 2, "table_pattern": {"allow": [".*"], "deny": [], "ignoreCase": true}, "column_pattern": {"allow": [".*"], "deny": [], "ignoreCase": true}, "info_type_to_term": {}, "classifiers": [{"type": "datahub", "config": null}]}, "allOf": [{}]}, "store_last_profiling_timestamps": {"default": false, "type": "boolean"}, "bucket_duration": {"default": "DAY", "allOf": [{}]}, "end_time": {"type": "string", "format": "date-time"}, "start_time": {"type": "string", "format": "date-time"}, "store_last_usage_extraction_timestamp": {"default": true, "type": "boolean"}, "top_n_queries": {"default": 10, "exclusiveMinimum": 0, "type": "integer"}, "user_email_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "include_operational_stats": {"default": true, "type": "boolean"}, "include_read_operational_stats": {"default": false, "type": "boolean"}, "format_sql_queries": {"default": false, "type": "boolean"}, "include_top_n_queries": {"default": true, "type": "boolean"}, "email_domain": {"type": "string"}, "apply_view_usage_to_tables": {"default": false, "type": "boolean"}, "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": [{}]}, "scheme": {"default": "snowflake", "type": "string"}, "username": {"type": "string"}, "password": {"type": "string", "writeOnly": true, "format": "password"}, "private_key": {"type": "string"}, "private_key_path": {"type": "string"}, "private_key_password": {"type": "string", "writeOnly": true, "format": "password"}, "oauth_config": {"allOf": [{}]}, "authentication_type": {"default": "DEFAULT_AUTHENTICATOR", "type": "string"}, "account_id": {"type": "string"}, "warehouse": {"type": "string"}, "role": {"type": "string"}, "include_table_lineage": {"default": true, "type": "boolean"}, "include_view_lineage": {"default": true, "type": "boolean"}, "connect_args": {"type": "object"}, "database_pattern": {"default": {"allow": [".*"], "deny": ["^UTIL_DB$", "^SNOWFLAKE$", "^SNOWFLAKE_SAMPLE_DATA$"], "ignoreCase": true}, "allOf": [{}]}, "ignore_start_time_lineage": {"default": false, "type": "boolean"}, "upstream_lineage_in_report": {"default": false, "type": "boolean"}, "convert_urns_to_lowercase": {"default": true, "type": "boolean"}, "include_usage_stats": {"default": true, "type": "boolean"}, "include_technical_schema": {"default": true, "type": "boolean"}, "include_column_lineage": {"default": true, "type": "boolean"}, "include_view_column_lineage": {"default": false, "type": "boolean"}, "extract_tags": {"default": "skip", "allOf": [{}]}, "include_external_url": {"default": true, "type": "boolean"}, "match_fully_qualified_names": {"default": false, "type": "boolean"}, "use_legacy_lineage_method": {"default": false, "type": "boolean"}, "validate_upstreams_against_patterns": {"default": true, "type": "boolean"}, "tag_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "temporary_tables_pattern": {"default": [".*\\.FIVETRAN_.*_STAGING\\..*", ".*__DBT_TMP$", ".*\\.SEGMENT_[a-f0-9]{8}[-_][a-f0-9]{4}[-_][a-f0-9]{4}[-_][a-f0-9]{4}[-_][a-f0-9]{12}", ".*\\.STAGING_.*_[a-f0-9]{8}[-_][a-f0-9]{4}[-_][a-f0-9]{4}[-_][a-f0-9]{4}[-_][a-f0-9]{12}"], "type": "array", "items": {"type": "string"}}, "email_as_user_identifier": {"default": true, "type": "boolean"}}, "required": ["account_id"], "additionalProperties": false}, "superset": {"type": "object", "properties": {"type": {"type": "string", "enum": ["superset"]}, "config": {}}, "required": ["type", "config"]}, "superset_config": {"type": "object", "properties": {"stateful_ingestion": {"allOf": [{}]}, "connect_uri": {"default": "http://localhost:8088", "type": "string"}, "display_uri": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "provider": {"default": "db", "type": "string"}, "options": {"default": {}, "type": "object"}, "env": {"default": "PROD", "type": "string"}, "database_alias": {"default": {}, "type": "object", "additionalProperties": {"type": "string"}}}, "additionalProperties": false}, "unity-catalog": {"type": "object", "properties": {"type": {"type": "string", "enum": ["unity-catalog"]}, "config": {}}, "required": ["type", "config"]}, "unity-catalog_config": {"type": "object", "properties": {"store_last_profiling_timestamps": {"default": false, "type": "boolean"}, "env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "bucket_duration": {"default": "DAY", "allOf": [{}]}, "end_time": {"type": "string", "format": "date-time"}, "start_time": {"type": "string", "format": "date-time"}, "top_n_queries": {"default": 10, "exclusiveMinimum": 0, "type": "integer"}, "user_email_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "include_operational_stats": {"default": true, "type": "boolean"}, "include_read_operational_stats": {"default": false, "type": "boolean"}, "format_sql_queries": {"default": false, "type": "boolean"}, "include_top_n_queries": {"default": true, "type": "boolean"}, "stateful_ingestion": {"allOf": [{}]}, "token": {"type": "string"}, "workspace_url": {"type": "string"}, "workspace_name": {"type": "string"}, "catalog_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "schema_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "table_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "domain": {"default": {}, "type": "object", "additionalProperties": {}}, "include_table_lineage": {"default": true, "type": "boolean"}, "include_ownership": {"default": false, "type": "boolean"}, "include_column_lineage": {"default": true, "type": "boolean"}, "include_usage_statistics": {"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}, "warehouse_id": null, "profile_table_level_only": false, "pattern": {"allow": [".*"], "deny": [], "ignoreCase": true}, "call_analyze": true, "max_wait_secs": 3600, "max_workers": 10}, "allOf": [{}]}}, "required": ["token", "workspace_url"], "additionalProperties": false}, "feast": {"type": "object", "properties": {"type": {"type": "string", "enum": ["feast"]}, "config": {}}, "required": ["type", "config"]}, "feast_config": {"type": "object", "properties": {"path": {"type": "string"}, "fs_yaml_file": {"type": "string"}, "environment": {"default": "PROD", "type": "string"}}, "required": ["path"], "additionalProperties": false}, "mode": {"type": "object", "properties": {"type": {"type": "string", "enum": ["mode"]}, "config": {}}, "required": ["type", "config"]}, "mode_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance_map": {"type": "object", "additionalProperties": {"type": "string"}}, "connect_uri": {"default": "https://app.mode.com", "type": "string"}, "token": {"type": "string"}, "password": {"type": "string", "writeOnly": true, "format": "password"}, "workspace": {"type": "string"}, "default_schema": {"default": "public", "type": "string"}, "owner_username_instead_of_email": {"default": true, "type": "boolean"}, "api_options": {"default": {"retry_backoff_multiplier": 2, "max_retry_interval": 10, "max_attempts": 5}, "allOf": [{}]}}, "required": ["token", "password"], "additionalProperties": false}, "sqlalchemy": {"type": "object", "properties": {"type": {"type": "string", "enum": ["sqlalchemy"]}, "config": {}}, "required": ["type", "config"]}, "sqlalchemy_config": {"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": [{}]}, "platform": {"type": "string"}, "connect_uri": {"type": "string"}}, "required": ["platform", "connect_uri"], "additionalProperties": false}, "hana": {"type": "object", "properties": {"type": {"type": "string", "enum": ["hana"]}, "config": {}}, "required": ["type", "config"]}, "hana_config": {"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:39041", "type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "scheme": {"default": "hana+hdbcli", "type": "string"}, "sqlalchemy_uri": {"type": "string"}}, "additionalProperties": false}, "iceberg": {"type": "object", "properties": {"type": {"type": "string", "enum": ["iceberg"]}, "config": {}}, "required": ["type", "config"]}, "iceberg_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {"allOf": [{}]}, "adls": {"allOf": [{}]}, "localfs": {"type": "string"}, "max_path_depth": {"default": 2, "type": "integer"}, "table_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "user_ownership_property": {"default": "owner", "type": "string"}, "group_ownership_property": {"type": "string"}, "profiling": {"default": {"enabled": false, "include_field_null_count": true, "include_field_min_value": true, "include_field_max_value": true, "operation_config": {"lower_freq_profile_enabled": false, "profile_day_of_week": null, "profile_date_of_month": null}}, "allOf": [{}]}}, "additionalProperties": false}, "pulsar": {"type": "object", "properties": {"type": {"type": "string", "enum": ["pulsar"]}, "config": {}}, "required": ["type", "config"]}, "pulsar_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {"allOf": [{}]}, "web_service_url": {"default": "http://localhost:8080", "type": "string"}, "timeout": {"default": 5, "type": "integer"}, "issuer_url": {"type": "string"}, "client_id": {"type": "string"}, "client_secret": {"type": "string"}, "token": {"type": "string"}, "verify_ssl": {"default": true, "anyOf": [{"type": "boolean"}, {"type": "string"}]}, "tenant_patterns": {"default": {"allow": [".*"], "deny": ["pulsar"], "ignoreCase": true}, "allOf": [{}]}, "namespace_patterns": {"default": {"allow": [".*"], "deny": ["public/functions"], "ignoreCase": true}, "allOf": [{}]}, "topic_patterns": {"default": {"allow": [".*"], "deny": ["/__.*$"], "ignoreCase": true}, "allOf": [{}]}, "exclude_individual_partitions": {"default": true, "type": "boolean"}, "tenants": {"default": [], "type": "array", "items": {"type": "string"}}, "domain": {"type": "object", "additionalProperties": {}}, "oid_config": {"type": "object"}}, "additionalProperties": false}, "delta-lake": {"type": "object", "properties": {"type": {"type": "string", "enum": ["delta-lake"]}, "config": {}}, "required": ["type", "config"]}, "delta-lake_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "base_path": {"type": "string"}, "relative_path": {"type": "string"}, "platform": {"default": "delta-lake", "const": "delta-lake", "type": "string"}, "table_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "version_history_lookback": {"default": 1, "type": "integer"}, "require_files": {"default": true, "type": "boolean"}, "s3": {}}, "required": ["base_path"], "additionalProperties": false}, "azure-ad": {"type": "object", "properties": {"type": {"type": "string", "enum": ["azure-ad"]}, "config": {}}, "required": ["type", "config"]}, "azure-ad_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {"allOf": [{}]}, "client_id": {"type": "string"}, "tenant_id": {"type": "string"}, "client_secret": {"type": "string"}, "authority": {"type": "string"}, "token_url": {"type": "string"}, "redirect": {"default": "https://login.microsoftonline.com/common/oauth2/nativeclient", "type": "string"}, "graph_url": {"default": "https://graph.microsoft.com/v1.0", "type": "string"}, "azure_ad_response_to_username_attr": {"default": "userPrincipalName", "type": "string"}, "azure_ad_response_to_username_regex": {"default": "(.*)", "type": "string"}, "azure_ad_response_to_groupname_attr": {"default": "displayName", "type": "string"}, "azure_ad_response_to_groupname_regex": {"default": "(.*)", "type": "string"}, "ingest_users": {"default": true, "type": "boolean"}, "ingest_groups": {"default": true, "type": "boolean"}, "ingest_group_membership": {"default": true, "type": "boolean"}, "ingest_groups_users": {"default": true, "type": "boolean"}, "users_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "groups_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "filtered_tracking": {"default": true, "type": "boolean"}, "mask_group_id": {"default": true, "type": "boolean"}, "mask_user_id": {"default": true, "type": "boolean"}}, "required": ["client_id", "tenant_id", "client_secret", "authority", "token_url"], "additionalProperties": false}, "openapi": {"type": "object", "properties": {"type": {"type": "string", "enum": ["openapi"]}, "config": {}}, "required": ["type", "config"]}, "openapi_config": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "swagger_file": {"type": "string"}, "ignore_endpoints": {"default": [], "type": "array", "items": {}}, "username": {"default": "", "type": "string"}, "password": {"default": "", "type": "string"}, "forced_examples": {"default": {}, "type": "object"}, "token": {"type": "string"}, "get_token": {"default": {}, "type": "object"}}, "required": ["name", "url", "swagger_file"], "additionalProperties": false}, "kafka": {"type": "object", "properties": {"type": {"type": "string", "enum": ["kafka"]}, "config": {}}, "required": ["type", "config"]}, "kafka_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "connection": {"default": {"bootstrap": "localhost:9092", "schema_registry_url": "http://localhost:8080/schema-registry/api/", "schema_registry_config": {}, "client_timeout_seconds": 60, "consumer_config": {}}, "allOf": [{}]}, "topic_patterns": {"default": {"allow": [".*"], "deny": ["^_.*"], "ignoreCase": true}, "allOf": [{}]}, "domain": {"default": {}, "type": "object", "additionalProperties": {}}, "topic_subject_map": {"default": {}, "type": "object", "additionalProperties": {"type": "string"}}, "schema_registry_class": {"default": "datahub.ingestion.source.confluent_schema_registry.ConfluentSchemaRegistry", "type": "string"}, "ignore_warnings_on_schema_type": {"default": false, "type": "boolean"}, "disable_topic_record_naming_strategy": {"default": false, "type": "boolean"}}, "additionalProperties": false}, "datahub-lineage-file": {"type": "object", "properties": {"type": {"type": "string", "enum": ["datahub-lineage-file"]}, "config": {}}, "required": ["type", "config"]}, "datahub-lineage-file_config": {"type": "object", "properties": {"file": {"type": "string"}, "preserve_upstream": {"default": true, "type": "boolean"}}, "required": ["file"], "additionalProperties": false}, "postgres": {"type": "object", "properties": {"type": {"type": "string", "enum": ["postgres"]}, "config": {}}, "required": ["type", "config"]}, "postgres_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "options": {"type": "object"}, "schema_pattern": {"default": {"allow": [".*"], "deny": ["information_schema"], "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": {"type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "scheme": {"default": "postgresql+psycopg2", "type": "string"}, "sqlalchemy_uri": {"type": "string"}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "initial_database": {"default": "postgres", "type": "string"}, "include_view_lineage": {"default": false, "type": "boolean"}}, "required": ["host_port"], "additionalProperties": false}, "gcs": {"type": "object", "properties": {"type": {"type": "string", "enum": ["gcs"]}, "config": {}}, "required": ["type", "config"]}, "gcs_config": {"type": "object", "properties": {"path_specs": {"type": "array", "items": {}}, "env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "credential": {"allOf": [{}]}, "max_rows": {"default": 100, "type": "integer"}, "number_of_files_to_sample": {"default": 100, "type": "integer"}}, "required": ["path_specs", "credential"], "additionalProperties": false}, "csv-enricher": {"type": "object", "properties": {"type": {"type": "string", "enum": ["csv-enricher"]}, "config": {}}, "required": ["type", "config"]}, "csv-enricher_config": {"type": "object", "properties": {"filename": {"type": "string"}, "write_semantics": {"default": "PATCH", "type": "string"}, "delimiter": {"default": ",", "type": "string"}, "array_delimiter": {"default": "|", "type": "string"}}, "required": ["filename"], "additionalProperties": false}, "metabase": {"type": "object", "properties": {"type": {"type": "string", "enum": ["metabase"]}, "config": {}}, "required": ["type", "config"]}, "metabase_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance_map": {"type": "object", "additionalProperties": {"type": "string"}}, "connect_uri": {"default": "localhost:3000", "type": "string"}, "username": {"type": "string"}, "password": {"type": "string", "writeOnly": true, "format": "password"}, "database_alias_map": {"type": "object"}, "engine_platform_map": {"type": "object", "additionalProperties": {"type": "string"}}, "database_id_to_instance_map": {"type": "object", "additionalProperties": {"type": "string"}}, "default_schema": {"default": "public", "type": "string"}}, "additionalProperties": false}, "athena": {"type": "object", "properties": {"type": {"type": "string", "enum": ["athena"]}, "config": {}}, "required": ["type", "config"]}, "athena_config": {"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": false, "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": [{}]}, "scheme": {"default": "awsathena+rest", "type": "string"}, "username": {"type": "string"}, "password": {"type": "string", "writeOnly": true, "format": "password"}, "database": {"type": "string"}, "aws_region": {"type": "string"}, "aws_role_arn": {"type": "string"}, "aws_role_assumption_duration": {"default": 3600, "type": "integer"}, "s3_staging_dir": {"deprecated": true, "type": "string"}, "work_group": {"type": "string"}, "catalog_name": {"default": "awsdatacatalog", "type": "string"}, "query_result_location": {"type": "string"}}, "required": ["aws_region", "work_group", "query_result_location"], "additionalProperties": false}, "trino": {"type": "object", "properties": {"type": {"type": "string", "enum": ["trino"]}, "config": {}}, "required": ["type", "config"]}, "trino_config": {"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": {"type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "sqlalchemy_uri": {"type": "string"}}, "required": ["host_port"], "additionalProperties": false}, "tableau": {"type": "object", "properties": {"type": {"type": "string", "enum": ["tableau"]}, "config": {}}, "required": ["type", "config"]}, "tableau_config": {"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}, "mssql": {"type": "object", "properties": {"type": {"type": "string", "enum": ["mssql"]}, "config": {}}, "required": ["type", "config"]}, "mssql_config": {"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}, "nifi": {"type": "object", "properties": {"type": {"type": "string", "enum": ["nifi"]}, "config": {}}, "required": ["type", "config"]}, "nifi_config": {"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}, "ldap": {"type": "object", "properties": {"type": {"type": "string", "enum": ["ldap"]}, "config": {}}, "required": ["type", "config"]}, "ldap_config": {"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}, "dbt-cloud": {"type": "object", "properties": {"type": {"type": "string", "enum": ["dbt-cloud"]}, "config": {}}, "required": ["type", "config"]}, "dbt-cloud_config": {"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}, "file": {"type": "object", "properties": {"type": {"type": "string", "enum": ["file"]}, "config": {}}, "required": ["type", "config"]}, "file_config": {"type": "object", "properties": {"path": {"type": "string"}, "file_extension": {"default": ".json", "type": "string"}, "read_mode": {"default": "AUTO", "allOf": [{}]}, "aspect": {"type": "string"}, "count_all_before_starting": {"default": true, "type": "boolean"}}, "required": ["path"], "additionalProperties": false}, "s3": {"type": "object", "properties": {"type": {"type": "string", "enum": ["s3"]}, "config": {}}, "required": ["type", "config"]}, "s3_config": {"type": "object", "properties": {"path_specs": {"type": "array", "items": {}}, "env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "platform": {"default": "", "type": "string"}, "aws_config": {"allOf": [{}]}, "use_s3_bucket_tags": {"type": "boolean"}, "use_s3_object_tags": {"type": "boolean"}, "profile_patterns": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "profiling": {"default": {"enabled": false, "operation_config": {"lower_freq_profile_enabled": false, "profile_day_of_week": null, "profile_date_of_month": null}, "profile_table_level_only": false, "max_number_of_fields_to_profile": null, "include_field_null_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": true, "include_field_distinct_value_frequencies": true, "include_field_histogram": true, "include_field_sample_values": true}, "allOf": [{}]}, "spark_driver_memory": {"default": "4g", "type": "string"}, "spark_config": {"default": {}, "type": "object"}, "max_rows": {"default": 100, "type": "integer"}, "verify_ssl": {"default": true, "anyOf": [{"type": "boolean"}, {"type": "string"}]}, "number_of_files_to_sample": {"default": 100, "type": "integer"}}, "required": ["path_specs"], "additionalProperties": false}, "looker": {"type": "object", "properties": {"type": {"type": "string", "enum": ["looker"]}, "config": {}}, "required": ["type", "config"]}, "looker_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "stateful_ingestion": {}, "platform_instance": {"type": "string"}, "explore_naming_pattern": {"default": {"pattern": "{model}.explore.{name}"}, "allOf": [{}]}, "explore_browse_pattern": {"default": {"pattern": "/{env}/{platform}/{project}/explores"}, "allOf": [{}]}, "view_naming_pattern": {"default": {"pattern": "{project}.view.{name}"}, "allOf": [{}]}, "view_browse_pattern": {"default": {"pattern": "/{env}/{platform}/{project}/views"}, "allOf": [{}]}, "tag_measures_and_dimensions": {"default": true, "type": "boolean"}, "platform_name": {"default": "looker", "type": "string"}, "extract_column_level_lineage": {"default": true, "type": "boolean"}, "client_id": {"type": "string"}, "client_secret": {"type": "string"}, "base_url": {"type": "string"}, "transport_options": {"allOf": [{}]}, "dashboard_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "chart_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "include_deleted": {"default": false, "type": "boolean"}, "extract_owners": {"default": true, "type": "boolean"}, "actor": {"type": "string"}, "strip_user_ids_from_email": {"default": false, "type": "boolean"}, "skip_personal_folders": {"default": false, "type": "boolean"}, "max_threads": {"default": 2, "type": "integer"}, "external_base_url": {"type": "string"}, "extract_usage_history": {"default": true, "type": "boolean"}, "extract_usage_history_for_interval": {"default": "30 days", "type": "string"}, "extract_embed_urls": {"default": true, "type": "boolean"}, "extract_independent_looks": {"default": false, "type": "boolean"}}, "required": ["client_id", "client_secret", "base_url"], "additionalProperties": false}, "salesforce": {"type": "object", "properties": {"type": {"type": "string", "enum": ["salesforce"]}, "config": {}}, "required": ["type", "config"]}, "salesforce_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "auth": {"default": "USERNAME_PASSWORD", "allOf": [{}]}, "username": {"type": "string"}, "password": {"type": "string"}, "consumer_key": {"type": "string"}, "private_key": {"type": "string"}, "security_token": {"type": "string"}, "instance_url": {"type": "string"}, "is_sandbox": {"default": false, "type": "boolean"}, "access_token": {"type": "string"}, "ingest_tags": {"default": false, "type": "boolean"}, "object_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "domain": {"default": {}, "type": "object", "additionalProperties": {}}, "profiling": {"default": {"enabled": false, "operation_config": {"lower_freq_profile_enabled": false, "profile_day_of_week": null, "profile_date_of_month": null}}, "allOf": [{}]}, "profile_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "platform": {"default": "salesforce", "type": "string"}}, "additionalProperties": false}, "hive": {"type": "object", "properties": {"type": {"type": "string", "enum": ["hive"]}, "config": {}}, "required": ["type", "config"]}, "hive_config": {"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_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": {"type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "sqlalchemy_uri": {"type": "string"}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}}, "required": ["host_port"], "additionalProperties": false}, "mariadb": {"type": "object", "properties": {"type": {"type": "string", "enum": ["mariadb"]}, "config": {}}, "required": ["type", "config"]}, "mariadb_config": {"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:3306", "type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "scheme": {"default": "mysql+pymysql", "type": "string"}, "sqlalchemy_uri": {"type": "string"}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}}, "additionalProperties": false}, "clickhouse": {"type": "object", "properties": {"type": {"type": "string", "enum": ["clickhouse"]}, "config": {}}, "required": ["type", "config"]}, "clickhouse_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance_map": {"type": "object", "additionalProperties": {"type": "string"}}, "bucket_duration": {"default": "DAY", "allOf": [{}]}, "end_time": {"type": "string", "format": "date-time"}, "start_time": {"type": "string", "format": "date-time"}, "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": {"default": "", "type": "string", "writeOnly": true, "format": "password"}, "host_port": {"default": "localhost:8123", "type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "sqlalchemy_uri": {"type": "string"}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "secure": {"type": "boolean"}, "protocol": {"type": "string"}, "uri_opts": {"default": {}, "type": "object", "additionalProperties": {"type": "string"}}, "include_table_lineage": {"default": true, "type": "boolean"}, "include_materialized_views": {"default": true, "type": "boolean"}}, "additionalProperties": false}, "mongodb": {"type": "object", "properties": {"type": {"type": "string", "enum": ["mongodb"]}, "config": {}}, "required": ["type", "config"]}, "mongodb_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "connect_uri": {"default": "mongodb://localhost", "type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "authMechanism": {"type": "string"}, "options": {"default": {}, "type": "object"}, "enableSchemaInference": {"default": true, "type": "boolean"}, "schemaSamplingSize": {"default": 1000, "exclusiveMinimum": 0, "type": "integer"}, "useRandomSampling": {"default": true, "type": "boolean"}, "maxSchemaSize": {"default": 300, "exclusiveMinimum": 0, "type": "integer"}, "maxDocumentSize": {"default": 16793600, "exclusiveMinimum": 0, "type": "integer"}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "collection_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}}, "additionalProperties": false}, "json-schema": {"type": "object", "properties": {"type": {"type": "string", "enum": ["json-schema"]}, "config": {}}, "required": ["type", "config"]}, "json-schema_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "path": {"anyOf": [{"type": "string", "format": "file-path"}, {"type": "string", "format": "directory-path"}, {"type": "string", "minLength": 1, "maxLength": 65536, "format": "uri"}]}, "platform": {"type": "string"}, "use_id_as_base_uri": {"default": false, "type": "boolean"}, "uri_replace_pattern": {"allOf": [{}]}}, "required": ["path", "platform"], "additionalProperties": false}, "datahub-business-glossary": {"type": "object", "properties": {"type": {"type": "string", "enum": ["datahub-business-glossary"]}, "config": {}}, "required": ["type", "config"]}, "datahub-business-glossary_config": {"type": "object", "properties": {"file": {"anyOf": [{"type": "string"}, {"type": "string", "format": "path"}]}, "enable_auto_id": {"default": false, "type": "boolean"}}, "required": ["file"], "additionalProperties": false}, "presto": {"type": "object", "properties": {"type": {"type": "string", "enum": ["presto"]}, "config": {}}, "required": ["type", "config"]}, "presto_config": {"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": {"type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "sqlalchemy_uri": {"type": "string"}}, "required": ["host_port"], "additionalProperties": false}, "redshift-legacy": {"type": "object", "properties": {"type": {"type": "string", "enum": ["redshift-legacy"]}, "config": {}}, "required": ["type", "config"]}, "redshift-legacy_config": {"type": "object", "properties": {"s3_lineage_config": {"allOf": [{}]}, "env": {"default": "PROD", "type": "string"}, "platform_instance_map": {"type": "object", "additionalProperties": {"type": "string"}}, "bucket_duration": {"default": "DAY", "allOf": [{}]}, "end_time": {"type": "string", "format": "date-time"}, "start_time": {"type": "string", "format": "date-time"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "options": {"type": "object"}, "schema_pattern": {"default": {"allow": [".*"], "deny": ["information_schema"], "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": {"type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "sqlalchemy_uri": {"type": "string"}, "default_schema": {"default": "public", "type": "string"}, "include_table_lineage": {"default": true, "type": "boolean"}, "include_copy_lineage": {"default": true, "type": "boolean"}, "include_unload_lineage": {"default": true, "type": "boolean"}, "capture_lineage_query_parser_failures": {"default": false, "type": "boolean"}, "table_lineage_mode": {"default": "stl_scan_based", "allOf": [{}]}}, "required": ["host_port"], "additionalProperties": false}, "kafka-connect": {"type": "object", "properties": {"type": {"type": "string", "enum": ["kafka-connect"]}, "config": {}}, "required": ["type", "config"]}, "kafka-connect_config": {"type": "object", "properties": {"stateful_ingestion": {}, "env": {"default": "PROD", "type": "string"}, "platform_instance_map": {"type": "object", "additionalProperties": {"type": "string"}}, "platform_instance": {"type": "string"}, "connect_uri": {"default": "http://localhost:8083/", "type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "cluster_name": {"default": "connect-cluster", "type": "string"}, "convert_lineage_urns_to_lowercase": {"default": false, "type": "boolean"}, "connector_patterns": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "provided_configs": {"type": "array", "items": {}}, "connect_to_platform_map": {"type": "object", "additionalProperties": {"type": "object", "additionalProperties": {"type": "string"}}}, "generic_connectors": {"default": [], "type": "array", "items": {}}}, "additionalProperties": false}, "sagemaker": {"type": "object", "properties": {"type": {"type": "string", "enum": ["sagemaker"]}, "config": {}}, "required": ["type", "config"]}, "sagemaker_config": {"type": "object", "properties": {"aws_access_key_id": {"type": "string"}, "aws_secret_access_key": {"type": "string"}, "aws_session_token": {"type": "string"}, "aws_role": {"anyOf": [{"type": "string"}, {"type": "array", "items": {"anyOf": [{"type": "string"}, {}]}}]}, "aws_profile": {"type": "string"}, "aws_region": {"type": "string"}, "aws_endpoint_url": {"type": "string"}, "aws_proxy": {"type": "object", "additionalProperties": {"type": "string"}}, "env": {"default": "PROD", "type": "string"}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "table_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "extract_feature_groups": {"default": true, "type": "boolean"}, "extract_models": {"default": true, "type": "boolean"}, "extract_jobs": {"default": true, "anyOf": [{"type": "object", "additionalProperties": {"type": "string"}}, {"type": "boolean"}]}}, "required": ["aws_region"], "additionalProperties": false}, "druid": {"type": "object", "properties": {"type": {"type": "string", "enum": ["druid"]}, "config": {}}, "required": ["type", "config"]}, "druid_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "options": {"type": "object"}, "schema_pattern": {"default": {"allow": [".*"], "deny": ["^(lookup|sysgit|view).*"], "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": {"type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "scheme": {"default": "druid", "type": "string"}, "sqlalchemy_uri": {"type": "string"}}, "required": ["host_port"], "additionalProperties": false}, "glue": {"type": "object", "properties": {"type": {"type": "string", "enum": ["glue"]}, "config": {}}, "required": ["type", "config"]}, "glue_config": {"type": "object", "properties": {"aws_access_key_id": {"type": "string"}, "aws_secret_access_key": {"type": "string"}, "aws_session_token": {"type": "string"}, "aws_role": {"anyOf": [{"type": "string"}, {"type": "array", "items": {"anyOf": [{"type": "string"}, {}]}}]}, "aws_profile": {"type": "string"}, "aws_region": {"type": "string"}, "aws_endpoint_url": {"type": "string"}, "aws_proxy": {"type": "object", "additionalProperties": {"type": "string"}}, "env": {"default": "PROD", "type": "string"}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "table_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "platform": {"default": "glue", "type": "string"}, "extract_owners": {"default": true, "type": "boolean"}, "extract_transforms": {"default": true, "type": "boolean"}, "ignore_unsupported_connectors": {"default": true, "type": "boolean"}, "emit_s3_lineage": {"default": false, "type": "boolean"}, "glue_s3_lineage_direction": {"default": "upstream", "type": "string"}, "domain": {"default": {}, "type": "object", "additionalProperties": {}}, "catalog_id": {"type": "string"}, "ignore_resource_links": {"default": false, "type": "boolean"}, "use_s3_bucket_tags": {"default": false, "type": "boolean"}, "use_s3_object_tags": {"default": false, "type": "boolean"}, "profiling": {"allOf": [{}]}}, "required": ["aws_region"], "additionalProperties": false}, "clickhouse-usage": {"type": "object", "properties": {"type": {"type": "string", "enum": ["clickhouse-usage"]}, "config": {}}, "required": ["type", "config"]}, "clickhouse-usage_config": {"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "bucket_duration": {"default": "DAY", "allOf": [{}]}, "end_time": {"type": "string", "format": "date-time"}, "start_time": {"type": "string", "format": "date-time"}, "top_n_queries": {"default": 10, "exclusiveMinimum": 0, "type": "integer"}, "user_email_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "include_operational_stats": {"default": true, "type": "boolean"}, "include_read_operational_stats": {"default": false, "type": "boolean"}, "format_sql_queries": {"default": false, "type": "boolean"}, "include_top_n_queries": {"default": true, "type": "boolean"}, "platform_instance_map": {"type": "object", "additionalProperties": {"type": "string"}}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "options": {"default": {}, "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": {"default": "", "type": "string", "writeOnly": true, "format": "password"}, "host_port": {"default": "localhost:8123", "type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "sqlalchemy_uri": {"type": "string"}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "secure": {"type": "boolean"}, "protocol": {"type": "string"}, "uri_opts": {"default": {}, "type": "object", "additionalProperties": {"type": "string"}}, "include_table_lineage": {"default": true, "type": "boolean"}, "include_materialized_views": {"default": true, "type": "boolean"}, "email_domain": {"type": "string"}, "query_log_table": {"default": "system.query_log", "type": "string"}}, "required": ["email_domain"], "additionalProperties": false}, "starburst-trino-usage": {"type": "object", "properties": {"type": {"type": "string", "enum": ["starburst-trino-usage"]}, "config": {}}, "required": ["type", "config"]}, "starburst-trino-usage_config": {"type": "object", "properties": {"bucket_duration": {"default": "DAY", "allOf": [{}]}, "end_time": {"type": "string", "format": "date-time"}, "start_time": {"type": "string", "format": "date-time"}, "top_n_queries": {"default": 10, "exclusiveMinimum": 0, "type": "integer"}, "user_email_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "include_operational_stats": {"default": true, "type": "boolean"}, "include_read_operational_stats": {"default": false, "type": "boolean"}, "format_sql_queries": {"default": false, "type": "boolean"}, "include_top_n_queries": {"default": true, "type": "boolean"}, "env": {"default": "PROD", "type": "string"}, "platform_instance": {"type": "string"}, "stateful_ingestion": {}, "options": {"default": {}, "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": {"type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "sqlalchemy_uri": {"type": "string"}, "email_domain": {"type": "string"}, "audit_catalog": {"type": "string"}, "audit_schema": {"type": "string"}}, "required": ["host_port", "database", "email_domain", "audit_catalog", "audit_schema"], "additionalProperties": false}, "DynamicTypedStateProviderConfig": {"type": "object", "properties": {"type": {"type": "string"}, "config": {}}, "required": ["type"], "additionalProperties": false}, "StatefulStaleMetadataRemovalConfig": {"type": "object", "properties": {"enabled": {"default": false, "type": "boolean"}, "remove_stale_metadata": {"default": true, "type": "boolean"}}, "additionalProperties": false}, "AllowDenyPattern": {"type": "object", "properties": {"allow": {"default": [".*"], "type": "array", "items": {"type": "string"}}, "deny": {"default": [], "type": "array", "items": {"type": "string"}}, "ignoreCase": {"default": true, "type": "boolean"}}, "additionalProperties": false}, "OperationConfig": {"type": "object", "properties": {"lower_freq_profile_enabled": {"default": false, "type": "boolean"}, "profile_day_of_week": {"type": "integer"}, "profile_date_of_month": {"type": "integer"}}, "additionalProperties": false}, "GEProfilingConfig": {"type": "object", "properties": {"enabled": {"default": false, "type": "boolean"}, "operation_config": {"allOf": [{}]}, "limit": {"type": "integer"}, "offset": {"type": "integer"}, "report_dropped_profiles": {"default": false, "type": "boolean"}, "turn_off_expensive_profiling_metrics": {"default": false, "type": "boolean"}, "profile_table_level_only": {"default": false, "type": "boolean"}, "include_field_null_count": {"default": true, "type": "boolean"}, "include_field_distinct_count": {"default": true, "type": "boolean"}, "include_field_min_value": {"default": true, "type": "boolean"}, "include_field_max_value": {"default": true, "type": "boolean"}, "include_field_mean_value": {"default": true, "type": "boolean"}, "include_field_median_value": {"default": true, "type": "boolean"}, "include_field_stddev_value": {"default": true, "type": "boolean"}, "include_field_quantiles": {"default": false, "type": "boolean"}, "include_field_distinct_value_frequencies": {"default": false, "type": "boolean"}, "include_field_histogram": {"default": false, "type": "boolean"}, "include_field_sample_values": {"default": true, "type": "boolean"}, "field_sample_values_limit": {"default": 20, "type": "integer"}, "max_number_of_fields_to_profile": {"exclusiveMinimum": 0, "type": "integer"}, "profile_if_updated_since_days": {"exclusiveMinimum": 0, "type": "number"}, "profile_table_size_limit": {"default": 5, "type": "integer"}, "profile_table_row_limit": {"default": 5000000, "type": "integer"}, "profile_table_row_count_estimate_only": {"default": false, "type": "boolean"}, "max_workers": {"default": 10, "type": "integer"}, "query_combiner_enabled": {"default": true, "type": "boolean"}, "catch_exceptions": {"default": true, "type": "boolean"}, "partition_profiling_enabled": {"default": true, "type": "boolean"}, "partition_datetime": {"type": "string", "format": "date-time"}}, "additionalProperties": false}, "StatefulIngestionConfig": {"type": "object", "properties": {"enabled": {"default": false, "type": "boolean"}}, "additionalProperties": false}, "MySQLConnectionConfig": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string", "writeOnly": true, "format": "password"}, "host_port": {"default": "localhost:3306", "type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "scheme": {"default": "mysql+pymysql", "type": "string"}, "sqlalchemy_uri": {"type": "string"}, "options": {"type": "object"}}, "additionalProperties": false}, "KafkaConsumerConnectionConfig": {"type": "object", "properties": {"bootstrap": {"default": "localhost:9092", "type": "string"}, "schema_registry_url": {"default": "http://localhost:8080/schema-registry/api/", "type": "string"}, "schema_registry_config": {"type": "object"}, "client_timeout_seconds": {"default": 60, "type": "integer"}, "consumer_config": {"type": "object"}}, "additionalProperties": false}, "BucketDuration": {"enum": ["DAY", "HOUR"], "type": "string"}, "BigQueryUsageConfig": {"type": "object", "properties": {"bucket_duration": {"default": "DAY", "allOf": [{}]}, "end_time": {"type": "string", "format": "date-time"}, "start_time": {"type": "string", "format": "date-time"}, "top_n_queries": {"default": 10, "exclusiveMinimum": 0, "type": "integer"}, "user_email_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "include_operational_stats": {"default": true, "type": "boolean"}, "include_read_operational_stats": {"default": false, "type": "boolean"}, "format_sql_queries": {"default": false, "type": "boolean"}, "include_top_n_queries": {"default": true, "type": "boolean"}, "max_query_duration": {"default": 900.0, "type": "number", "format": "time-delta"}, "apply_view_usage_to_tables": {"default": false, "type": "boolean"}}, "additionalProperties": false}, "BigQueryCredential": {"type": "object", "properties": {"project_id": {"type": "string"}, "private_key_id": {"type": "string"}, "private_key": {"type": "string"}, "client_email": {"type": "string"}, "client_id": {"type": "string"}, "auth_uri": {"default": "https://accounts.google.com/o/oauth2/auth", "type": "string"}, "token_uri": {"default": "https://oauth2.googleapis.com/token", "type": "string"}, "auth_provider_x509_cert_url": {"default": "https://www.googleapis.com/oauth2/v1/certs", "type": "string"}, "type": {"default": "service_account", "type": "string"}, "client_x509_cert_url": {"type": "string"}}, "required": ["project_id", "private_key_id", "private_key", "client_email", "client_id"], "additionalProperties": false}, "LookerNamingPattern": {"type": "object", "properties": {"pattern": {"type": "string"}}, "required": ["pattern"], "additionalProperties": false}, "GitInfo": {"type": "object", "properties": {"repo": {"type": "string"}, "branch": {"default": "main", "type": "string"}, "url_template": {"type": "string"}, "deploy_key_file": {"format": "file-path", "type": "string"}, "deploy_key": {"type": "string", "writeOnly": true, "format": "password"}, "repo_ssh_locator": {"type": "string"}}, "required": ["repo"], "additionalProperties": false}, "LookerConnectionDefinition": {"type": "object", "properties": {"platform": {"type": "string"}, "default_db": {"type": "string"}, "default_schema": {"type": "string"}, "platform_instance": {"type": "string"}, "platform_env": {"type": "string"}}, "required": ["platform", "default_db"], "additionalProperties": false}, "TransportOptionsConfig": {"type": "object", "properties": {"timeout": {"type": "integer"}, "headers": {"type": "object", "additionalProperties": {"type": "string"}}}, "required": ["timeout", "headers"], "additionalProperties": false}, "LookerAPIConfig": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_secret": {"type": "string"}, "base_url": {"type": "string"}, "transport_options": {"allOf": [{}]}}, "required": ["client_id", "client_secret", "base_url"], "additionalProperties": false}, "PathSpec": {"type": "object", "properties": {"include": {"type": "string"}, "exclude": {"type": "array", "items": {"type": "string"}}, "file_types": {"default": ["csv", "tsv", "json", "parquet", "avro"], "type": "array", "items": {"type": "string"}}, "default_extension": {"type": "string"}, "table_name": {"type": "string"}, "enable_compression": {"default": true, "type": "boolean"}, "sample_files": {"default": true, "type": "boolean"}}, "required": ["include"], "additionalProperties": false}, "S3LineageProviderConfig": {"type": "object", "properties": {"path_specs": {"type": "array", "items": {}}}, "required": ["path_specs"], "additionalProperties": false}, "LineageMode": {"enum": ["sql_based", "stl_scan_based", "mixed"]}, "EmitDirective": {"enum": ["YES", "NO", "ONLY"]}, "DBTEntitiesEnabled": {"type": "object", "properties": {"models": {"default": "YES", "allOf": [{}]}, "sources": {"default": "YES", "allOf": [{}]}, "seeds": {"default": "YES", "allOf": [{}]}, "snapshots": {"default": "YES", "allOf": [{}]}, "test_definitions": {"default": "YES", "allOf": [{}]}, "test_results": {"default": "YES", "allOf": [{}]}}, "additionalProperties": false}, "AwsAssumeRoleConfig": {"type": "object", "properties": {"RoleArn": {"type": "string"}, "ExternalId": {"type": "string"}}, "required": ["RoleArn"]}, "AwsConnectionConfig": {"type": "object", "properties": {"aws_access_key_id": {"type": "string"}, "aws_secret_access_key": {"type": "string"}, "aws_session_token": {"type": "string"}, "aws_role": {"anyOf": [{"type": "string"}, {"type": "array", "items": {"anyOf": [{"type": "string"}, {}]}}]}, "aws_profile": {"type": "string"}, "aws_region": {"type": "string"}, "aws_endpoint_url": {"type": "string"}, "aws_proxy": {"type": "object", "additionalProperties": {"type": "string"}}}, "required": ["aws_region"], "additionalProperties": false}, "GitReference": {"type": "object", "properties": {"repo": {"type": "string"}, "branch": {"default": "main", "type": "string"}, "url_template": {"type": "string"}}, "required": ["repo"], "additionalProperties": false}, "PrestoOnHiveConfigMode": {"enum": ["hive", "presto", "presto-on-hive", "trino"], "type": "string"}, "PlatformDetail": {"type": "object", "properties": {"platform_instance": {"type": "string"}, "env": {"default": "PROD", "type": "string"}}, "additionalProperties": false}, "OwnershipMapping": {"type": "object", "properties": {"create_corp_user": {"default": true, "type": "boolean"}, "use_powerbi_email": {"default": false, "type": "boolean"}, "remove_email_suffix": {"default": false, "type": "boolean"}, "dataset_configured_by_as_owner": {"default": false, "type": "boolean"}, "owner_criteria": {"type": "array", "items": {"type": "string"}}}, "additionalProperties": false}, "ElasticProfiling": {"type": "object", "properties": {"enabled": {"default": false, "type": "boolean"}, "operation_config": {"allOf": [{}]}}, "additionalProperties": false}, "CollapseUrns": {"type": "object", "properties": {"urns_suffix_regex": {"type": "array", "items": {"type": "string"}}}, "additionalProperties": false}, "DynamicTypedClassifierConfig": {"type": "object", "properties": {"type": {"type": "string"}, "config": {}}, "required": ["type"], "additionalProperties": false}, "ClassificationConfig": {"type": "object", "properties": {"enabled": {"default": false, "type": "boolean"}, "sample_size": {"default": 100, "type": "integer"}, "max_workers": {"default": 2, "type": "integer"}, "table_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "column_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "info_type_to_term": {"default": {}, "type": "object", "additionalProperties": {"type": "string"}}, "classifiers": {"default": [{"type": "datahub", "config": null}], "type": "array", "items": {}}}, "additionalProperties": false}, "OAuthIdentityProvider": {"enum": ["microsoft", "okta"]}, "OAuthConfiguration": {"type": "object", "properties": {"provider": {"allOf": [{}]}, "authority_url": {"type": "string"}, "client_id": {"type": "string"}, "scopes": {"type": "array", "items": {"type": "string"}}, "use_certificate": {"default": false, "type": "boolean"}, "client_secret": {"type": "string", "writeOnly": true, "format": "password"}, "encoded_oauth_public_key": {"type": "string"}, "encoded_oauth_private_key": {"type": "string"}}, "required": ["provider", "authority_url", "client_id", "scopes"], "additionalProperties": false}, "TagOption": {"enum": ["with_lineage", "without_lineage", "skip"], "type": "string"}, "UnityCatalogProfilerConfig": {"type": "object", "properties": {"enabled": {"default": false, "type": "boolean"}, "operation_config": {"allOf": [{}]}, "warehouse_id": {"type": "string"}, "profile_table_level_only": {"default": false, "type": "boolean"}, "pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "call_analyze": {"default": true, "type": "boolean"}, "max_wait_secs": {"default": 3600, "type": "integer"}, "max_workers": {"default": 10, "type": "integer"}}, "additionalProperties": false}, "ModeAPIConfig": {"type": "object", "properties": {"retry_backoff_multiplier": {"default": 2, "anyOf": [{"type": "integer"}, {"type": "number"}]}, "max_retry_interval": {"default": 10, "anyOf": [{"type": "integer"}, {"type": "number"}]}, "max_attempts": {"default": 5, "type": "integer"}}, "additionalProperties": false}, "AdlsSourceConfig": {"type": "object", "properties": {"base_path": {"default": "/", "type": "string"}, "container_name": {"type": "string"}, "account_name": {"type": "string"}, "account_key": {"type": "string"}, "sas_token": {"type": "string"}, "client_secret": {"type": "string"}, "client_id": {"type": "string"}, "tenant_id": {"type": "string"}}, "required": ["container_name", "account_name"], "additionalProperties": false}, "IcebergProfilingConfig": {"type": "object", "properties": {"enabled": {"default": false, "type": "boolean"}, "include_field_null_count": {"default": true, "type": "boolean"}, "include_field_min_value": {"default": true, "type": "boolean"}, "include_field_max_value": {"default": true, "type": "boolean"}, "operation_config": {"allOf": [{}]}}, "additionalProperties": false}, "S3": {"type": "object", "properties": {"aws_config": {"allOf": [{}]}, "use_s3_bucket_tags": {"default": false, "type": "boolean"}, "use_s3_object_tags": {"default": false, "type": "boolean"}}, "additionalProperties": false}, "HMACKey": {"type": "object", "properties": {"hmac_access_id": {"type": "string"}, "hmac_access_secret": {"type": "string", "writeOnly": true, "format": "password"}}, "required": ["hmac_access_id", "hmac_access_secret"], "additionalProperties": false}, "TableauLineageOverrides": {"type": "object", "properties": {"platform_override_map": {"type": "object", "additionalProperties": {"type": "string"}}, "database_override_map": {"type": "object", "additionalProperties": {"type": "string"}}}, "additionalProperties": false}, "NifiAuthType": {"enum": ["NO_AUTH", "SINGLE_USER", "CLIENT_CERT", "KERBEROS", "BASIC_AUTH"]}, "FileReadMode": {"enum": ["STREAM", "BATCH", "AUTO"]}, "DataLakeProfilerConfig": {"type": "object", "properties": {"enabled": {"default": false, "type": "boolean"}, "operation_config": {"allOf": [{}]}, "profile_table_level_only": {"default": false, "type": "boolean"}, "max_number_of_fields_to_profile": {"exclusiveMinimum": 0, "type": "integer"}, "include_field_null_count": {"default": true, "type": "boolean"}, "include_field_min_value": {"default": true, "type": "boolean"}, "include_field_max_value": {"default": true, "type": "boolean"}, "include_field_mean_value": {"default": true, "type": "boolean"}, "include_field_median_value": {"default": true, "type": "boolean"}, "include_field_stddev_value": {"default": true, "type": "boolean"}, "include_field_quantiles": {"default": true, "type": "boolean"}, "include_field_distinct_value_frequencies": {"default": true, "type": "boolean"}, "include_field_histogram": {"default": true, "type": "boolean"}, "include_field_sample_values": {"default": true, "type": "boolean"}}, "additionalProperties": false}, "SalesforceAuthType": {"enum": ["USERNAME_PASSWORD", "DIRECT_ACCESS_TOKEN", "JSON_WEB_TOKEN"]}, "SalesforceProfilingConfig": {"type": "object", "properties": {"enabled": {"default": false, "type": "boolean"}, "operation_config": {"allOf": [{}]}}, "additionalProperties": false}, "URIReplacePattern": {"type": "object", "properties": {"match": {"type": "string"}, "replace": {"type": "string"}}, "required": ["match", "replace"], "additionalProperties": false}, "ProvidedConfig": {"type": "object", "properties": {"provider": {"type": "string"}, "path_key": {"type": "string"}, "value": {"type": "string"}}, "required": ["provider", "path_key", "value"], "additionalProperties": false}, "GenericConnectorConfig": {"type": "object", "properties": {"connector_name": {"type": "string"}, "source_dataset": {"type": "string"}, "source_platform": {"type": "string"}}, "required": ["connector_name", "source_dataset", "source_platform"], "additionalProperties": false}, "GlueProfilingConfig": {"type": "object", "properties": {"row_count": {"type": "string"}, "column_count": {"type": "string"}, "unique_count": {"type": "string"}, "unique_proportion": {"type": "string"}, "null_count": {"type": "string"}, "null_proportion": {"type": "string"}, "min": {"type": "string"}, "max": {"type": "string"}, "mean": {"type": "string"}, "median": {"type": "string"}, "stdev": {"type": "string"}, "partition_patterns": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "operation_config": {"allOf": [{}]}}, "additionalProperties": false}}, "type": "object", "properties": {"source": {"anyOf": [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}]}, "transformers": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "config": {"type": "object"}}, "required": ["type"], "additionalProperties": false}}, "sink": {"anyOf": [{}, {}, {}, {}]}}, "required": ["source"]}
datahub_ingestion_schema.json
filename
Path to file to write to.
{"type": "string"}
datahub_ingestion_schema.json
ca_certificate_path
Path to server's CA certificate for verification of HTTPS communications
{"type": "string"}
datahub_ingestion_schema.json
max_threads
Experimental: Max parallelism for REST API calls
{"type": "number", "default": 15}
datahub_ingestion_schema.json
retry_status_codes
Retry HTTP request also on these status codes
{"type": "array", "items": {"type": "number"}, "default": [429, 502, 503, 504]}
datahub_ingestion_schema.json
server
URL of DataHub GMS endpoint.
{"type": "string"}
datahub_ingestion_schema.json
timeout_sec
Per-HTTP request timeout.
{"type": "number", "default": 30}
datahub_ingestion_schema.json
token
Bearer token used for authentication.
{"type": "string"}
datahub_ingestion_schema.json
extra_headers
Extra headers which will be added to the request.
{"type": "string"}
datahub_ingestion_schema.json
disable_ssl_verification
Disable SSL verification for HTTPS communications.
{"type": "boolean", "default": false}
datahub_ingestion_schema.json
bootstrap
Kafka bootstrap URL.
{"type": "string", "default": "localhost:9092"}
datahub_ingestion_schema.json
producer_config
Passed to https://docs.confluent.io/platform/current/clients/confluent-kafka-python/html/index.html#confluent_kafka.SerializingProducer
{"type": "object"}
datahub_ingestion_schema.json
schema_registry_url
URL of schema registry being used.
{"type": "string", "default": "http://localhost:8081"}
datahub_ingestion_schema.json
schema_registry_config
Passed to https://docs.confluent.io/platform/current/clients/confluent-kafka-python/html/index.html#confluent_kafka.schema_registry.SchemaRegistryClient
{"type": "object"}
datahub_ingestion_schema.json
MetadataChangeEvent
Overridden Kafka topic name for the MetadataChangeEvent
{"type": "string", "default": "MetadataChangeEvent"}
datahub_ingestion_schema.json
MetadataChangeProposal
Overridden Kafka topic name for the MetadataChangeProposal
{"type": "string", "default": "MetadataChangeProposal"}
datahub_ingestion_schema.json
mysql_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:3306", "type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "scheme": {"default": "mysql+pymysql", "type": "string"}, "sqlalchemy_uri": {"type": "string"}, "database_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}}, "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
Deprecated in favour of database_pattern.
{"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
MySQL host URL.
{"default": "localhost:3306", "type": "string"}
datahub_ingestion_schema.json
database
database (catalog)
{"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
database_pattern
Regex patterns for databases to filter in ingestion.
{"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}
datahub_ingestion_schema.json
oracle_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": {"type": "string"}, "database": {"type": "string"}, "database_alias": {"type": "string"}, "scheme": {"default": "oracle+cx_oracle", "type": "string"}, "sqlalchemy_uri": {"type": "string"}, "service_name": {"type": "string"}, "add_database_name_to_urn": {"default": false, "type": "boolean"}}, "required": ["host_port"], "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
host URL
{"type": "string"}
datahub_ingestion_schema.json
database
If using, omit `service_name`.
{"type": "string"}
datahub_ingestion_schema.json
database_alias
[Deprecated] Alias to apply to database when ingesting.
{"type": "string"}
datahub_ingestion_schema.json
scheme
Will be set automatically to default value.
{"default": "oracle+cx_oracle", "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
service_name
Oracle service name. If using, omit `database`.
{"type": "string"}
datahub_ingestion_schema.json
add_database_name_to_urn
Add oracle database name to urn, default urn is schema.table
{"default": false, "type": "boolean"}
datahub_ingestion_schema.json
powerbi-report-server_config
Any source that produces dataset urns in a single environment should inherit this class
{"type": "object", "properties": {"env": {"default": "PROD", "type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "workstation_name": {"default": "localhost", "type": "string"}, "host_port": {"type": "string"}, "server_alias": {"default": "", "type": "string"}, "graphql_url": {"type": "string"}, "report_virtual_directory_name": {"type": "string"}, "report_server_virtual_directory_name": {"type": "string"}, "extract_ownership": {"default": true, "type": "boolean"}, "ownership_type": {"default": "NONE", "type": "string"}, "platform_name": {"default": "powerbi", "type": "string"}, "platform_urn": {"default": "urn:li:dataPlatform:powerbi", "type": "string"}, "report_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}, "chart_pattern": {"default": {"allow": [".*"], "deny": [], "ignoreCase": true}, "allOf": [{}]}}, "required": ["username", "password", "host_port", "report_virtual_directory_name", "report_server_virtual_directory_name"], "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
username
Windows account username
{"type": "string"}
datahub_ingestion_schema.json
password
Windows account password
{"type": "string"}
datahub_ingestion_schema.json
workstation_name
Workstation name
{"default": "localhost", "type": "string"}
datahub_ingestion_schema.json
host_port
Power BI Report Server host URL
{"type": "string"}
datahub_ingestion_schema.json
server_alias
Alias for Power BI Report Server host URL
{"default": "", "type": "string"}
datahub_ingestion_schema.json
graphql_url
[deprecated] Not used
{"type": "string"}
datahub_ingestion_schema.json
report_virtual_directory_name
Report Virtual Directory URL name
{"type": "string"}
datahub_ingestion_schema.json
report_server_virtual_directory_name
Report Server Virtual Directory URL name
{"type": "string"}
datahub_ingestion_schema.json
extract_ownership
Whether ownership should be ingested
{"default": true, "type": "boolean"}
datahub_ingestion_schema.json
ownership_type
Ownership type of owner
{"default": "NONE", "type": "string"}
datahub_ingestion_schema.json
datahub_config
Base configuration class for stateful ingestion for source configs to inherit from.
{"type": "object", "properties": {"stateful_ingestion": {"default": {"enabled": true, "max_checkpoint_state_size": 16777216, "state_provider": {"type": "datahub", "config": null}, "ignore_old_state": false, "ignore_new_state": false}, "allOf": [{}]}, "mysql_connection": {"default": {"username": null, "host_port": "localhost:3306", "database": null, "database_alias": null, "scheme": "mysql+pymysql", "sqlalchemy_uri": null, "options": {}}, "allOf": [{}]}, "kafka_connection": {"default": {"bootstrap": "localhost:9092", "schema_registry_url": "http://localhost:8080/schema-registry/api/", "schema_registry_config": {}, "client_timeout_seconds": 60, "consumer_config": {}}, "allOf": [{}]}, "include_all_versions": {"default": false, "type": "boolean"}, "mysql_batch_size": {"default": 10000, "type": "integer"}, "mysql_table_name": {"default": "metadata_aspect_v2", "type": "string"}, "kafka_topic_name": {"default": "MetadataChangeLog_Timeseries_v1", "type": "string"}, "commit_state_interval": {"default": 1000, "type": "integer"}, "commit_with_parse_errors": {"default": false, "type": "boolean"}}}
datahub_ingestion_schema.json
stateful_ingestion
Stateful Ingestion Config
{"default": {"enabled": true, "max_checkpoint_state_size": 16777216, "state_provider": {"type": "datahub", "config": null}, "ignore_old_state": false, "ignore_new_state": false}, "allOf": [{}]}
datahub_ingestion_schema.json
mysql_connection
MySQL connection config
{"default": {"username": null, "host_port": "localhost:3306", "database": null, "database_alias": null, "scheme": "mysql+pymysql", "sqlalchemy_uri": null, "options": {}}, "allOf": [{}]}