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
timeProfile object
locale object
usages array
View JSON Schema on GitHub

JSON Schema

workday-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Location",
  "title": "Location",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The Workday ID of the location.",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "description": "A display descriptor for the location.",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "latitude": {
      "type": "number",
      "format": "double",
      "example": 42.5
    },
    "longitude": {
      "type": "number",
      "format": "double",
      "example": 42.5
    },
    "timeProfile": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "locale": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "usages": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ResourceReference"
      },
      "example": []
    }
  }
}