VTEX · Schema

Location3

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
zipCode string
country string
point array
View JSON Schema on GitHub

JSON Schema

vtex-location3-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Location3",
  "title": "Location3",
  "required": [
    "zipCode",
    "country",
    "point"
  ],
  "type": "object",
  "properties": {
    "zipCode": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "point": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "description": ""
    }
  },
  "example": {
    "zipCode": "22780084",
    "country": "BRA",
    "point": [
      -43.32475950000003,
      -22.9999575
    ]
  }
}