openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB6_DIAG_GET_SYSTEM_BASICS: post: tags: - SDB6DIAG summary: 'DB6: get basic system information' operationId: /rfc/DB6_DIAG_GET_SYSTEM_BASICS requestBody: content: application/json: schema: properties: CONNECTION: type: string maxLength: 30 description: Logical name for a database connection responses: '200': description: OK content: application/json: schema: properties: BASREL: type: string maxLength: 4 description: 'System: SAP Release' COCKREL: type: string maxLength: 4 description: 'System: SAP Release' DBNAME: type: string maxLength: 128 description: Name of Database DBREL: type: string maxLength: 10 description: 'DB6: DB2/UDB release level' DBSERVER: type: string maxLength: 255 description: Host of DB Server DBSYS: type: string maxLength: 10 description: 'System: Database system' SCHEMANAME: type: string maxLength: 20 description: 'DB6: Schema Name' SYHOST: type: string maxLength: 32 description: Host of RFC connection SYOPSYS: type: string maxLength: 10 description: Opsys of RFC Host SYSID: type: string maxLength: 8 description: 'System: SAP System ID' '400': description: Bad request. 5XX: description: Unexpected error.