app-automation_studio Schemas

On this page:

common-export

{ "$id": "common-export", "title": "Common Definitions for Export Schemas", "description": "Common schema definitions shared by Automation Studio component schemas", "definitions": { "dereferenced-account": { "type": "object", "properties": { "_id": { "$ref": "common#/definitions/object-id-string" }, "username": { "oneOf": [ { "type": "null" }, { "type": "string" } ] }, "provenance": { "type": "string" }, "firstname": { "type": "string" } }, "required": [ "_id", "username", "provenance", "firstname" ], "additionalProperties": false }, "account": { "oneOf": [ { "const": "Pronghorn" }, { "$ref": "#/definitions/dereferenced-account" } ] } } }