openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB6_ADM_READ_SCRIPT: post: tags: - SDB6ADM summary: 'DB6: Read SQl Script' operationId: /rfc/DB6_ADM_READ_SCRIPT requestBody: content: application/json: schema: properties: SCRIPT_NAME: type: string maxLength: 40 description: ABAP program, current main program LINES: type: array items: type: object properties: LINE: type: string maxLength: 255 description: '' required: - SCRIPT_NAME responses: '200': description: OK content: application/json: schema: properties: MODDATE: type: string format: date description: Date and time, current (application server) date MODTIME: type: string maxLength: 6 description: Date and Time, Current Application Server Time MODUSER: type: string maxLength: 12 description: Date and Time, Current Application Server Time LINES: type: array items: type: object properties: LINE: type: string maxLength: 255 description: '' '400': description: Bad request. 5XX: description: Unexpected error.