openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB6_DIAG_COUNT_TABLE_ENTRIES: post: tags: - SDB6DIAG summary: 'DB6: select count(*) from table' operationId: /rfc/DB6_DIAG_COUNT_TABLE_ENTRIES requestBody: content: application/json: schema: properties: CONNECTION: type: string maxLength: 30 description: Logical name for a database connection TABLENAME: type: string maxLength: 128 description: 'DB6: Table Name' TABLESCHEMA: type: string maxLength: 20 description: 'DB6: Schema Name' required: - TABLENAME responses: '200': description: OK content: application/json: schema: properties: CARDINALITY: type: integer format: int64 description: 'rows_written: Number of Changes to the Table' '400': description: Bad request. 5XX: description: Unexpected error.