Properties
| Name | Type | Description |
|---|---|---|
| _id | string | Unique identifier of the location. |
| name | string | Name of the location. |
| timezone | string | Timezone identifier for this location. |
| country | string | Country code for the location. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/absence-io/refs/heads/main/json-schema/location-schema.json",
"title": "Location",
"description": "An office or work location.",
"type": "object",
"properties": {
"_id": {
"type": "string",
"description": "Unique identifier of the location.",
"example": "500888"
},
"name": {
"type": "string",
"description": "Name of the location.",
"example": "HQ-SanFrancisco"
},
"timezone": {
"type": "string",
"description": "Timezone identifier for this location.",
"example": "America/Los_Angeles"
},
"country": {
"type": "string",
"description": "Country code for the location.",
"example": "US"
}
}
}