app-operations_manager Schemas

On this page:

endpoint-trigger-api

{ "$id": "endpoint-trigger-api", "title": "Endpoint Triggers Schema", "description": "Schema for a Endpoint Trigger", "type": "object", "required": [ "name", "type", "enabled", "actionType", "actionId", "routeName", "verb" ], "propertyNames": { "anyOf": [ { "$ref": "triggers-common-schema#/definitions/commonFieldNames" }, { "$ref": "triggers-api#/definitions/commonApiFieldNames" }, { "$ref": "endpoint-trigger-common#/definitions/commonEndpointTriggerFieldNames" }, { "enum": [ "createdBy", "lastUpdatedBy" ] } ] }, "allOf": [ { "$ref": "triggers-common-schema#/definitions/commonFields" }, { "$ref": "triggers-api#/definitions/commonApiFields" }, { "$ref": "endpoint-trigger-common#/definitions/commonEndpointTriggerFields" }, { "properties": { "createdBy": { "description": "The username of the user who created the endpoint trigger.", "type": "string", "example": "admin@pronghorn" }, "lastUpdatedBy": { "description": "The username of the user who last updated the endpoint trigger.", "type": "string", "example": "admin@pronghorn" } } } ] }