diff --git a/flow.schema.json b/flow.schema.json index 1c17046035..fa097bde92 100644 --- a/flow.schema.json +++ b/flow.schema.json @@ -456,6 +456,10 @@ } } }, + "DekafConfig": { + "description": "Dekaf configuration. Currently empty, but present to enable easy addition of config options when they show up in the future.", + "type": "object" + }, "Derivation": { "description": "Derive specifies how a collection is derived from other collections.", "type": "object", @@ -913,6 +917,19 @@ } }, "additionalProperties": false + }, + { + "title": "A Dekaf connection", + "type": "object", + "required": [ + "dekaf" + ], + "properties": { + "dekaf": { + "$ref": "#/definitions/DekafConfig" + } + }, + "additionalProperties": false } ] },