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

common-country-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Country",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "countryCode": {
      "type": "string",
      "description": "The ISO 3166-1 alpha-3 country code."
    },
    "alpha2Code": {
      "type": "string",
      "description": "The ISO 3166-1 alpha-2 country code."
    },
    "name": {
      "type": "string"
    }
  }
}