openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/ATRA_SEND_CONTAINER: post: tags: - S_ABAP_TRACE_DATA operationId: /rfc/ATRA_SEND_CONTAINER requestBody: content: application/json: schema: properties: P_DEST: type: string maxLength: 32 P_FNAME: type: object properties: CPROG: type: string maxLength: 40 description: Calling Program DATUM: type: string format: date description: Current Date of Application Server UZEIT: type: string maxLength: 6 description: Current Time of Application Server FLAG: type: string maxLength: 1 description: 'General Flag enumValues: X=Flag set. Event has occurred.,""=Flag is Not Set' enum: - X - '' required: - P_DEST - P_FNAME responses: '200': description: OK '400': description: Bad request. 5XX: description: Unexpected error.