app-automation_studio Schemas

On this page:

workflowTestUpdate

{ "$id": "workflowTestUpdate", "title": "Workflow Test Update", "description": "An entity representing an update to an existing workflow test document.", "type": "object", "properties": { "name": { "type": "string", "examples": [ "test" ], "minLength": 1 }, "workflowId": { "type": "string", "minLength": 1 }, "overrides": { "type": "object" }, "underrides": { "type": "array" }, "variables": { "type": "object" }, "expectedOutput": { "type": "object" } }, "required": [ "name", "overrides", "underrides", "variables", "expectedOutput" ], "additionalProperties": false }