{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CompetencyProfile", "required": [ "profileId", "name", "description", "competencies", "indicators" ], "properties": { "profileId": { "type": "string", "format": "uuid" }, "name": { "type": "string" }, "description": { "type": "string" }, "competencies": { "type": "array", "items": { "$ref": "#/components/schemas/ProfileCompetencyData" }, "xml": { "wrapped": true } }, "indicators": { "type": "array", "items": { "$ref": "#/components/schemas/ProfileIndicatorData" }, "xml": { "wrapped": true } } }, "type": "object", "xml": { "name": "competencyProfile" } }