AeroDataBox · Schema
FlightPlanContract
Flight plan contract
AviationFlightsAerospaceFlight DataAirport Data
Properties
| Name | Type | Description |
|---|---|---|
| flightRules | object | |
| flightType | object | |
| revisionNo | integer | No. of revision of the flight plan |
| status | object | |
| route | string | Route information for the flight as filed in the flight plan |
| altitude | object | |
| airspeed | object | |
| lastUpdatedUtc | string | Time (UTC) of the latest known update to the flight plan |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FlightPlanContract",
"title": "FlightPlanContract",
"required": [
"lastUpdatedUtc",
"route"
],
"type": "object",
"properties": {
"flightRules": {
"$ref": "#/components/schemas/FlightRules"
},
"flightType": {
"$ref": "#/components/schemas/FlightType"
},
"revisionNo": {
"type": "integer",
"description": "No. of revision of the flight plan",
"format": "int32",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/FlightPlanStatus"
},
"route": {
"minLength": 1,
"type": "string",
"description": "Route information for the flight as filed in the flight plan"
},
"altitude": {
"$ref": "#/components/schemas/DistanceFlightPlanUnitContract"
},
"airspeed": {
"$ref": "#/components/schemas/SpeedFlightPlanUnitContract"
},
"lastUpdatedUtc": {
"type": "string",
"description": "Time (UTC) of the latest known update to the flight plan",
"format": "date-time"
}
},
"additionalProperties": false,
"description": "Flight plan contract"
}