Workday · Schema

Skill

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string
descriptor string
name string
category object
proficiencyLevel object
View JSON Schema on GitHub

JSON Schema

workday-skill-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Skill",
  "title": "Skill",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "category": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "proficiencyLevel": {
      "$ref": "#/components/schemas/ResourceReference"
    }
  }
}