Skip to content

Commit

Permalink
fix(ingest): bump source configs json schema version (datahub-project…
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 authored Dec 14, 2023
1 parent 26114df commit 4354af2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs-website/genJsonSchema/gen_json_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 4354af2

Please sign in to comment.