ItsaCheckmate · Schema

Address

Postal address of a location.

RestaurantPoint Of SaleOnline OrderingDeliveryMenusOrdersIntegration

Properties

Name Type Description
street string Street address.
city string City.
state string State or region code.
zip string Postal code.
country string ISO country code.
View JSON Schema on GitHub

JSON Schema

marketplace-api-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/itsacheckmate/refs/heads/main/json-schema/marketplace-api-address-schema.json",
  "title": "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."
    }
  }
}