Properties
| Name | Type | Description |
|---|---|---|
| streams | array | List of streams for this data flow. |
| destinations | array | List of destinations for this data flow. |
| transformKql | string | The KQL query to transform stream data. |
| outputStream | string | The output stream of the transform. |
| builtInTransform | string | The built-in transform to apply. |
JSON Schema
{
"$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."
}
}
}