app-operations_manager Schemas

On this page:

endpoint-trigger-db

{ "$id": "endpoint-trigger-db", "title": "Endpoint Triggers Schema", "description": "Schema for a Endpoint Trigger", "type": "object", "required": [ "name", "type", "enabled", "actionType", "actionId", "routeName", "verb", "schema", "jst" ], "propertyNames": { "anyOf": [ { "$ref": "triggers-common-schema#/definitions/commonFieldNames" }, { "$ref": "triggers-db#/definitions/commonDbFieldNames" }, { "$ref": "endpoint-trigger-common#/definitions/commonEndpointTriggerFieldNames" }, { "enum": [ "createdBy", "lastUpdatedBy" ] } ] }, "allOf": [ { "$ref": "triggers-common-schema#/definitions/commonFields" }, { "$ref": "triggers-db#/definitions/commonDbFields" }, { "$ref": "endpoint-trigger-common#/definitions/commonEndpointTriggerFields" }, { "properties": { "createdBy": { "$ref": "common-ops-schema#/definitions/ObjectIdLikeString", "description": "The ID of the user who created the endpoint trigger." }, "lastUpdatedBy": { "$ref": "common-ops-schema#/definitions/ObjectIdLikeString", "description": "The ID of the user who last updated the endpoint trigger." } } } ] }