Acadia · JSON Structure

Acadia Employee Skills Matrix Structure

Complete skills matrix for an employee

Type: object Properties: 5
Connected WorkerKnowledge ManagementManufacturingSkills ManagementTrainingWorkforce Development

EmployeeSkillsMatrix is a JSON Structure definition published by Acadia, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

employeeId employeeName role skills overallCompletion

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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
    }
  }
}