Foursquare · Schema

FoursquareTip

A user-contributed tip about a Foursquare place.

RestaurantLocationsPlacesGeocodingRecommendationsReviewsMovement

Properties

Name Type Description
id string
created_at string
text string
View JSON Schema on GitHub

JSON Schema

foursquare-tip.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-tip.json",
  "title": "FoursquareTip",
  "description": "A user-contributed tip about a Foursquare place.",
  "type": "object",
  "required": ["id", "text"],
  "properties": {
    "id": { "type": "string" },
    "created_at": { "type": "string", "format": "date-time" },
    "text": { "type": "string" }
  }
}