openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB6_HIS_GET_DATES_CDM: post: tags: - SDB6DB02 summary: 'DB6: get from and to date/time of parameter changes history' operationId: /rfc/DB6_HIS_GET_DATES_CDM requestBody: content: application/json: schema: properties: CONNECTION: type: string maxLength: 30 description: Logical name for a database connection FROMPARTITN: type: string maxLength: 4 description: 'DB6: from partition' OBJECTTYPE: type: string maxLength: 1 description: 'DB6: objecttype ("D", "M", " ")' TOPARTITN: type: string maxLength: 4 description: 'DB6: to partition' required: - FROMPARTITN - OBJECTTYPE - TOPARTITN responses: '200': description: OK content: application/json: schema: properties: FROMDATE: type: string format: date description: 'DB6: from date' TODATE: type: string format: date description: 'DB6: to date' '400': description: Bad request. 5XX: description: Unexpected error.