ADP · Schema

Address

BenefitsHCMHRPayrollWorkforce

Properties

Name Type Description
lineOne string
lineTwo string
cityName string
countrySubdivisionLevel1 object
postalCode string
countryCode string
View JSON Schema on GitHub

JSON Schema

adp-workers-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Address",
  "type": "object",
  "properties": {
    "lineOne": {
      "type": "string"
    },
    "lineTwo": {
      "type": "string"
    },
    "cityName": {
      "type": "string"
    },
    "countrySubdivisionLevel1": {
      "type": "object"
    },
    "postalCode": {
      "type": "string"
    },
    "countryCode": {
      "type": "string"
    }
  }
}