VTEX · Schema

Neighborhood

Recipient's address neighborhood's information.

CommerceE-CommerceRetailMarketplacePayments

Properties

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

JSON Schema

vtex-subregion3-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Subregion3",
  "title": "Neighborhood",
  "description": "Recipient's address neighborhood's information.",
  "required": [
    "code",
    "name"
  ],
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Neighborhood's code, from the recipient's address.",
      "example": "Neighborhood example"
    },
    "name": {
      "type": "string",
      "description": "Neighborhood's name, from the recipient's address.",
      "example": "Neighborhood example"
    }
  },
  "example": {
    "code": "Vila Antonieta",
    "name": "Vila Antonieta"
  }
}