openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CAMA_CLASS_DEL_DEP: post: tags: - CACLM operationId: /rfc/CAMA_CLASS_DEL_DEP requestBody: content: application/json: schema: properties: CHANGE_NO: type: string default: ' ' maxLength: 12 description: Change Number CLASS: type: string maxLength: 18 description: Class Name CLASS_TYPE: type: string maxLength: 3 description: Class Type DELETE_LOCAL_DEP: type: string default: ' ' maxLength: 1 description: Deletion indicator for local deps KEY_DATE: type: string format: date default: SY-DATUM description: Valid-From Date WITH_COMMIT: type: string default: X maxLength: 1 DEP_ASSIGN_DEL: type: array items: type: object properties: DEPENDENCY: type: string maxLength: 30 description: Name of Dependency FLDELETE: type: string maxLength: 1 description: 'Deletion Indicator enumValues: ""=No,X=Yes' enum: - '' - X required: - CLASS - CLASS_TYPE responses: '200': description: OK content: application/json: schema: properties: DEP_ASSIGN_DEL: type: array items: type: object properties: DEPENDENCY: type: string maxLength: 30 description: Name of Dependency FLDELETE: type: string maxLength: 1 description: 'Deletion Indicator enumValues: ""=No,X=Yes' enum: - '' - X '400': description: Bad request. 5XX: description: Unexpected error.