app-operations_manager Schemas

On this page:

triggers-json

{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "triggers-json", "$comment": "TODO: Clean up schema naming and move all export-specific rules out of definitions and into separate sub-schemas.", "oneOf": [ { "$ref": "endpoint-trigger-json" }, { "$ref": "eventSystem-trigger-json" }, { "$ref": "manual-trigger-json" }, { "$ref": "schedule-trigger-json" } ], "definitions": { "commonJsonFieldNames": { "$comment": "Field names specific to exported triggers", "enum": [ "createdBy", "lastUpdatedBy", "migrationVersion" ] }, "commonJsonFields": { "additionalProperties": true, "type": "object", "createdBy": { "type": "string" }, "lastUpdatedBy": { "type": "string" }, "migrationVersion": { "description": "The current document version of this trigger", "type": "integer", "examples": [ 1, 2 ] } } } }