UKG · Schema
Location
Work location
Human Capital ManagementHCMWorkforce ManagementHRPayrollTime and AttendanceBenefitsScheduling
Properties
| Name | Type | Description |
|---|---|---|
| locationId | string | Location identifier |
| locationName | string | Location name |
| address | string | Street address |
| city | string | City |
| stateProvince | string | State or province |
| country | string | Country code |
| postalCode | string | Postal or ZIP code |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/ukg/refs/heads/main/json-schema/pro-hcm-location-schema.json",
"title": "Location",
"description": "Work location",
"type": "object",
"properties": {
"locationId": {
"type": "string",
"description": "Location identifier",
"example": "LOC-NYC"
},
"locationName": {
"type": "string",
"description": "Location name",
"example": "New York Office"
},
"address": {
"type": "string",
"description": "Street address",
"example": "123 Main Street"
},
"city": {
"type": "string",
"description": "City",
"example": "New York"
},
"stateProvince": {
"type": "string",
"description": "State or province",
"example": "NY"
},
"country": {
"type": "string",
"description": "Country code",
"example": "US"
},
"postalCode": {
"type": "string",
"description": "Postal or ZIP code",
"example": "10001"
}
}
}