openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB6_HIS_GET_DATES_HSD: post: tags: - SDB6DB02 summary: 'DB6: get from and to date/time of performance history' operationId: /rfc/DB6_HIS_GET_DATES_HSD requestBody: content: application/json: schema: properties: PARTITN: type: integer format: int32 description: 'DB6: partition' required: - PARTITN responses: '200': description: OK content: application/json: schema: properties: FROMDATE: type: string format: date description: 'DB6: from date' FROMTIME: type: string maxLength: 6 description: 'DB6: from time' TODATE: type: string format: date description: 'DB6: to date' TOTIME: type: string maxLength: 6 description: 'DB6: to time' '400': description: Bad request. 5XX: description: Unexpected error.