PlaceAddressComponent

An address component of a place

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
longText string The full text of the address component
shortText string An abbreviated text for the address component
types array The types of this address component
languageCode string The language code for this component
View JSON Schema on GitHub

JSON Schema

google-maps-placeaddresscomponent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlaceAddressComponent",
  "title": "PlaceAddressComponent",
  "type": "object",
  "description": "An address component of a place",
  "properties": {
    "longText": {
      "type": "string",
      "description": "The full text of the address component",
      "example": "example_value"
    },
    "shortText": {
      "type": "string",
      "description": "An abbreviated text for the address component",
      "example": "example_value"
    },
    "types": {
      "type": "array",
      "description": "The types of this address component",
      "items": {
        "type": "string"
      },
      "example": []
    },
    "languageCode": {
      "type": "string",
      "description": "The language code for this component",
      "example": "example_value"
    }
  }
}