{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://jobdatapool.com/schemas/job-listing.schema.json",
  "title": "JobListing",
  "type": "object",
  "description": "Canonical listing row structure from the JobDataPool v1 API.",
  "additionalProperties": true,
  "properties": {
    "id": {
      "type": "string"
    },
    "job_title": {
      "type": "string"
    },
    "company_name": {
      "type": "string"
    },
    "job_location": {
      "type": "string"
    },
    "job_seniority_level": {
      "type": "string"
    },
    "job_employment_type": {
      "type": "string"
    },
    "job_industries": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      ]
    },
    "job_summary": {
      "type": "string"
    },
    "job_base_pay_range": {
      "type": "string"
    },
    "job_posted_date": {
      "type": "string"
    },
    "competitiveness_score": {
      "type": [
        "number",
        "string"
      ]
    },
    "skills": {
      "type": "string"
    },
    "certifications": {
      "type": "string"
    },
    "industries": {
      "type": "string"
    },
    "achievements": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "apply_link": {
      "type": "string"
    },
    "country_code": {
      "type": "string"
    },
    "ingest_utc_date": {
      "type": "string"
    },
    "ingest_utc_hour": {
      "type": [
        "string",
        "number"
      ]
    },
    "source_business_url": {
      "type": "string"
    }
  }
}
