{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "additionalProperties": true, "properties": { "deployment": { "type": "object", "additionalProperties": true, "required": ["environment"], "properties": { "environment": {"type": "string"} } }, "approvals": { "type": "array", "items": { "type": "object", "additionalProperties": true, "required": ["active"], "properties": { "active": {"type": "boolean"} } } } } }