{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://jobdatapool.com/schemas/jobs-query-request.schema.json",
  "title": "JobsQueryRequest",
  "type": "object",
  "description": "Request body contract for POST /v1/jobs.",
  "additionalProperties": false,
  "properties": {
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 500
    },
    "industries": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      ]
    },
    "country_code": {
      "type": "string",
      "minLength": 2,
      "maxLength": 2
    },
    "distinct_by": {
      "type": "string",
      "enum": [
        "job_title",
        "apply_link",
        "url",
        "company_name"
      ]
    }
  }
}
