Workday · Schema

ContactInformation

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
emails array
phones array
addresses array
View JSON Schema on GitHub

JSON Schema

workday-contactinformation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactInformation",
  "title": "ContactInformation",
  "type": "object",
  "properties": {
    "emails": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "emailAddress": {
            "type": "string",
            "format": "email"
          },
          "type": {
            "$ref": "#/components/schemas/ResourceReference"
          },
          "isPrimary": {
            "type": "boolean"
          }
        }
      },
      "example": "[email protected]"
    },
    "phones": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "phoneNumber": {
            "type": "string"
          },
          "type": {
            "$ref": "#/components/schemas/ResourceReference"
          },
          "isPrimary": {
            "type": "boolean"
          },
          "countryCode": {
            "type": "string"
          }
        }
      },
      "example": []
    },
    "addresses": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "addressLine1": {
            "type": "string"
          },
          "addressLine2": {
            "type": "string"
          },
          "city": {
            "type": "string"
          },
          "stateProvince": {
            "$ref": "#/components/schemas/ResourceReference"
          },
          "postalCode": {
            "type": "string"
          },
          "country": {
            "$ref": "#/components/schemas/ResourceReference"
          },
          "type": {
            "$ref": "#/components/schemas/ResourceReference"
          },
          "isPrimary": {
            "type": "boolean"
          }
        }
      },
      "example": []
    }
  }
}