diff options
author | david.mcweeney <david.mcweeney@est.tech> | 2024-05-08 12:37:02 +0100 |
---|---|---|
committer | david.mcweeney <david.mcweeney@est.tech> | 2024-05-20 17:10:41 +0100 |
commit | 3cadc1985c5f8cdc3f1914b95fe43d5e0987743b (patch) | |
tree | a4aa14af70ab53fa6a200a4f951b29c86a063948 /openapi | |
parent | 91734f9782746feacd68effbe159c56c284beb83 (diff) |
CPS-2182 -#3 Include module Set Tag in dmi batch data enpoint
Change-Id: Ib45cc59c12062429aababa7aedb3a028aac0315c
Signed-off-by: david.mcweeney <david.mcweeney@est.tech>
Issue-ID: CPS-2182
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 |