{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Plan", "title": "Plan", "type": "object", "description": "An ordered sequence of tasks in Talend Cloud", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "workspaceId": { "type": "string" }, "description": { "type": "string" }, "steps": { "type": "array", "items": { "type": "object", "properties": { "taskId": { "type": "string" }, "order": { "type": "integer" } } } }, "created": { "type": "string", "format": "date-time" }, "updated": { "type": "string", "format": "date-time" } } }