{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CompetencyScale", "required": [ "scaleId", "name", "levels" ], "properties": { "scaleId": { "type": "string", "format": "uuid" }, "name": { "type": "string" }, "levels": { "type": "array", "items": { "$ref": "#/components/schemas/CompetencyScaleLevel" }, "xml": { "wrapped": true } } }, "type": "object", "xml": { "name": "competencyScale" } }