app-workflow_engine Schemas

On this page:

taskDetails

{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "taskDetails", "type": "object", "title": "The Root Schema", "required": [ "location", "name", "app", "variables" ], "definitions": { "variables": { "type": "object", "additionalProperties": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "string", "number", "array", "object", "enum", "boolean", "*" ] }, "description": { "type": "string", "examples": [ "Example description" ] }, "schema": { "type": "object" } } } } }, "properties": { "location": { "type": "string", "enum": [ "Application", "Adapter", "Broker" ] }, "name": { "type": "string", "examples": [ "query" ] }, "app": { "type": "string", "examples": [ "WorkFlowEngine" ] }, "variables": { "type": "object", "properties": { "incoming": { "$ref": "#/definitions/variables" }, "outgoing": { "$ref": "#/definitions/variables" } } } } }