For Developers

Stops Overview

A stop is a location where a vehicle may stop to pick up or drop off passengers.

Properties

PropertyTypeDescription
idstringThe UUID for the stop.
$filter operators: equals in not in
created_dateDateWhen the stop was first seen by Edlink.
updated_dateDateWhen the stop was last changed in Edlink.
$filter operators: equals gt lt gte lte
propertiesobjectNon-standard properties that may be of interest to the developer.
namestringThe name of the stop.
descriptionstringA description of the stop.
commentsstringUseful comments about the stop.
typeStopTypeThe type of the stop.
flagsStopFlag[]The flags for the stop. All, some, or none of the possible flags may be included.
addressAddressThe address location of the facility.
identifiersIdentifier[]Additional IDs associated with the object.

JSON Example

{
    "id": "00000000-0000-0000-0000-000000000000",
    "created_date": "2021-07-13T17:45:27.570Z",
    "updated_date": "2021-07-13T17:45:27.570Z",
    "properties": {},
    "name": "Freddy's Bus Stop",
    "description": "A description of the stop.",
    "comments": "A very useful comment.",
    "type": "bus_stop",
    "flags": [],
    "address": {
        "street_address": "123 Elm St",
        "unit_number": "",
        "city": "Springfield",
        "state": "CA",
        "postal_code": "98765",
        "country": "USA",
        "phone": "555-987-6543",
        "latitude": 34.1808,
        "longitude": -118.3081
    }
}