app-operations_manager Schemas

On this page:

automation-json

{ "$id": "automation-json", "title": "Automation Schema Document", "description": "an automation catalog document", "type": "object", "propertyNames": { "anyOf": [ { "$ref": "automation-common#/definitions/commonFieldNames" }, { "enum": [ "gbac", "createdBy", "lastUpdatedBy", "triggers", "componentName" ] } ] }, "allOf": [ { "$ref": "automation-common#/definitions/commonFields" }, { "properties": { "gbac": { "$ref": "automation-common#/definitions/gbacDenormalized" }, "createdBy": { "type": "string", "examples": [ "johnsmith1@acme.com" ] }, "lastUpdatedBy": { "type": "string", "examples": [ "johnsmith1@acme.com" ] }, "triggers": { "type": "array", "items": { "$ref": "triggers-json" } }, "componentName": { "description": "The name of the related component", "oneOf": [ { "type": "string" }, { "type": "null" } ] } } } ] }