openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CME_API_DSCOPE_UNLOCK: post: tags: - CME_API_DSCOPE summary: CME Definition Scope - Unlock operationId: /rfc/CME_API_DSCOPE_UNLOCK requestBody: content: application/json: schema: properties: IT_KEY: type: array items: type: object properties: DSCOPE_ID: type: string maxLength: 100 description: 'CME Definition Scope: External Name' DSCOPE_VERSION: type: integer format: int64 description: Version OWNER_ID: type: string maxLength: 100 description: 'CME Owner: External Name' OWNER_GUID: type: string format: byte description: Owner DSCOPE_GUID: type: string format: byte description: 'CME Definition Scope: GUID' DSCOPE_OBJ_GUID: type: string format: byte description: 'CME Definition Scope: Object GUID' responses: '200': description: OK content: application/json: schema: properties: ET_KEY: type: array items: type: object properties: DSCOPE_ID: type: string maxLength: 100 description: 'CME Definition Scope: External Name' DSCOPE_VERSION: type: integer format: int64 description: Version OWNER_ID: type: string maxLength: 100 description: 'CME Owner: External Name' OWNER_GUID: type: string format: byte description: Owner DSCOPE_GUID: type: string format: byte description: 'CME Definition Scope: GUID' DSCOPE_OBJ_GUID: type: string format: byte description: 'CME Definition Scope: Object GUID' '400': description: Bad request. 5XX: description: Unexpected error.