Workday · Schema

Country

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string
descriptor string
countryCode string The ISO 3166-1 alpha-3 country code.
alpha2Code string The ISO 3166-1 alpha-2 country code.
name string
View JSON Schema on GitHub

JSON Schema

workday-country-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Country",
  "title": "Country",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "countryCode": {
      "type": "string",
      "description": "The ISO 3166-1 alpha-3 country code.",
      "example": "example_value"
    },
    "alpha2Code": {
      "type": "string",
      "description": "The ISO 3166-1 alpha-2 country code.",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    }
  }
}