app-operations_manager Schemas

On this page:

manual-schema-export

{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "manual-schema-export", "title": "Exported Manual Triggers Schema", "description": "Schema for an exported Manual Trigger", "type": "object", "additionalProperties": false, "required": [ "name", "actionType", "actionId", "enabled", "type" ], "properties": { "_id": { "$ref": "common-ops-schema#/definitions/ObjectId" }, "created": { "$ref": "common-ops-schema#/definitions/ISODate" }, "createdBy": { "type": "string" }, "lastUpdated": { "$ref": "common-ops-schema#/definitions/ISODate" }, "lastUpdatedBy": { "type": "string" }, "name": { "$ref": "common-ops-schema#/definitions/name" }, "enabled": { "$ref": "common-ops-schema#/definitions/enabled" }, "actionType": { "$ref": "common-ops-schema#/definitions/actionType" }, "actionId": { "$ref": "common-ops-schema#/definitions/ObjectId" }, "type": { "const": "manual" }, "formData": { "oneOf": [ { "type": "object" }, { "type": "null" } ] }, "formId": { "type": [ "string", "null" ] } } }