openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/C_ORA_READ_TRACEFILE_RE: post: tags: - S_ORA_COCKPIT_1 summary: 'Oracle: Read trace file (remote enabled)' operationId: /rfc/C_ORA_READ_TRACEFILE_RE requestBody: content: application/json: schema: properties: FILENAME: type: string maxLength: 254 description: Name of the trace file FILECONTENT: type: array items: type: object properties: LINE: type: string maxLength: 255 description: Single line of DBA log or profile required: - FILENAME responses: '200': description: OK content: application/json: schema: properties: FILECONTENT: type: array items: type: object properties: LINE: type: string maxLength: 255 description: Single line of DBA log or profile '400': description: Bad request. 5XX: description: Unexpected error.