ApiPatternDetail Data Type

Properties
name data type description
stops array of ApiStopShort
trips array of ApiTripShort
Properties inherited from ApiPatternShort
id string
desc string
routeId string

Example

{
  "stops" : [ {
    "id" : "...",
    "code" : "...",
    "name" : "...",
    "lat" : 12345.0,
    "lon" : 12345.0,
    "url" : "...",
    "stationId" : "...",
    "dist" : 12345
  }, {
    "id" : "...",
    "code" : "...",
    "name" : "...",
    "lat" : 12345.0,
    "lon" : 12345.0,
    "url" : "...",
    "stationId" : "...",
    "dist" : 12345
  } ],
  "trips" : [ {
    "id" : "...",
    "tripHeadsign" : "...",
    "serviceId" : "...",
    "shapeId" : "...",
    "direction" : 12345
  }, {
    "id" : "...",
    "tripHeadsign" : "...",
    "serviceId" : "...",
    "shapeId" : "...",
    "direction" : 12345
  } ],
  "id" : "...",
  "desc" : "...",
  "routeId" : "..."
}