openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CRM_EI_RFC_GET_CLASSIFY: post: tags: - CRM_EI_RFCL summary: 'EI: returns true if classification is required for delta compilation' operationId: /rfc/CRM_EI_RFC_GET_CLASSIFY requestBody: content: application/json: schema: properties: IV_KB_NAME: type: string maxLength: 30 description: Name of Knowledge Base IV_LANG_ISO: type: string maxLength: 2 description: Language Key (ISO) required: - IV_KB_NAME - IV_LANG_ISO responses: '200': description: OK content: application/json: schema: properties: EV_BOOLEAN: type: string maxLength: 1 description: boolean variable (X=true, -=false, space=unknown) '400': description: Bad request. 5XX: description: Unexpected error.