app-operations_manager Schemas

On this page:

endpoint-trigger-common

{ "$id": "endpoint-trigger-common", "description": "Type definitions for all Endpoint Trigger formats.", "definitions": { "commonFieldNames": { "enum": [ "verb", "routeName", "schema" ] }, "commonFields": { "type": "object", "properties": { "type": { "const": "endpoint" }, "verb": { "const": "POST" }, "routeName": { "description": "User defined route name.", "type": "string", "pattern": "^[a-zA-Z0-9_-]+$" }, "schema": { "description": "POST body filter schema.", "oneOf": [ { "type": "object" }, { "type": "null" } ] } } } } }