> ## Documentation Index
> Fetch the complete documentation index at: https://docs.peopledatalabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Elasticsearch Mapping - Job Posting

The following is the full Elasticsearch field mapping for Job Posting Data. Use the mapping when writing Elasticsearch queries with the [Job Posting API](/docs/job-posting-search-api).

For more information about Elasticsearch fields, see [https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-types.html](https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-types.html).

```json JSON expandable theme={null}
{
  "properties": {
    "id": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "first_seen": {
      "type": "date",
      "index": true,
      "doc_values": true,
      "format": "epoch_millis||strict_date_optional_time||yyyy-MM-dd"
    },
    "deactivated_date": {
      "type": "date",
      "index": true,
      "doc_values": true,
      "format": "epoch_millis||strict_date_optional_time||yyyy-MM-dd"
    },
    "last_verified": {
      "type": "date",
      "index": true,
      "doc_values": true,
      "format": "epoch_millis||strict_date_optional_time||yyyy-MM-dd"
    },
    "title": {
      "type": "text",
      "index": true,
      "doc_values": false
    },
    "title_raw": {
      "type": "text",
      "index": true,
      "doc_values": false
    },
    "title_class": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "title_role": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "title_sub_role": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "title_levels": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "company_id": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "company_name": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "company_website": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "company_linkedin_url": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "company_industry": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "company_industry_v2": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "locations": {
      "properties": {
        "name": {
          "type": "keyword",
          "index": true,
          "doc_values": false
        },
        "locality": {
          "type": "keyword",
          "index": true,
          "doc_values": false
        },
        "region": {
          "type": "keyword",
          "index": true,
          "doc_values": false
        },
        "metro": {
          "type": "keyword",
          "index": true,
          "doc_values": false
        },
        "country": {
          "type": "keyword",
          "index": true,
          "doc_values": false
        },
        "continent": {
          "type": "keyword",
          "index": true,
          "doc_values": false
        }
      }
    },
    "description": {
      "type": "text",
      "index": true,
      "doc_values": false
    },
    "inferred_skills": {
      "properties": {
        "name": {
          "type": "text",
          "index": true,
          "doc_values": false
        }
      }
    },
    "remote_work_policy": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "salary_min": {
      "type": "float",
      "index": true,
      "doc_values": false
    },
    "salary_max": {
      "type": "float",
      "index": true,
      "doc_values": false
    },
    "salary_period": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    },
    "salary_currency": {
      "type": "keyword",
      "index": true,
      "doc_values": false
    }
  }
}
```


## Related topics

- [Elasticsearch Mapping - Company](/docs/elasticsearch-mapping-company.md)
- [Reference - Job Posting Search API](/docs/reference-job-posting-search-api.md)
- [Input Parameters - Job Posting Search API](/docs/input-parameters-job-posting-search-api.md)
- [Elasticsearch Mapping - Person](/docs/elasticsearch-mapping.md)
- [October 2021 Release Notes](/changelog/october-2021-release-notes-v16.md)
