diff options
Diffstat (limited to 'openapi')
-rw-r--r-- | openapi/components.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/openapi/components.yml b/openapi/components.yml index e011b16d..ae9710b1 100644 --- a/openapi/components.yml +++ b/openapi/components.yml @@ -76,27 +76,31 @@ components: cmHandles: type: array items: - $ref: '#/components/schemas/cmHandle' + $ref: '#/components/schemas/dmiOperationCmHandle' required: - operation - operationId - datastore - cmHandles - cmHandle: + dmiOperationCmHandle: type: object - title: 'cmHandle' + title: 'CmHandle with properties for DMI' properties: id: type: string cmHandleProperties: additionalProperties: type: string + moduleSetTag: + type: string + example: module-set-tag1 example: id: cmHandle123 cmHandleProperties: myProp: some value otherProp: other value + moduleSetTag: module-set-tag1 ModuleResourcesReadRequest: type: object |