VTEX · Schema

City

Recipient's address city's information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
code string City's code, from the recipient's address.
name string City's name, from the recipient's address.
View JSON Schema on GitHub

JSON Schema

vtex-subregion2-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Subregion2",
  "title": "City",
  "description": "Recipient's address city's information.",
  "required": [
    "code",
    "name"
  ],
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "City's code, from the recipient's address.",
      "example": "SP"
    },
    "name": {
      "type": "string",
      "description": "City's name, from the recipient's address.",
      "example": "Sao Paulo"
    }
  },
  "example": {
    "code": "SP",
    "name": "S\u00e3o Paulo"
  }
}