openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CSM_SHOW_LOGIC_DIR_LIST: post: tags: - SCSM_FILEINFO operationId: /rfc/CSM_SHOW_LOGIC_DIR_LIST requestBody: content: application/json: schema: properties: SHOW_ALL: type: integer format: int32 default: 0 TIMEOUT: type: integer format: int32 default: 10 ERROR_STD: type: array items: type: object properties: LINE: type: string maxLength: 1024 description: Character 1024 PARAMTBL: type: array items: type: object properties: LOGICNAME: type: string maxLength: 128 description: 128 character PHYSNAME: type: string maxLength: 512 description: Character 512 RC: type: integer format: int32 description: Natural number required: - SHOW_ALL - TIMEOUT responses: '200': description: OK content: application/json: schema: properties: ENTRIES_READ: type: integer format: int32 description: Natural Number ERROR_STD: type: array items: type: object properties: LINE: type: string maxLength: 1024 description: Character 1024 PARAMTBL: type: array items: type: object properties: LOGICNAME: type: string maxLength: 128 description: 128 character PHYSNAME: type: string maxLength: 512 description: Character 512 RC: type: integer format: int32 description: Natural number '400': description: Bad request. 5XX: description: Unexpected error.