openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB02_GET_MAIN_SCREEN_DB2: post: tags: - DB02_DB2 operationId: /rfc/DB02_GET_MAIN_SCREEN_DB2 responses: '200': description: OK content: application/json: schema: properties: ENTRY_SCREEN_DATA: type: object properties: DBSYS: type: string maxLength: 10 description: Central Database System SYSID: type: string maxLength: 8 description: Name of the SAP System REFRDATE: type: string format: date description: Date of last refresh of transaction DB02 REFRTIME: type: string maxLength: 6 description: Time of the last refresh of transaction DB02 TSNUM: type: integer format: int64 description: Number of tablespaces in the R/3 system TSSIZE: type: integer format: int64 description: Total size of all R/3 tablespaces (allocated storage in kB) TSFREE: type: integer format: int64 description: Total free size of all R/3 tablespaces in KB TSPCTUSED: type: integer format: int64 description: Percentage of used size to allocated size of all tablespaces IXNUM: type: integer format: int64 description: Number of indexes in the R/3 system IXSIZE: type: integer format: int64 description: Total size of all R/3 indexes (allocated storage in kB) IXFREE: type: integer format: int64 description: Total free size of all R/3 indexes in KB IXPCTUSED: type: integer format: int64 description: Percentage of used size to allocated size of all indexes TBNUM: type: integer format: int64 description: Number of tables in the R/3 system TBSIZE: type: integer format: int64 description: Total size of all R/3 tables (used storage in KB) TBMISSDB: type: integer format: int64 description: Number of tables missing in the database IXMISSDB: type: integer format: int64 description: Number of indexes missing in the database TBMISSDDIC: type: integer format: int64 description: Number of tables missing in the ABAP/4 dictionary IXMISSDDIC: type: integer format: int64 description: Number of indexes missing in the ABAP dictionary MONI_VER: type: string maxLength: 1 description: Version marker for DB02's data stored in table MONI '400': description: Bad request. 5XX: description: Unexpected error.