openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CHECK_OBJECT_IN_CLASS: post: tags: - CLALE summary: Checks whether an object is classified in a class operationId: /rfc/CHECK_OBJECT_IN_CLASS requestBody: content: application/json: schema: properties: CLASSTYPE: type: string maxLength: 3 description: Class Type CLASS_EXTERNAL: type: string maxLength: 18 description: External class name OBJECT: type: string maxLength: 50 required: - CLASSTYPE - CLASS_EXTERNAL - OBJECT responses: '200': description: OK content: application/json: schema: properties: OBJECT_EXISTS_IN_CLASS: type: string maxLength: 1 description: External class name '400': description: Bad request. 5XX: description: Unexpected error.