{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Dataflow", "title": "Dataflow", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "label": { "type": "string" }, "description": { "type": [ "string", "null" ] }, "createdDate": { "type": "string", "format": "date-time" }, "lastModifiedDate": { "type": "string", "format": "date-time" }, "definition": { "type": "object", "additionalProperties": true, "description": "The dataflow definition JSON containing nodes and transformations" }, "url": { "type": "string" } } }