For Developers
Days Overview
A day is a single day on a calendar. It always belongs to a single calendar.
Properties
Property | Type | Description |
---|---|---|
id | string | The UUID for the calendar day. $filter operators: equals in not in |
created_date | Date | When the calendar day was first seen by Edlink. |
updated_date | Date | When the calendar day 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. |
date | Date | The day attached to the calendar day |
flags | DayFlag[] | The flags for the calendar day. All, some, or none of the possible flags may be included. |
comments | string | Useful comments about the calendar day. |
identifiers | Identifier[] | Additional IDs associated with the object. |
calendar_id | string | The UUID of the associated Calendar. |
period_ids | string[] | The UUIDs of any Periods that will take place on this day. |
route_ids | string[] | The UUIDs of any Routes that will take place on this day. |
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": {},
"date": "2021-07-13T00:00:00.000Z",
"flags": [],
"comments": "A very useful comment.",
"calendar_id": "00000000-0000-0000-0000-000000000000",
"period_ids": ["00000000-0000-0000-0000-000000000000"],
"route_ids": ["00000000-0000-0000-0000-000000000000"]
}