openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BAPI_SFLIGHT_GETDETAIL: post: tags: - SAPBC_BOR_SFLIGHT summary: Flight details operationId: /rfc/BAPI_SFLIGHT_GETDETAIL requestBody: content: application/json: schema: properties: AIRLINECARRIER: type: string maxLength: 3 description: Carrier ID CONNECTIONNUMBER: type: integer format: int64 description: Connection number DATEOFFLIGHT: type: string format: date description: Departure date required: - AIRLINECARRIER - CONNECTIONNUMBER - DATEOFFLIGHT responses: '200': description: OK content: application/json: schema: properties: FLIGHTDATA: type: object properties: CARRID: type: string maxLength: 3 description: Airline Code CONNID: type: integer format: int64 description: Flight Connection Number FLDATE: type: string format: date description: Flight date COUNTRYFR: type: string maxLength: 3 description: Country Key CITYFROM: type: string maxLength: 20 description: Departure city AIRPFROM: type: string maxLength: 3 description: Departure airport COUNTRYTO: type: string maxLength: 3 description: Country Key CITYTO: type: string maxLength: 20 description: Arrival city AIRPTO: type: string maxLength: 3 description: Destination airport FLTIME: type: integer format: int32 description: Flight time DEPTIME: type: string maxLength: 6 description: Departure time ARRTIME: type: string maxLength: 6 description: Arrival time DISTANCE: type: integer format: int64 description: Distance DISTID: type: string maxLength: 3 description: Mass unit of distance (kms, miles) FLTYPE: type: string maxLength: 1 description: 'Flight type enumValues: ""=Scheduled,X=Charter' enum: - '' - X PRICE: type: integer format: int64 description: Airfare CURRENCY: type: string maxLength: 5 description: Payment currency PLANETYPE: type: string maxLength: 10 description: Aircraft Type SEATSMAX: type: integer format: int32 description: 'Maximum capacity in economy class enumValues: 0=Whole numbers' enum: - '0' SEATSOCC: type: integer format: int32 description: 'Occupied seats in economy class enumValues: 0=Whole numbers' enum: - '0' PAYMENTSUM: type: integer format: int64 description: Total of current bookings RETURN: type: object properties: TYPE: type: string maxLength: 1 description: 'Message type: S Success, E Error, W Warning, I Info, A Abort' ID: type: string maxLength: 20 description: Message Class NUMBER: type: integer format: int64 description: Message Number MESSAGE: type: string maxLength: 220 description: Message Text LOG_NO: type: string maxLength: 20 description: 'Application log: log number' LOG_MSG_NO: type: integer format: int64 description: 'Application log: Internal message serial number' MESSAGE_V1: type: string maxLength: 50 description: Message Variable MESSAGE_V2: type: string maxLength: 50 description: Message Variable MESSAGE_V3: type: string maxLength: 50 description: Message Variable MESSAGE_V4: type: string maxLength: 50 description: Message Variable PARAMETER: type: string maxLength: 32 description: Parameter Name ROW: type: integer format: int32 description: Lines in parameter FIELD: type: string maxLength: 30 description: Field in parameter SYSTEM: type: string maxLength: 10 description: Logical system from which message originates '400': description: Bad request. 5XX: description: Unexpected error.