ItsaCheckmate · JSON Structure

Marketplace Api Address Structure

Postal address of a location.

Type: object Properties: 5
RestaurantPoint Of SaleOnline OrderingDeliveryMenusOrdersIntegration

Address is a JSON Structure definition published by ItsaCheckmate, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

street city state zip country

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/itsacheckmate/refs/heads/main/json-structure/marketplace-api-address-structure.json",
  "name": "Address",
  "description": "Postal address of a location.",
  "type": "object",
  "properties": {
    "street": {
      "type": "string",
      "description": "Street address."
    },
    "city": {
      "type": "string",
      "description": "City."
    },
    "state": {
      "type": "string",
      "description": "State or region code."
    },
    "zip": {
      "type": "string",
      "description": "Postal code."
    },
    "country": {
      "type": "string",
      "description": "ISO country code."
    }
  }
}