OneBusAway · Schema

Trip

TransitPublic TransitReal-TimeArrivalsDeparturesBusGTFSOpen SourceStop DataTrip PlanningService AlertsVehicle PositionsOpen Data

Properties

Name Type Description
blockId string
directionId string
id string
peakOffpeak integer
routeId string
routeShortName string
serviceId string
shapeId string
timeZone string
tripHeadsign string
tripShortName string
View JSON Schema on GitHub

JSON Schema

Trip.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Trip",
  "type": "object",
  "properties": {
    "blockId": {
      "type": "string"
    },
    "directionId": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "peakOffpeak": {
      "type": "integer"
    },
    "routeId": {
      "type": "string"
    },
    "routeShortName": {
      "type": "string"
    },
    "serviceId": {
      "type": "string"
    },
    "shapeId": {
      "type": "string"
    },
    "timeZone": {
      "type": "string"
    },
    "tripHeadsign": {
      "type": "string"
    },
    "tripShortName": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "routeId",
    "serviceId"
  ]
}