{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DataFlow", "title": "DataFlow", "type": "object", "properties": { "streams": { "type": "array", "items": { "type": "string" }, "description": "List of streams for this data flow." }, "destinations": { "type": "array", "items": { "type": "string" }, "description": "List of destinations for this data flow." }, "transformKql": { "type": "string", "description": "The KQL query to transform stream data." }, "outputStream": { "type": "string", "description": "The output stream of the transform." }, "builtInTransform": { "type": "string", "description": "The built-in transform to apply." } } }