FleetBoards return data might be some problems?

Hello,
i made a search with FleetBoards for a specific fleet code and the systems return some data which does seem to be correct or maybe i cannot find the docs about it.

departure_delay and arrival_delay are those seconds or something else?
In the faq they say that to define

  • How late the arrival was = (actualarrivaltime - (filed_departuretime + filed_ete)).
    And i think should be the same of arrival_delay…
    But they are always different please see below example (an extract of the json response)

Can anyone help me? Thank you.

“filed_airspeed_kts”: 291,
“distance_filed”: 335,
“filed_departure_time”: {
“epoch”: 1543242900,
“tz”: “CET”,
“dow”: “lunedì”,
“time”: “03:35P.”,
“date”: “26/11/2018”,
“localtime”: 1543246500
},
“estimated_departure_time”: {
“epoch”: 1543243565,
“tz”: “CET”,
“dow”: “lunedì”,
“time”: “03:46P.”,
“date”: “26/11/2018”,
“localtime”: 1543247165
},
“actual_departure_time”: {
“epoch”: 1543243565,
“tz”: “CET”,
“dow”: “lunedì”,
“time”: “03:46P.”,
“date”: “26/11/2018”,
“localtime”: 1543247165
},
“departure_delay”: 600,
“filed_arrival_time”: {
“epoch”: 1543246920,
“tz”: “CET”,
“dow”: “lunedì”,
“time”: “04:42P.”,
“date”: “26/11/2018”,
“localtime”: 1543250520
},
“estimated_arrival_time”: {
“epoch”: 1543247448,
“tz”: “CET”,
“dow”: “lunedì”,
“time”: “04:50P.”,
“date”: “26/11/2018”,
“localtime”: 1543251048
},
“actual_arrival_time”: {
“epoch”: 1543247448,
“tz”: “CET”,
“dow”: “lunedì”,
“time”: “04:50P.”,
“date”: “26/11/2018”,
“localtime”: 1543251048
},
“arrival_delay”: 900,

The departure_delay and arrival_delay seen in FleetBoards is part of the FlightInfoStatusStruct. If using the API explorer it’s definition is visible under FlightInfoStatus.

departure_delay

Departure delay (in seconds) based on either actual or estimated gate departure time. If gate time is unavailable then based on runway departure time. A negative value indicates the flight is early.

arrival_delay

Arrival delay (in seconds) based on either actual or estimated gate arrival time. If gate time is unavailable then based on runway arrival time. A negative value indicates the flight is early.

Both are a difference between what was scheduled and what actually, or was estimated, to occur. The method in the FAQ is designed for the FlightInfoEx command, which does not expose gate times.