Yelp · JSON Structure

Yelp Location Structure

Location schema from Yelp Fusion API

Type: object Properties: 9
RestaurantLocal SearchReviewsBusiness DataLocation

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

Properties

address1 address2 address3 city state zip_code country display_address cross_streets

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-location-structure.json",
  "name": "Location",
  "description": "Location schema from Yelp Fusion API",
  "type": "object",
  "properties": {
    "address1": {
      "type": "string",
      "example": "350 Mission St"
    },
    "address2": {
      "type": "string",
      "example": ""
    },
    "address3": {
      "type": "string",
      "example": ""
    },
    "city": {
      "type": "string",
      "example": "San Francisco"
    },
    "state": {
      "type": "string",
      "example": "CA"
    },
    "zip_code": {
      "type": "string",
      "example": "94105"
    },
    "country": {
      "type": "string",
      "example": "US"
    },
    "display_address": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "cross_streets": {
      "type": "string",
      "example": "example"
    }
  }
}