app-automation_studio Schemas

On this page:

workflowTest

{ "$id": "workflowTest", "title": "Workflow Test Document", "description": "An entity representing a workflow test.", "type": "object", "definitions": { "ObjectId": { "type": "string", "pattern": "^[0-9a-fA-F]{24}$", "description": "Unique identifier of the automation" }, "searchableFields": { "type": "object", "additionalProperties": false, "properties": { "_id": { "type": "string" }, "name": { "type": "string" }, "workflowId": { "type": "string" }, "overrides": { "type": "object" }, "underrides": { "type": "array" }, "variables": { "type": "object" }, "expectedOutput": { "type": "object" }, "createdBy": { "type": "string" }, "created": { "type": "string" }, "lastUpdatedBy": { "type": "string" }, "lastUpdated": { "type": "string" } } } }, "properties": { "_id": { "$ref": "#/definitions/ObjectId" }, "name": { "type": "string", "examples": [ "test" ], "minLength": 1 }, "workflowId": { "type": "string", "minLength": 1 }, "overrides": { "type": "object" }, "underrides": { "type": "array" }, "variables": { "type": "object" }, "expectedOutput": { "type": "object" }, "createdBy": { "$ref": "#/definitions/ObjectId" }, "created": { "type": "string", "examples": [ "2019-11-25T22:51:39.201Z" ], "format": "date-time" }, "lastUpdatedBy": { "$ref": "#/definitions/ObjectId" }, "lastUpdated": { "type": "string", "examples": [ "2019-11-25T22:51:39.201Z" ], "format": "date-time" }, "version": { "type": "number", "examples": [ 1 ], "minimum": 1 }, "pkgVersion": { "type": "string", "examples": [ "3.40.3" ], "minimum": 1 } }, "required": [ "name", "overrides", "underrides", "variables", "expectedOutput" ], "additionalProperties": false }