openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB02_GET_R3SIZE_MONTH_HIST_DB2: post: tags: - DB02_DB2 operationId: /rfc/DB02_GET_R3SIZE_MONTH_HIST_DB2 requestBody: content: application/json: schema: properties: R3_SIZE_MONTH_HIST: type: array items: type: object properties: ADATE: type: string format: date description: Date of last refresh of transaction DB02 ATIME: type: string maxLength: 6 description: Time of the last refresh of transaction DB02 R3SIZE: type: integer format: int64 description: Total size allocated by the R/3 System (KB) R3FREE: type: integer format: int64 description: Total free space in the R/3 System (KB) R3PCTUSED: type: integer format: int64 description: Percentage of used size to allocated size of the R/3 System TBNUM: type: integer format: int64 description: Number of tables in the R/3 system IXNUM: type: integer format: int64 description: Number of indexes in the R/3 system TBSIZE: type: integer format: int64 description: Total size of all R/3 tables (used storage in KB) IXSIZE: type: integer format: int64 description: Total size of all R/3 indexes (allocated storage in kB) responses: '200': description: OK content: application/json: schema: properties: R3_SIZE_MONTH_HIST: type: array items: type: object properties: ADATE: type: string format: date description: Date of last refresh of transaction DB02 ATIME: type: string maxLength: 6 description: Time of the last refresh of transaction DB02 R3SIZE: type: integer format: int64 description: Total size allocated by the R/3 System (KB) R3FREE: type: integer format: int64 description: Total free space in the R/3 System (KB) R3PCTUSED: type: integer format: int64 description: Percentage of used size to allocated size of the R/3 System TBNUM: type: integer format: int64 description: Number of tables in the R/3 system IXNUM: type: integer format: int64 description: Number of indexes in the R/3 system TBSIZE: type: integer format: int64 description: Total size of all R/3 tables (used storage in KB) IXSIZE: type: integer format: int64 description: Total size of all R/3 indexes (allocated storage in kB) '400': description: Bad request. 5XX: description: Unexpected error.