A flight delay is a record of departures that are happening at an airport behind schedule. It is calculated from the Airport's recent history of flight departures.
| name | data type | constraints | description |
|---|---|---|---|
| airport | City | The airport that has the delay. | |
| score | number | The score of the delay. | |
| description | string | max size: 1028, min size: 0 | A description of the flight delay. |
| link | string | max size: 256, min size: 0 | A link with additional information about this delay. |
| timestamp | number | The timestamp of when this delay was loaded into the system. | |
| startDate | number | The time that the delays started. | |
| endDate | number | The time that the delay is predicted to end. | |
Properties inherited from BaseHibernateEntity |
|||
| id | number | The unique internal ID of the object. | |
| version | number | For internal use only. This is the serialization recorder for optimistic locking of several objects between sessions. | |
Properties inherited from BaseEntity |
|||
| violations | array of SimpleViolation | A list of constraint violations, if any, that this object has. | |
Example
{
"airport" : {
"code" : "...",
"countryCode" : "...",
"latitude" : 12345.0,
"longitude" : 12345.0,
"name" : "...",
"stateOrCountry" : "...",
"airportName" : "...",
"region" : {
"name" : "...",
"code" : "...",
"country" : { },
"position" : 12345,
"id" : 12345,
"version" : 12345,
"violations" : [ { }, { } ]
},
"timeZone" : {
"name" : "...",
"offset" : 12345.0,
"daylightSavingsOffset" : 12345.0,
"id" : 12345,
"version" : 12345,
"violations" : [ { }, { } ]
},
"retentionOnly" : true,
"position" : 12345,
"unique" : true,
"alias" : true,
"id" : 12345,
"version" : 12345,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
},
"score" : 12345.0,
"description" : "...",
"link" : "...",
"timestamp" : 12345,
"startDate" : 12345,
"endDate" : 12345,
"id" : 12345,
"version" : 12345,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
}