Address

Properties

Name Type Description
firstName string
lastName string
street1 string
street2 string
city string
state string
postalCode string
country string
phone string
View JSON Schema on GitHub

JSON Schema

manhattan-associates-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Address",
  "title": "Address",
  "type": "object",
  "required": [
    "street1",
    "city",
    "state",
    "postalCode",
    "country"
  ],
  "properties": {
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "street1": {
      "type": "string"
    },
    "street2": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    }
  }
}