Indeed · Schema

Qualification

A qualification required or preferred for the job position, such as education level, years of experience, certifications, or skills.

CareersEmploymentHiringJob SearchJobsRecruiting

Properties

Name Type Description
type string The category of the qualification.
description string Description of the qualification.
required boolean Whether this qualification is required or preferred.
View JSON Schema on GitHub

JSON Schema

indeed-qualification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Qualification",
  "title": "Qualification",
  "type": "object",
  "description": "A qualification required or preferred for the job position, such as education level, years of experience, certifications, or skills.",
  "properties": {
    "type": {
      "type": "string",
      "description": "The category of the qualification.",
      "enum": [
        "EDUCATION",
        "EXPERIENCE",
        "CERTIFICATION",
        "SKILL",
        "LICENSE"
      ],
      "example": "EXPERIENCE"
    },
    "description": {
      "type": "string",
      "description": "Description of the qualification.",
      "example": "5+ years of software development experience"
    },
    "required": {
      "type": "boolean",
      "description": "Whether this qualification is required or preferred.",
      "example": true
    }
  }
}