TransitLine

Information about a transit line

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
name string The full name of this transit line
short_name string The short name of this transit line
color string The color commonly used in signage for this line
text_color string The color of the text commonly used for this line
vehicle object
agencies array
View JSON Schema on GitHub

JSON Schema

google-maps-directions-transit-line-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TransitLine",
  "type": "object",
  "description": "Information about a transit line",
  "properties": {
    "name": {
      "type": "string",
      "description": "The full name of this transit line"
    },
    "short_name": {
      "type": "string",
      "description": "The short name of this transit line"
    },
    "color": {
      "type": "string",
      "description": "The color commonly used in signage for this line"
    },
    "text_color": {
      "type": "string",
      "description": "The color of the text commonly used for this line"
    },
    "vehicle": {
      "type": "object"
    },
    "agencies": {
      "type": "array"
    }
  }
}