openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB02N_GET_TABLE_LIST_DB2: post: tags: - S_DB02N_DB2 operationId: /rfc/DB02N_GET_TABLE_LIST_DB2 requestBody: content: application/json: schema: properties: CREATOR: type: string maxLength: 8 TABLE_LIST: type: array items: type: object properties: NAME: type: string maxLength: 18 description: DB2 table name CREATOR: type: string maxLength: 8 description: DB2 creator name TSNAME: type: string maxLength: 8 description: Name of the tablespace DBNAME: type: string maxLength: 8 description: Database name responses: '200': description: OK content: application/json: schema: properties: TABLE_LIST: type: array items: type: object properties: NAME: type: string maxLength: 18 description: DB2 table name CREATOR: type: string maxLength: 8 description: DB2 creator name TSNAME: type: string maxLength: 8 description: Name of the tablespace DBNAME: type: string maxLength: 8 description: Database name '400': description: Bad request. 5XX: description: Unexpected error.