{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateDataStreamRequest", "title": "UpdateDataStreamRequest", "type": "object", "properties": { "description": { "type": "string", "example": "A sample description." }, "status": { "type": "string", "enum": [ "active", "inactive" ], "example": "active" }, "target": { "type": "object", "properties": { "type": { "type": "string" }, "uri": { "type": "string" }, "topicName": { "type": "string" }, "format": { "type": "string" } }, "example": "example_value" }, "filters": { "type": "array", "items": { "type": "object", "properties": { "schema": { "type": "string" }, "table": { "type": "string" }, "operations": { "type": "array", "items": { "type": "string" } } } }, "example": [] } } }