VTEX · Schema

AddressStart

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
addressStreet string
addressNumber string
postalCode string
addressCity string
state string
View JSON Schema on GitHub

JSON Schema

vtex-addressstart-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddressStart",
  "title": "AddressStart",
  "type": "object",
  "properties": {
    "addressStreet": {
      "type": "string"
    },
    "addressNumber": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "addressCity": {
      "type": "string"
    },
    "state": {
      "maxLength": 2,
      "minLength": 0,
      "type": "string"
    }
  }
}