Workday · Schema

Location

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string The Workday ID of the location.
descriptor string A display descriptor for the location.
name string
latitude number
longitude number
usages array
View JSON Schema on GitHub

JSON Schema

hcm-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Location",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The Workday ID of the location."
    },
    "descriptor": {
      "type": "string",
      "description": "A display descriptor for the location."
    },
    "name": {
      "type": "string"
    },
    "latitude": {
      "type": "number"
    },
    "longitude": {
      "type": "number"
    },
    "usages": {
      "type": "array"
    }
  }
}