AeroDataBox · Schema

FaaLaddAircraftStatusContract

Status of the aircraft tail number or callsign in the FAA Limiting Aircraft Data Displayed (LADD) Program list. See https://www.faa.gov/pilots/ladd for more details.

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
id string
isBlocked boolean Current status of the aircraft / flight in the FAA LADD industry list.
blockedSince string For blocked aircraft only: the date when the aircraft / flight was blocked. Will not be included for blocked dates at or prior to September 15, 2024.
lastBlockedOn string For unblocked aircraft only: the date when the aircraft / flight was last blocked. Will not be included for blocked dates at or prior to September 15, 2024 or for the aircraft that were never blocked.
View JSON Schema on GitHub

JSON Schema

aerodatabox-faaladdaircraftstatuscontract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FaaLaddAircraftStatusContract",
  "title": "FaaLaddAircraftStatusContract",
  "required": [
    "id",
    "isBlocked"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "string"
    },
    "isBlocked": {
      "type": "boolean",
      "description": "Current status of the aircraft / flight in the FAA LADD industry list."
    },
    "blockedSince": {
      "type": "string",
      "description": "For blocked aircraft only: the date when the aircraft / flight was blocked.\r\nWill not be included for blocked dates at or prior to September 15, 2024.",
      "format": "date-time",
      "nullable": true
    },
    "lastBlockedOn": {
      "type": "string",
      "description": "For unblocked aircraft only: the date when the aircraft / flight was last blocked.\r\nWill not be included for blocked dates at or prior to September 15, 2024 or \r\nfor the aircraft that were never blocked.",
      "format": "date-time",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Status of the aircraft tail number or callsign in the FAA Limiting Aircraft Data Displayed (LADD) Program list.\r\nSee https://www.faa.gov/pilots/ladd for more details."
}