openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CTS_API_READ_CHANGE_REQUEST: post: tags: - CTS_API operationId: /rfc/CTS_API_READ_CHANGE_REQUEST requestBody: content: application/json: schema: properties: REQUEST: type: string maxLength: 20 description: Change Request OBJECTS: type: array items: type: object properties: OBJECT: type: string maxLength: 4 description: Object Type NAME: type: string maxLength: 120 description: Object Name TABU_NAME: type: string maxLength: 30 description: Table Name VIEW_NAME: type: string maxLength: 30 description: View Name TABKEY: type: string maxLength: 120 description: Table Key required: - REQUEST responses: '200': description: OK content: application/json: schema: properties: CATEGORY: type: string maxLength: 1 CLIENT: type: string maxLength: 3 DESCRIPTION: type: string maxLength: 60 description: Description MESSAGE: type: string maxLength: 80 description: Error Message OWNER: type: string maxLength: 12 RETCODE: type: string maxLength: 3 description: Return code STATUS: type: string maxLength: 1 OBJECTS: type: array items: type: object properties: OBJECT: type: string maxLength: 4 description: Object Type NAME: type: string maxLength: 120 description: Object Name TABU_NAME: type: string maxLength: 30 description: Table Name VIEW_NAME: type: string maxLength: 30 description: View Name TABKEY: type: string maxLength: 120 description: Table Key '400': description: Bad request. 5XX: description: Unexpected error.