app-automation_studio Schemas

On this page:

common-db

{ "$id": "common-db", "title": "Common Definitions for DB Schemas", "description": "Common schema definitions shared by Automation Studio component schemas", "definitions": { "document-identifier": { "description": "A MongoDB ObjectId", "type": "object" }, "account-identifier": { "oneOf": [ { "const": "Pronghorn" }, { "$ref": "#/definitions/document-identifier" } ] }, "mongodb-iso-date": { "description": "A Date instance", "type": "object" }, "folderNode": { "type": "object", "properties": { "nodeType": { "$ref": "projects-common#/definitions/folderNodeType" }, "name": { "$ref": "projects-common#/definitions/folderName" }, "children": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/folderNode" }, { "$ref": "#/definitions/componentNode" } ] } } } }, "componentNode": { "type": "object", "properties": { "iid": { "$ref": "common#/definitions/iid" }, "nodeType": { "$ref": "projects-common#/definitions/folderNodeType" } } } } }