app-operations_manager Schemas

On this page:

triggers-db

{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "triggers-db", "$comment": "TODO: Clean up schema naming and allow partial documents here in the database schema.", "oneOf": [ { "$ref": "endpoint-trigger-db" }, { "$ref": "eventSystem-trigger-db" }, { "$ref": "manual-trigger-db" }, { "$ref": "schedule-trigger-db" } ], "definitions": { "commonDbFieldNames": { "$comment": "Field names specific to the DB representation of triggers", "enum": [ "createdBy", "lastUpdatedBy" ] }, "commonDbFields": { "additionalProperties": true, "type": "object", "createdBy": { "$ref": "common-ops-schema#/definitions/userAccount" }, "lastUpdatedBy": { "$ref": "common-ops-schema#/definitions/userAccount" } } } }