For Developers
Stops Overview
A stop is a location where a vehicle may stop to pick up or drop off passengers.
Properties
| Property | Type | Description | 
|---|---|---|
id | string | The UUID for the stop. $filter operators: equals in not in | 
created_date | Date | When the stop was first seen by Edlink. | 
updated_date | Date | When the stop was last changed in Edlink. $filter operators: equals gt lt gte lte | 
properties | object | Non-standard properties that may be of interest to the developer. | 
name | string | The name of the stop. | 
description | string | A description of the stop. | 
comments | string | Useful comments about the stop. | 
type | StopType | The type of the stop. | 
flags | StopFlag[] | The flags for the stop. All, some, or none of the possible flags may be included. | 
address | Address | The address location of the facility. | 
identifiers | Identifier[] | Additional IDs associated with the object. | 
JSON Example
{
    "id": "2e5fe2c4-ddd2-5e7f-9586-36d885606a3e",
    "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
    }
}
