{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AspectTypeCreate", "title": "AspectTypeCreate", "type": "object", "required": [ "name", "category", "variables" ], "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "category": { "type": "string", "enum": [ "static", "dynamic" ] }, "scope": { "type": "string", "enum": [ "private", "public" ], "default": "private" }, "variables": { "type": "array", "minItems": 1, "items": { "$ref": "#/components/schemas/VariableDefinition" } } } }