openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB6_HIS_GET_START_END: post: tags: - SDB6DB02 summary: 'DB6: return the start and end time of the history' operationId: /rfc/DB6_HIS_GET_START_END requestBody: content: application/json: schema: properties: CONNECTION: type: string maxLength: 30 description: Logical name for a database connection OBJECTTYPE: type: string maxLength: 1 description: 'type of history: chis_tables_and_indexes = B; chis_tablespace_and_database = P' STATTYPE: type: string maxLength: 1 description: 'DB6: statistic type: D | W | M' required: - OBJECTTYPE - STATTYPE responses: '200': description: OK content: application/json: schema: properties: FROMDATE: type: string format: date description: 'DB6: first date of history' TODATE: type: string format: date description: 'DB6: last date of history' '400': description: Bad request. 5XX: description: Unexpected error.