app-operations_manager Schemas

On this page:

manual-trigger-api

{ "$id": "manual-trigger-api", "title": "Manual Triggers Schema", "description": "Schema for a Manual Trigger", "type": "object", "required": [ "name", "type", "enabled", "actionType", "actionId" ], "propertyNames": { "anyOf": [ { "$ref": "triggers-common-schema#/definitions/commonFieldNames" }, { "$ref": "triggers-api#/definitions/commonApiFieldNames" }, { "$ref": "manual-trigger-common#/definitions/commonManualTriggerFieldNames" }, { "enum": [ "formId", "createdBy", "lastUpdatedBy" ] } ] }, "allOf": [ { "$ref": "triggers-common-schema#/definitions/commonFields" }, { "$ref": "triggers-api#/definitions/commonApiFields" }, { "$ref": "manual-trigger-common#/definitions/commonManualTriggerFields" }, { "properties": { "formId": { "description": "The ID of a JSON Form used to provide inputs to a workflow from this trigger", "oneOf": [ { "$ref": "common-ops-schema#/definitions/ObjectIdLikeString" }, { "type": "null" } ] }, "createdBy": { "description": "The username of the user who created the manual trigger.", "type": "string", "example": "admin@pronghorn" }, "lastUpdatedBy": { "description": "The username of the user who last updated the manual trigger.", "type": "string", "example": "admin@pronghorn" } } } ] }