Upwork · Schema

Skill

A skill associated with a job or profile

FreelancingJobsTalentMarketplaceContractsHiring

Properties

Name Type Description
name string Skill name
uid string Unique identifier for the skill
View JSON Schema on GitHub

JSON Schema

graphql-skill-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/upwork/refs/heads/main/json-schema/graphql-skill-schema.json",
  "title": "Skill",
  "description": "A skill associated with a job or profile",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Skill name",
      "example": "Python"
    },
    "uid": {
      "type": "string",
      "description": "Unique identifier for the skill",
      "example": "skill-123"
    }
  }
}