OBJECT
FtlDuty
Contains information regarding single FTL duty.
link GraphQL Schema definition
- type FtlDuty {
- # Requires access to resource GRAPHQL_LOGIN
- : Login!
- # Numerical ID reference to the first sector of the duty
- : Int!
- # Numerical ID reference to the last sector of the duty
- : Int!
- # Start time of the duty
- : DateTime!
- # End time of the duty
- : DateTime!
- # Duration of the duty
- : TimeLong!
- # FDP start time, for the duty
- : DateTime
- # FDP end time, for the duty
- : DateTime
- # FDP length, for the duty
- : TimeLong
- # FDP extended time, for the duty
- : TimeLong
- # Duration of the break in the split duty
- : TimeLong
- # List of sectors belonging to given duty.
- : [FtlSector!]!
- # Indicating whether the duty violates any of the rules
- : Boolean!
- # An Object describing the AOC revision, related to the duty
- : AocRevision!
- # An Object describing the airport where duty starts.
- # Requires access to resource GRAPHQL_AIRPORT
- : Airport
- # An Object describing the airport where duty ends.
- # Requires access to resource GRAPHQL_AIRPORT
- : Airport
- # An Object describing the airport where crew member's home base is located.
- # Requires access to resource GRAPHQL_AIRPORT
- : Airport
- # Indicating whether duty starts at home base of the crew member
- : Boolean!
- # Indicating whether duty ends at home base of the crew member
- : Boolean!
- # Count of sectors in the duty
- : Int!
- # When the previous duty ended
- : DateTime
- # When the next duty starts
- : DateTime
- # When the break starts
- : DateTime
- # FDP extension gained from the break
- : TimeLong
- # Maximum FDP extension possible from the break
- : TimeLong
- # Maximum FDP length with the break applied
- : TimeLong
- # Rest reduction for next rest period after the break
- : TimeLong
- # Time of the first block-off time
- : DateTime
- # Time of the last block-on time
- : DateTime
- : CrewMemberAugmentation!
- # Indicating whether this is cabin crew
- : Boolean!
- # Indicating whether this is single pilot operation
- : Boolean!
- # Duration of commander's discretion used
- : TimeLong
- # Enum describing available rest facility type
- : RestFacilityEnum!
- # Can be either block time, or the flying time on the duty, in hours and minutes.
- : TimeLong
- # Duration of the longest sector in the duty
- : TimeLong
- # Duration by which the longest sector exceeds the limit
- : TimeLong
- # Maximum allowed sector time limit
- : TimeLong
- # Enum indicating type of night duty
- : NightDutyType!
- # Count of consecutive WOCL (Window of Circadian Low) duties
- : Int!
- # Count of consecutive early start duties
- : Int!
- # Time of the first day off after this duty
- : DateTime
- # Time of the last day off after this duty
- : DateTime
- # Count of local nights before the duty
- : Int!
- # Minimum required local nights before the duty
- : Int!
- # Count of consecutive nights before the duty
- : Int!
- # Indicating whether weekly rest follows this duty
- : Boolean!
- # Whether the crew member is acclimated at the beginning of the duty.
- : Boolean!
- # Count of consecutive non-acclimated FDPs
- : Int!
- # Duration offset of local time zone
- : TimezoneOffset
- # The time offset of the last acclimatisation.
- : TimezoneOffset
- # The time of the last acclimatisation.
- : DateTime
- # When crew member arrived at current timezone
- : DateTime
- # How much the flying duty period extends the warning threshold
- # (fdp_warning_threshold).
- : TimeLong
- # Duration of maximum allowed FDP length
- : TimeLong
- # Duration of maximum allowed duty length
- : TimeLong
- # Duration of maximum allowed flying time
- : TimeLong
- # Duration of minimum required rest before duty
- : TimeLong
- # Duration of minimum required rest after duty
- : TimeLong
- # When the rotation starts
- : DateTime!
- # Comment about the duty
- : String
- # Comment about the FDP
- : String
- # Comment about rest after duty
- : String
- # Comment about rest before duty
- : String
- # Comment about local nights before duty
- : String
- # Duration of meal break discretion time
- : TimeLong
- # Next estimated block off time
- : DateTime!
- # When the break ends
- : DateTime
- # Count of consecutive night duties
- : Int!
- # Count of extended FDPs during the rotation
- : Int!
- # Maximum timezone difference in the current rotation
- : TimeLong
- }