openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BM_TABLE_GET: post: tags: - SF14 operationId: /rfc/BM_TABLE_GET requestBody: content: application/json: schema: properties: TABNAME: type: string maxLength: 30 TAB0064: type: array items: type: object properties: LINE: type: string format: byte description: 64 Byte TAB0256: type: array items: type: object properties: LINE: type: string format: byte description: 256 Byte TAB1024: type: array items: type: object properties: LINE: type: string format: byte description: 1024 Byte required: - TABNAME responses: '200': description: OK content: application/json: schema: properties: FILLED_TABLE: type: string maxLength: 30 TAB0064: type: array items: type: object properties: LINE: type: string format: byte description: 64 Byte TAB0256: type: array items: type: object properties: LINE: type: string format: byte description: 256 Byte TAB1024: type: array items: type: object properties: LINE: type: string format: byte description: 1024 Byte '400': description: Bad request. 5XX: description: Unexpected error.