{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/acadia/refs/heads/main/json-structure/acadia-employee-skills-matrix-structure.json", "name": "EmployeeSkillsMatrix", "description": "Complete skills matrix for an employee", "type": "object", "properties": { "employeeId": { "type": "string", "description": "Employee identifier", "example": "emp-ghi789" }, "employeeName": { "type": "string", "description": "Employee name", "example": "Jane Smith" }, "role": { "type": "string", "description": "Current job role", "example": "Machine Operator" }, "skills": { "type": "array", "items": { "$ref": "#/components/schemas/SkillRecord" } }, "overallCompletion": { "type": "int32", "description": "Overall skill completion percentage", "example": 87 } } }