Indeed · Schema
JobLocation
The location of the job.
CareersEmploymentHiringJob SearchJobsRecruiting
Properties
| Name | Type | Description |
|---|---|---|
| streetAddress | string | Street address of the job location. |
| city | string | City where the job is located. |
| state | string | State, province, or region. |
| postalCode | string | Postal or ZIP code. |
| country | string | ISO 3166-1 alpha-2 country code. |
| formattedAddress | string | A human-readable formatted address string. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JobLocation",
"title": "JobLocation",
"type": "object",
"description": "The location of the job.",
"properties": {
"streetAddress": {
"type": "string",
"description": "Street address of the job location.",
"example": "example_value"
},
"city": {
"type": "string",
"description": "City where the job is located.",
"example": "Austin"
},
"state": {
"type": "string",
"description": "State, province, or region.",
"example": "TX"
},
"postalCode": {
"type": "string",
"description": "Postal or ZIP code.",
"example": "78701"
},
"country": {
"type": "string",
"description": "ISO 3166-1 alpha-2 country code.",
"example": "US"
},
"formattedAddress": {
"type": "string",
"description": "A human-readable formatted address string.",
"example": "Austin, TX 78701, US"
}
}
}