Tripleseat · JSON Structure

Tripleseat Api Location Structure

A venue within a site.

Type: object Properties: 7
RestaurantEventsCateringLeadsWebhooksSales

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

Properties

id name site_id address city state zip_code

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/tripleseat/refs/heads/main/json-structure/tripleseat-api-location-structure.json",
  "name": "Location",
  "description": "A venue within a site.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "Unique identifier of the location.",
      "example": 500123
    },
    "name": {
      "type": "string",
      "description": "Name of the location.",
      "example": "Spring Gala Dinner"
    },
    "site_id": {
      "type": "int32",
      "description": "Identifier of the site the location belongs to.",
      "example": 500123
    },
    "address": {
      "type": "string",
      "example": "123 Main Street"
    },
    "city": {
      "type": "string",
      "example": "Boston"
    },
    "state": {
      "type": "string",
      "example": "MA"
    },
    "zip_code": {
      "type": "string",
      "example": "02108"
    }
  }
}