components: schemas: ErrorMessage: type: object title: Error properties: status: type: string message: type: string details: type: string CmHandles: type: object properties: cmHandles: type: array items: type: string ModuleRequestParent: type: object properties: operation: type: string enum: [read] data: type: object properties: modules: type: array items: type: object properties: name: type: string revision: type: string cmHandleProperties: type: object additionalProperties: type: string example: system-001 ModuleSet: type: object properties: schemas: type: array items: type: object properties: moduleName: type: string revision: type: string namespace: type: string OperationalRequest: type: object properties: operation: type: string enum: [ read ] cmHandleProperties: type: object additionalProperties: type: string responses: NotFound: description: The specified resource was not found content: application/json: schema: $ref: '#/components/schemas/ErrorMessage' Unauthorized: description: Unauthorized content: application/json: schema: $ref: '#/components/schemas/ErrorMessage' Forbidden: description: Forbidden content: application/json: schema: $ref: '#/components/schemas/ErrorMessage' BadRequest: description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorMessage' Conflict: description: Conflict content: application/json: schema: $ref: '#/components/schemas/ErrorMessage' Ok: description: OK content: application/json: schema: type: object Created: description: Created content: text/plain: schema: type: string NoContent: description: No Content content: {} parameters: cmHandleInPath: name: cmHandle in: path description: The identifier for a network function, network element, subnetwork, or any other cm object by managed Network CM Proxy required: true schema: type: string