app-operations_manager Schemas

On this page:

automation-json

{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "automation-json", "title": "Automation Document", "description": "An Automation document in JSON/export format.", "required": [ "name", "description", "componentType", "_id", "gbac", "componentName" ], "propertyNames": { "anyOf": [ { "$ref": "automation-common#/definitions/commonFieldNames" }, { "$ref": "common#/definitions/metadataFieldNames" }, { "enum": [ "_id", "gbac", "triggers", "componentName" ] } ] }, "allOf": [ { "$ref": "automation-common#/definitions/commonFields" }, { "$ref": "common#/definitions/metadataFieldsDereferenced" }, { "type": "object", "properties": { "_id": { "$ref": "common#/definitions/ObjectIdLikeString" }, "gbac": { "$ref": "automation-common#/definitions/gbacDereferenced" }, "triggers": { "type": "array", "items": { "$ref": "trigger-json" } }, "componentName": { "$ref": "automation-common#/definitions/componentName" } } } ] }