fix(ingest): bump source configs json schema version (#9424)

This commit is contained in:
Harshal Sheth 2023-12-14 16:54:40 -05:00 committed by GitHub
parent 26114dfeb2
commit 4354af2012
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ from typing import Any, Dict, List
def get_base() -> Any:
return {
"$schema": "http://json-schema.org/draft-04/schema#",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"id": "https://json.schemastore.org/datahub-ingestion",
"title": "Datahub Ingestion",
"description": "Root schema of Datahub Ingestion",
@ -116,7 +116,7 @@ def get_base() -> Any:
"bootstrap": {
"type": "string",
"description": "Kafka bootstrap URL.",
"default": "localhost:9092"
"default": "localhost:9092",
},
"producer_config": {
"type": "object",
@ -125,7 +125,7 @@ def get_base() -> Any:
"schema_registry_url": {
"type": "string",
"description": "URL of schema registry being used.",
"default": "http://localhost:8081"
"default": "http://localhost:8081",
},
"schema_registry_config": {
"type": "object",