diff options
Diffstat (limited to 'docs/openapi/components.yml')
-rw-r--r-- | docs/openapi/components.yml | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/docs/openapi/components.yml b/docs/openapi/components.yml index 3866b834..9cce52de 100644 --- a/docs/openapi/components.yml +++ b/docs/openapi/components.yml @@ -19,12 +19,14 @@ components: items: type: string - DmiReadRequestBody: + DmiModuleReadRequestBody: type: object properties: operation: type: string enum: [read] + dataType: + type: string data: type: object properties: @@ -58,6 +60,21 @@ components: namespace: type: string + YangResources: + type: array + items: + type: object + $ref: '#/components/schemas/YangResource' + + YangResource: + properties: + yangSource: + type: string + moduleName: + type: string + revision: + type: string + DataAccessReadRequest: type: object properties: |