openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB02N_GET_TBSIZE_DAY_HIST_DB2: post: tags: - S_DB02N_DB2 operationId: /rfc/DB02N_GET_TBSIZE_DAY_HIST_DB2 requestBody: content: application/json: schema: properties: TBCREATOR: type: string maxLength: 8 description: Name of the tablespace TBNAME: type: string maxLength: 18 description: Database name TABLESIZE_HISTORY: type: array items: type: object properties: TBCREATOR: type: string maxLength: 8 description: DB2 creator name TBNAME: type: string maxLength: 18 description: Name of the table on which the index is defined STORDATE: type: string format: date description: Date when the storage information has been collected STORTIME: type: string maxLength: 6 description: Time when the storage information has been collected TSNAME: type: string maxLength: 8 description: Name of the tablespace DBNAME: type: string maxLength: 8 description: Database name PARTITIONS: type: integer format: int32 description: Number of partitions of a tablespace or index TBSIZE: type: number description: 'Real Time Statistics: Table size = TOTALENTRIES*AvgRowLen KB' SPACEF: type: number description: 'Column SYSIBM.SYSTABLES(SPACEF): DASD space used for table' STATSTIME: type: string maxLength: 26 description: Date and time of last RUNSTATS TS_ALLOCSIZE: type: integer format: int64 description: Total size of a tablespace (allocated storage in KB) TS_FREESIZE: type: integer format: int64 description: Free size of a tablespace in KB (allocated minus used stor.) PCTUSED: type: integer format: int64 description: Percentage of used size to allocated size of a tablespace RTS_TOTALROWS: type: number description: 'Real Time Statistics: Number of rows in Table' AVGROWLENGTH: type: integer format: int32 description: Average row length of table RTS_ST_CHANGES: type: integer format: int32 description: RUN.:Changed rows (insert, delete or update) absolute number required: - TBCREATOR - TBNAME responses: '200': description: OK content: application/json: schema: properties: TABLESIZE_HISTORY: type: array items: type: object properties: TBCREATOR: type: string maxLength: 8 description: DB2 creator name TBNAME: type: string maxLength: 18 description: Name of the table on which the index is defined STORDATE: type: string format: date description: Date when the storage information has been collected STORTIME: type: string maxLength: 6 description: Time when the storage information has been collected TSNAME: type: string maxLength: 8 description: Name of the tablespace DBNAME: type: string maxLength: 8 description: Database name PARTITIONS: type: integer format: int32 description: Number of partitions of a tablespace or index TBSIZE: type: number description: 'Real Time Statistics: Table size = TOTALENTRIES*AvgRowLen KB' SPACEF: type: number description: 'Column SYSIBM.SYSTABLES(SPACEF): DASD space used for table' STATSTIME: type: string maxLength: 26 description: Date and time of last RUNSTATS TS_ALLOCSIZE: type: integer format: int64 description: Total size of a tablespace (allocated storage in KB) TS_FREESIZE: type: integer format: int64 description: Free size of a tablespace in KB (allocated minus used stor.) PCTUSED: type: integer format: int64 description: Percentage of used size to allocated size of a tablespace RTS_TOTALROWS: type: number description: 'Real Time Statistics: Number of rows in Table' AVGROWLENGTH: type: integer format: int32 description: Average row length of table RTS_ST_CHANGES: type: integer format: int32 description: RUN.:Changed rows (insert, delete or update) absolute number '400': description: Bad request. 5XX: description: Unexpected error.