openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CACL_OBJECT_VALIDATION_MAINT: post: tags: - CACL operationId: /rfc/CACL_OBJECT_VALIDATION_MAINT requestBody: content: application/json: schema: properties: CHANGE_NO: type: string maxLength: 12 description: Change number CLASS: type: string maxLength: 18 description: Class CLASS_TYPE: type: string maxLength: 3 description: Class type I_DATUV: type: string format: date I_NO_DEFAULTS: type: string default: ' ' maxLength: 1 I_OBJ_NOT_CHK: type: string default: ' ' maxLength: 1 OBJECT: type: string maxLength: 50 OBJECT_TYPE: type: string maxLength: 30 description: Object ID, such as MARA, EQUI... STANDARD_CLASS: type: string default: ' ' maxLength: 1 description: Standard class indicator STATUS: type: string maxLength: 1 description: Classification Status OBJECT_IDENTIFICATION: type: array items: type: object properties: FIELD: type: string maxLength: 30 description: Field Name VALUE: type: string maxLength: 100 description: External Key of Object To Be Classified VALIDATION_MAINT: type: array items: type: object properties: CHARACT: type: string maxLength: 30 description: Characteristic Name VALUE: type: string maxLength: 30 description: Characteristic Value FLDELETE: type: string maxLength: 1 description: 'Deletion Indicator enumValues: ""=No,X=Yes' enum: - '' - X INSTANCE: type: integer format: int64 description: Instance counter required: - CLASS - CLASS_TYPE - OBJECT_TYPE responses: '200': description: OK content: application/json: schema: properties: OBJECT_IDENTIFICATION: type: array items: type: object properties: FIELD: type: string maxLength: 30 description: Field Name VALUE: type: string maxLength: 100 description: External Key of Object To Be Classified VALIDATION_MAINT: type: array items: type: object properties: CHARACT: type: string maxLength: 30 description: Characteristic Name VALUE: type: string maxLength: 30 description: Characteristic Value FLDELETE: type: string maxLength: 1 description: 'Deletion Indicator enumValues: ""=No,X=Yes' enum: - '' - X INSTANCE: type: integer format: int64 description: Instance counter '400': description: Bad request. 5XX: description: Unexpected error.