{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "DetailedScheduleStopTime", "type": "object", "properties": { "arrivalEnabled": { "type": "boolean" }, "arrivalTime": { "type": "integer" }, "departureEnabled": { "type": "boolean" }, "departureTime": { "type": "integer" }, "serviceId": { "type": "string" }, "stopHeadsign": { "type": "string" }, "stopId": { "type": "string" }, "tripId": { "type": "string" } }, "required": [ "arrivalEnabled", "arrivalTime", "departureEnabled", "departureTime", "stopId", "tripId" ] }