Google Places · JSON Structure

Localized Text Structure

Localized text in a particular language.

Type: object Properties: 2
RestaurantGeolocationGoogleLocationsMapsPlacesPoints of Interest

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

Properties

text languageCode

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/google-places/refs/heads/main/json-structure/localized-text-structure.json",
  "name": "LocalizedText",
  "description": "Localized text in a particular language.",
  "type": "object",
  "properties": {
    "text": {
      "description": "The localized text value.",
      "example": "Google Building 40",
      "type": "string"
    },
    "languageCode": {
      "description": "The BCP-47 language code of the text.",
      "example": "en",
      "type": "string"
    }
  }
}