app-smart_template Schemas

On this page:

smartTemplateInstance

{ "$id": "smartTemplateInstance", "title": "Instance object for dry run and provision", "type": "object", "properties": { "variables": { "type": "object", "patternProperties": { "[a-zA-Z]+": { "$ref": "instanceData#/definitions/randomList" } }, "minProperties": 1, "maxProperties": 1 }, "faml": { "type": "object", "oneOf": [ { "$ref": "famlObject#/definitions/famlLeaf" }, { "$ref": "famlObject#/definitions/famlContainer" }, { "$ref": "famlObject#/definitions/famlList" } ] }, "action": { "enum": [ "create" ] } }, "required": [ "variables", "faml", "action" ] }