app-operations_manager Schemas

On this page:

automation-api

{ "$id": "automation-api", "title": "Automation Schema Document", "description": "an automation catalog document", "type": "object", "propertyNames": { "anyOf": [ { "$ref": "automation-common#/definitions/commonFieldNames" }, { "enum": [ "gbac", "createdBy", "lastUpdatedBy", "componentName", "componentId" ] } ] }, "allOf": [ { "$ref": "automation-common#/definitions/commonFields" }, { "properties": { "gbac": { "$ref": "automation-common#/definitions/gbacNormalized" }, "createdBy": { "type": "string" }, "lastUpdatedBy": { "type": "string" }, "componentName": { "description": "The unique name for the component type", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "componentId": { "description": "The unique identifier for the component type", "oneOf": [ { "type": "string" }, { "type": "null" } ] } } } ] }