Yelp · JSON Structure

Yelp Event Search Response Structure

EventSearchResponse schema from Yelp Fusion API

Type: object Properties: 2
RestaurantLocal SearchReviewsBusiness DataLocation

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

Properties

total events

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/yelp/refs/heads/main/json-structure/yelp-event-search-response-structure.json",
  "name": "EventSearchResponse",
  "description": "EventSearchResponse schema from Yelp Fusion API",
  "type": "object",
  "properties": {
    "total": {
      "type": "int32",
      "example": 240
    },
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Event"
      }
    }
  }
}