{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "installStep": { "properties": { "helm": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": ["name"], "type": "object" } }, "required": ["helm"], "type": "object" } }, "properties": { "install": { "items": { "anyOf": [ { "$ref": "#/definitions/installStep" } ] }, "type": "array" } }, "type": "object" }