Overview
The operations in Airport Slot Data Service v2.0 submits data that typically will be asynchronously processed. This means that all data that follow the syntax will be accepted, but it might not be used by downstream systems.
Service error response
ErrorResponse is typically used with HTTP Response Code: 400 Bad Request
|
Operations
Insert a new slot schedule, or updates an existing one. Access method: POST Parameters: sequenceNumber: SequenceNumber insertUpdateSlotScheduleInfo: InsertUpdateSlotScheduleInfo Returns: Used to delete one or more flight schedules at a slot regulated airport. Access method: POST Parameters: Returns: Insert a new slot , or updates an existing one. Access method: POST Parameters: sequenceNumber: SequenceNumber gaInsertUpdateSlotInfo: GAInsertUpdateSlotInfo Returns: Used to delete one or flight slot at a slot regulated airport. Access method: POST Parameters: Returns: Return the last sequence number successfully processed by the InsertUpdateSlotSchedule, DeleteSlotSchedule, GAInsertUpdateSlot and GADeleteSlot calls. Access method: GET Parameters: None Returns: The last sequence number(s) successfully processed. The slot coordinator software call the heartbeat operation regularly to indicate that it is running ok, and that the connection is ok. The actual rate must be agreed upon between the slot coordinator and the airport. Access method: POST Parameters: None Returns: NothingInsertUpdateSlotSchedule (sequenceNumber: SequenceNumber, insertUpdateSlotScheduleInfo: InsertUpdateSlotScheduleInfo)
The sequenceNumber is incremented by 1 on each call to InsertUpdateSlotSchedule. If the has another value than expected the call should fail. The slot coordinator software should then use GetLastSequenceNumber to retrieve the last sequence number/transaction that was successfully processed, and restart from there.
A Schedule pattern with corresponding information describing one or more arrivals or departures at one slot regulated airport that should be created or updated.
DeleteSlotSchedule (sequenceNumber: SequenceNumber, deleteSlotScheduleInfo: DeleteSlotScheduleInfo)
The sequenceNumber is incremented by 1 on each call to DeleteSlotSchedule. If the has another value than expected the call should fail. The slot coordinator software should then use GetLastSequenceNumber to retrieve the last sequence number/transaction that was successfully processed, and restart from there.
A Schedule pattern describing one or more arrivals or departures at one slot regulated airport that should deleted.
GAInsertUpdateSlot (sequenceNumber: SequenceNumber, gaInsertUpdateSlotInfo: GAInsertUpdateSlotInfo)
The sequenceNumber is incremented by 1 on each call to GAInsertUpdateSlot. If the has another value than expected the call should fail. The slot coordinator software should then use GetLastSequenceNumber to retrieve the last sequence number/transaction that was successfully processed, and restart from there.
Information about an arrival or departure slot at one slot regulated airport that should be created or updated.
GADeleteSlot (sequenceNumber: SequenceNumber, deleteSlotInfo: GADeleteSlotInfo)
The sequenceNumber is incremented by 1 on each call to GADeleteSlot. If the has another value than expected the call should fail. The slot coordinator software should then use GetLastSequenceNumber to retrieve the last sequence number/transaction that was successfully processed, and restart from there.
Identifying one arrival or departure at one slot regulated airport that should deleted.
GetLastSequenceNumber(): SequenceNumberSet
Heartbeat (): void