Foursquare · Schema

Photo

Photo schema from Foursquare Places API

RestaurantLocationsPlacesGeocodingRecommendationsReviewsMovement

Properties

Name Type Description
id string
created_at string
prefix string
suffix string
width integer
height integer
View JSON Schema on GitHub

JSON Schema

foursquare-photo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/foursquare/refs/heads/main/json-schema/foursquare-photo-schema.json",
  "title": "Photo",
  "description": "Photo schema from Foursquare Places API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "prefix": {
      "type": "string"
    },
    "suffix": {
      "type": "string"
    },
    "width": {
      "type": "integer"
    },
    "height": {
      "type": "integer"
    }
  }
}