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