blob: 635117c0745b3a0c2fb0816c1852872479d468a7 [file] [log] [blame]
tragait34a94b92021-03-30 12:02:27 +01001# ============LICENSE_START=======================================================
halil.cakal04280e22024-01-23 10:05:36 +00002# Copyright (C) 2021-2024 Nordix Foundation
Ruslan Kashapov1baf48d2021-05-07 10:46:27 +03003# Modifications Copyright (C) 2021 Pantheon.tech
puthuparambil.adityad69742c2022-03-29 11:03:52 +01004# Modifications Copyright (C) 2022 Bell Canada
tragait34a94b92021-03-30 12:02:27 +01005# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
lukegleeson15b93e72021-07-07 15:25:30 +010011#
tragait34a94b92021-03-30 12:02:27 +010012# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18# SPDX-License-Identifier: Apache-2.0
19# ============LICENSE_END=========================================================
20
Ruslan Kashapov9f52f602021-01-22 12:53:01 +020021components:
22 schemas:
niamhcore66017b42021-10-19 11:07:02 +010023 # Common Schemas
Ruslan Kashapov9f52f602021-01-22 12:53:01 +020024 ErrorMessage:
25 type: object
26 title: Error
27 properties:
28 status:
29 type: string
30 message:
31 type: string
32 details:
33 type: string
mpriyank93afc1e2022-03-28 15:47:47 +053034 # DMI Server Exception Schema
35 DmiErrorMessage:
36 title: DMI Error Message
37 type: object
38 properties:
39 message:
40 type: string
egernug9426ae82023-06-21 11:16:02 +010041 example: 'Bad Gateway Error Message NCMP'
mpriyank93afc1e2022-03-28 15:47:47 +053042 dmi-response:
43 type: object
44 properties:
45 http-code:
46 type: integer
47 example: 400
48 body:
49 type: string
50 example: Bad Request
niamhcore66017b42021-10-19 11:07:02 +010051 # Request Schemas
DylanB95EST4f4178c2021-07-02 13:30:42 +010052 RestDmiPluginRegistration:
53 type: object
Ruslan Kashapov9f52f602021-01-22 12:53:01 +020054 properties:
DylanB95EST4f4178c2021-07-02 13:30:42 +010055 dmiPlugin:
Ruslan Kashapov9f52f602021-01-22 12:53:01 +020056 type: string
emaclee844cab32021-12-01 09:42:37 +000057 example: my-dmi-plugin
DylanB95ESTd042fcd2022-02-21 12:57:08 +000058 default: ""
JosephKeenan20b4f9c2021-11-23 12:18:28 +000059 dmiDataPlugin:
60 type: string
emaclee844cab32021-12-01 09:42:37 +000061 example: my-dmi-data-plugin
DylanB95ESTd042fcd2022-02-21 12:57:08 +000062 default: ""
JosephKeenan20b4f9c2021-11-23 12:18:28 +000063 dmiModelPlugin:
64 type: string
emaclee844cab32021-12-01 09:42:37 +000065 example: my-dmi-model-plugin
DylanB95ESTd042fcd2022-02-21 12:57:08 +000066 default: ""
DylanB95EST4f4178c2021-07-02 13:30:42 +010067 createdCmHandles:
68 type: array
69 items:
DylanB95ESTe5573382022-01-27 17:12:52 +000070 $ref: '#/components/schemas/RestInputCmHandle'
DylanB95EST31facc82021-08-18 17:12:25 +010071 updatedCmHandles:
72 type: array
73 items:
DylanB95ESTe5573382022-01-27 17:12:52 +000074 $ref: '#/components/schemas/RestInputCmHandle'
Renu Kumari2c963172022-03-10 16:02:55 -050075 example:
76 cmHandle: my-cm-handle
77 cmHandleProperties:
78 add-my-property: add-property
79 update-my-property: updated-property
80 delete-my-property: '~'
81 publicCmHandleProperties:
82 add-my-property: add-property
83 update-my-property: updated-property
84 delete-my-property: '~'
DylanB95ESTe999b022021-08-24 16:56:40 +010085 removedCmHandles:
86 type: array
87 items:
88 type: string
bmiklosbbaf5012022-08-25 18:28:16 +020089 example: [ my-cm-handle1, my-cm-handle2, my-cm-handle3 ]
sourabh_sourabh55164b22023-09-26 12:11:42 +010090 upgradedCmHandles:
91 $ref: '#/components/schemas/UpgradedCmHandles'
Renu Kumarib14f04b2022-03-28 10:22:41 -040092 DmiPluginRegistrationErrorResponse:
93 type: object
94 properties:
95 failedCreatedCmHandles:
96 type: array
97 items:
98 $ref: '#/components/schemas/CmHandlerRegistrationErrorResponse'
Renu Kumarib14f04b2022-03-28 10:22:41 -040099 failedUpdatedCmHandles:
100 type: array
101 items:
102 $ref: '#/components/schemas/CmHandlerRegistrationErrorResponse'
Renu Kumarib14f04b2022-03-28 10:22:41 -0400103 failedRemovedCmHandles:
104 type: array
105 items:
106 $ref: '#/components/schemas/CmHandlerRegistrationErrorResponse'
sourabh_sourabh55164b22023-09-26 12:11:42 +0100107 failedUpgradeCmHandles:
108 type: array
109 items:
110 $ref: '#/components/schemas/CmHandlerRegistrationErrorResponse'
Renu Kumarib14f04b2022-03-28 10:22:41 -0400111 CmHandlerRegistrationErrorResponse:
112 type: object
113 properties:
114 cmHandle:
115 type: string
116 example: my-cm-handle
117 errorCode:
118 type: string
Renu Kumari952603c2022-04-18 12:39:33 -0400119 example: '00'
Renu Kumarib14f04b2022-03-28 10:22:41 -0400120 errorText:
121 type: string
Renu Kumari952603c2022-04-18 12:39:33 -0400122 example: 'Unknown error. <error-details>'
DylanB95EST4f4178c2021-07-02 13:30:42 +0100123
DylanB95ESTe5573382022-01-27 17:12:52 +0000124 RestInputCmHandle:
DylanB95EST4f4178c2021-07-02 13:30:42 +0100125 required:
126 - cmHandle
127 type: object
128 properties:
129 cmHandle:
130 type: string
emaclee844cab32021-12-01 09:42:37 +0000131 example: my-cm-handle
DylanB95EST4f4178c2021-07-02 13:30:42 +0100132 cmHandleProperties:
bmiklosbbaf5012022-08-25 18:28:16 +0200133 $ref: '#/components/schemas/RestCmHandleProperties'
DylanB95EST63132ce2021-12-14 16:34:38 +0000134 publicCmHandleProperties:
bmiklosbbaf5012022-08-25 18:28:16 +0200135 $ref: '#/components/schemas/RestCmHandleProperties'
leventecsanyi46782b72023-09-04 10:59:23 +0200136 moduleSetTag:
137 type: string
138 example: "my-module-set-tag"
seanbeirnef41dd3b2023-10-17 11:03:16 +0100139 trustLevel:
140 type: string
141 enum: [COMPLETE, NONE]
142 example: "COMPLETE"
leventecsanyid8be9ef2023-12-07 16:17:12 +0100143 alternateId:
144 type: string
145 example: "my-alternate-id"
JvD_Ericssona927b202024-02-16 09:30:45 +0000146 dataProducerIdentifier:
147 type: string
148 example: "my-data-producer-identifier"
DylanB95EST63132ce2021-12-14 16:34:38 +0000149 RestCmHandleProperties:
bmiklosbbaf5012022-08-25 18:28:16 +0200150 type: object
151 additionalProperties:
152 type: string
153 example: my-property
sourabh_sourabh55164b22023-09-26 12:11:42 +0100154 #Module upgrade schema
155 UpgradedCmHandles:
156 required:
157 - cmHandles
158 type: object
159 properties:
160 cmHandles:
161 type: array
162 items:
163 type: string
164 example: [ my-cm-handle1, my-cm-handle2, my-cm-handle3 ]
165 moduleSetTag:
166 type: string
sourabh_sourabh541ed452023-12-05 11:02:17 +0000167 default: ""
sourabh_sourabh55164b22023-09-26 12:11:42 +0100168 example: 'my-module-set-tag'
Ruslan Kashapov9f52f602021-01-22 12:53:01 +0200169
niamhcore66017b42021-10-19 11:07:02 +0100170 #Response Schemas
lukegleesond5bda882022-03-02 14:32:47 +0000171 RestModuleReference:
puthuparambil.adityad0007332021-12-08 18:53:39 +0000172 type: object
173 title: Module reference details
174 properties:
175 moduleName:
176 type: string
177 example: my-module-name
178 revision:
179 type: string
180 example: my-module-revision
181
emacleee1f73e22022-06-17 17:42:56 +0100182 RestModuleDefinition:
183 type: object
184 title: Module definitions
185 properties:
186 moduleName:
187 type: string
188 example: my-module-name
189 revision:
190 type: string
191 example: 2020-09-15
192 content:
193 type: string
194 example: |
195 module stores {
196 yang-version 1.1;
egernug9426ae82023-06-21 11:16:02 +0100197 namespace 'org:onap:ccsdk:sample';
emacleee1f73e22022-06-17 17:42:56 +0100198 prefix book-store;
egernug9426ae82023-06-21 11:16:02 +0100199 revision '2020-09-15' {
emacleee1f73e22022-06-17 17:42:56 +0100200 description
egernug9426ae82023-06-21 11:16:02 +0100201 'Sample Model';
emacleee1f73e22022-06-17 17:42:56 +0100202 }
203 }
204
kissande9ed5812022-05-12 15:59:18 +0200205 CmHandleQueryParameters:
JosephKeenandeac4772022-03-28 12:26:07 +0100206 type: object
207 title: Cm Handle query parameters for executing cm handle search
208 properties:
kissande9ed5812022-05-12 15:59:18 +0200209 cmHandleQueryParameters:
210 type: array
211 items:
kissande9ed5812022-05-12 15:59:18 +0200212 $ref: '#/components/schemas/ConditionProperties'
213 conditions:
214 deprecated: true
215 type: array
216 items:
kissande9ed5812022-05-12 15:59:18 +0200217 $ref: '#/components/schemas/OldConditionProperties'
218 description: not necessary, it is just for backward compatibility
lukegleeson82a550f2022-07-11 10:55:53 +0100219
kissande9ed5812022-05-12 15:59:18 +0200220 ConditionProperties:
221 properties:
222 conditionName:
223 type: string
224 conditionParameters:
225 type: array
226 items:
227 type: object
228 additionalProperties:
229 type: string
230 OldConditionProperties:
231 deprecated: true
232 properties:
233 name:
234 type: string
235 conditionParameters:
236 type: array
237 items:
kissande9ed5812022-05-12 15:59:18 +0200238 $ref: '#/components/schemas/ModuleNameAsJsonObject'
239 ModuleNameAsJsonObject:
240 properties:
241 moduleName:
242 type: string
243 example: my-module
JosephKeenandeac4772022-03-28 12:26:07 +0100244
DylanB95ESTe5573382022-01-27 17:12:52 +0000245 RestOutputCmHandle:
246 type: object
247 title: CM handle Details
248 properties:
249 cmHandle:
250 type: string
251 example: my-cm-handle1
252 publicCmHandleProperties:
253 $ref: '#/components/schemas/CmHandlePublicProperties'
mpriyank4cf49622022-05-20 15:25:15 +0100254 state:
lukegleeson78062a12022-06-02 10:56:43 +0100255 $ref: '#/components/schemas/CmHandleCompositeState'
emacleee24f5e82023-09-23 13:46:15 +0100256 trustLevel:
257 $ref: '#/components/schemas/CmHandleTrustLevel'
DylanB95ESTe5573382022-01-27 17:12:52 +0000258 CmHandlePublicProperties:
egernug477bd462023-09-21 17:51:21 +0100259 type: object
DylanB95ESTe5573382022-01-27 17:12:52 +0000260 items:
Toine Siebelinkad9b7012023-09-20 09:35:10 +0000261 type: object
262 additionalProperties:
263 type: string
egernug477bd462023-09-21 17:51:21 +0100264 example: 'Book Type'
lukegleeson78062a12022-06-02 10:56:43 +0100265 CmHandleCompositeState:
mpriyank4cf49622022-05-20 15:25:15 +0100266 type: object
267 properties:
268 cmHandleState:
269 type: string
270 example: ADVISED
271 lockReason:
272 $ref: '#/components/schemas/lock-reason'
273 lastUpdateTime:
274 type: string
275 example: 2022-12-31T20:30:40.000+0000
276 dataSyncEnabled:
277 type: boolean
278 example: false
279 dataSyncState:
280 $ref: '#/components/schemas/dataStores'
emacleee24f5e82023-09-23 13:46:15 +0100281 CmHandleTrustLevel:
282 type: string
283 description: Current trust level of the relevant CM handle ID.
284 example: COMPLETE
mpriyank4cf49622022-05-20 15:25:15 +0100285
286 lock-reason:
287 type: object
288 properties:
289 reason:
290 type: string
lukegleeson4e596842022-06-28 12:15:33 +0100291 example: LOCKED_MISBEHAVING
mpriyank4cf49622022-05-20 15:25:15 +0100292 details:
293 type: string
lukegleeson4e596842022-06-28 12:15:33 +0100294 example: locked due to failure in module sync
mpriyank4cf49622022-05-20 15:25:15 +0100295
296 dataStores:
297 type: object
298 properties:
299 operational:
300 $ref: '#/components/schemas/sync-state'
301 running:
302 $ref: '#/components/schemas/sync-state'
303
304 sync-state:
305 type: object
306 properties:
lukegleeson82a550f2022-07-11 10:55:53 +0100307 syncState:
mpriyank4cf49622022-05-20 15:25:15 +0100308 type: string
309 example: NONE_REQUESTED
310 lastSyncTime:
311 type: string
312 example: 2022-12-31T20:30:40.000+0000
DylanB95ESTe5573382022-01-27 17:12:52 +0000313
lukegleesonbed18fd2022-05-06 12:02:42 +0100314 RestOutputCmHandlePublicProperties:
315 type: object
316 properties:
317 publicCmHandleProperties:
318 $ref: '#/components/schemas/CmHandlePublicProperties'
319
lukegleeson78062a12022-06-02 10:56:43 +0100320 RestOutputCmHandleCompositeState:
321 type: object
322 properties:
323 state:
324 $ref: '#/components/schemas/CmHandleCompositeState'
raviteja.karumuri977f7c32023-06-20 19:10:21 +0100325 # Data Operation Request Schemas
326 DataOperationRequest:
sourabh_sourabhf232f302023-05-09 14:34:59 +0100327 type: object
raviteja.karumuri977f7c32023-06-20 19:10:21 +0100328 title: execute data operation for given array of operations
sourabh_sourabhf232f302023-05-09 14:34:59 +0100329 properties:
330 operations:
331 type: array
332 items:
raviteja.karumuri977f7c32023-06-20 19:10:21 +0100333 $ref: '#/components/schemas/DataOperationDefinition'
334 description: contains group of data operation requests
335 DataOperationDefinition:
sourabh_sourabhf232f302023-05-09 14:34:59 +0100336 required:
337 - operation
338 - datastore
339 - operationId
340 properties:
341 operation:
342 type: string
343 example: 'read'
344 operationId:
345 type: string
346 example: '12'
347 datastore:
348 type: string
349 example: 'ncmp-datastore:passthrough-operational'
350 options:
351 type: string
352 example: '(fields=schemas/schema)'
353 resourceIdentifier:
354 type: string
355 example: 'parent/child'
356 targetIds:
357 type: array
358 items:
359 type: string
egernug9426ae82023-06-21 11:16:02 +0100360 example: [ "da310eecdb8d44c2acc0ddaae01174b1","c748c58f8e0b438f9fd1f28370b17d47" ]
lukegleeson78062a12022-06-02 10:56:43 +0100361
emaclee844cab32021-12-01 09:42:37 +0000362 examples:
363 dataSampleRequest:
bmiklosbbaf5012022-08-25 18:28:16 +0200364 summary: Sample request
365 description: Sample request body
366 value:
367 test:bookstore:
368 bookstore-name: Chapters
369 categories:
370 - code: '01'
371 name: SciFi
372 books:
emaclee844cab32021-12-01 09:42:37 +0000373 - authors:
374 - Iain M. Banks
emaclee844cab32021-12-01 09:42:37 +0000375 - Ursula K. Le Guin
bmiklosbbaf5012022-08-25 18:28:16 +0200376 - code: '02'
377 name: kids
378 books:
emaclee844cab32021-12-01 09:42:37 +0000379 - authors:
380 - Philip Pullman
381
tragaitecd7f5e2022-01-13 13:15:14 +0000382 dataSamplePatchRequest:
383 summary: Sample patch request
384 description: Sample patch request body
385 value:
386 ietf-restconf:yang-patch:
387 patch-id: patch-1
388 edit:
389 - edit-id: edit1
390 operation: merge
391 target: /
392 value:
393 test:bookstore:
394 bookstore-name: Chapters
395 categories:
396 - code: '01'
397 name: Science
398 books:
399 - authors:
400 - Author1
401 - Author2
402 - code: '02'
403 name: Arts
404 books:
405 - authors:
406 - Author3
407 - edit-id: edit2
408 operation: merge
409 target: /
410 value:
411 test:bookstore:
412 bookstore-name: Novels
413 categories:
414 - code: '03'
415 name: History
416 books:
417 - authors:
418 - Iain M. Banks
419 - Ursula K. Le Guin
420 - code: '04'
421 name: Fiction
422 books:
423 - authors:
424 - Philip Pullman
425
emaclee844cab32021-12-01 09:42:37 +0000426 dataSampleResponse:
bmiklosbbaf5012022-08-25 18:28:16 +0200427 summary: Sample response
428 description: Sample response for selecting 'sample 1'.
429 value:
430 bookstore:
431 categories:
432 - code: '01'
433 books:
434 - authors:
435 - Iain M. Banks
436 - Ursula K. Le Guin
437 name: SciFi
438 - code: '02'
439 books:
440 - authors:
441 - Philip Pullman
442 name: kids
niamhcore66017b42021-10-19 11:07:02 +0100443
lukegleeson82a550f2022-07-11 10:55:53 +0100444 allCmHandleQueryParameters:
445 value:
446 cmHandleQueryParameters:
447 - conditionName: hasAllModules
448 conditionParameters:
449 - { "moduleName": "my-module-1" }
450 - { "moduleName": "my-module-2" }
451 - { "moduleName": "my-module-3" }
452 - conditionName: hasAllProperties
453 conditionParameters:
454 - { "Color": "yellow" }
455 - { "Shape": "circle" }
456 - { "Size": "small" }
457 - conditionName: cmHandleWithCpsPath
458 conditionParameters:
459 - { "cpsPath": "//state[@cm-handle-state='ADVISED']" }
460 pubPropCmHandleQueryParameters:
461 value:
462 cmHandleQueryParameters:
463 - conditionName: hasAllProperties
464 conditionParameters:
465 - { "Color": "yellow" }
466 - { "Shape": "circle" }
467 - { "Size": "small" }
468 modulesCmHandleQueryParameters:
469 value:
470 cmHandleQueryParameters:
471 - conditionName: hasAllModules
472 conditionParameters:
473 - { "moduleName": "my-module-1" }
474 - { "moduleName": "my-module-2" }
475 - { "moduleName": "my-module-3" }
476 cpsPathCmHandleStateQueryParameters:
477 value:
478 cmHandleQueryParameters:
479 - conditionName: cmHandleWithCpsPath
480 conditionParameters:
481 - { "cpsPath": "//state[@cm-handle-state='LOCKED']" }
482 cpsPathCmHandleDataSyncQueryParameters:
483 value:
484 cmHandleQueryParameters:
485 - conditionName: cmHandleWithCpsPath
486 conditionParameters:
487 - { "cpsPath": "//state[@data-sync-enabled='true']" }
488
Ruslan Kashapov9f52f602021-01-22 12:53:01 +0200489 parameters:
Hanif Kukkalli83e318f2021-02-23 12:26:39 +0100490 cmHandleInPath:
491 name: cm-handle
492 in: path
tragait34a94b92021-03-30 12:02:27 +0100493 description: The identifier for a network function, network element, subnetwork or any other cm object by managed Network CM Proxy
Hanif Kukkalli83e318f2021-02-23 12:26:39 +0100494 required: true
495 schema:
496 type: string
emaclee844cab32021-12-01 09:42:37 +0000497 example: my-cm-handle
halil.cakal04280e22024-01-23 10:05:36 +0000498 moduleNameInQuery:
499 name: module-name
500 in: query
501 description: Filter for a module name.This is an optional parameter
502 required: false
503 schema:
504 type: string
505 example: my-module
506 revisionInQuery:
507 name: revision
508 in: query
509 description: Filter for a module revision.This is an optional parameter and ignored when no module name is supplied
510 required: false
511 schema:
512 type: string
513 example: 2024-01-22
DylanB95EST6ddbe4a2022-07-19 11:36:10 +0100514 dataSyncEnabled:
515 name: dataSyncEnabled
516 in: query
517 description: Is used to enable or disable the data synchronization flag
518 required: true
519 schema:
520 type: boolean
521 example: true
Hanif Kukkalli83e318f2021-02-23 12:26:39 +0100522 xpathInQuery:
523 name: xpath
524 in: query
525 description: xpath
526 required: false
527 schema:
528 type: string
529 default: /
Ruslan Kashapov1baf48d2021-05-07 10:46:27 +0300530 requiredXpathInQuery:
531 name: xpath
532 in: query
533 description: xpath
534 required: true
535 schema:
536 type: string
Hanif Kukkalli83e318f2021-02-23 12:26:39 +0100537 includeDescendantsOptionInQuery:
538 name: include-descendants
539 in: query
bmiklosbbaf5012022-08-25 18:28:16 +0200540 description: Determines if descendants are included in response
Hanif Kukkalli83e318f2021-02-23 12:26:39 +0100541 required: false
542 schema:
543 type: boolean
544 default: false
niamhcoreb5d573b2021-02-26 10:13:48 +0000545 cpsPathInQuery:
546 name: cps-path
547 in: query
lukegleeson20e7a732022-10-20 10:14:00 +0100548 description: For more details on cps path, please refer https://docs.onap.org/projects/onap-cps/en/latest/cps-path.html
niamhcoreb5d573b2021-02-26 10:13:48 +0000549 required: false
550 schema:
551 type: string
552 default: /
lukegleeson20e7a732022-10-20 10:14:00 +0100553 examples:
554 container cps path:
555 value: //bookstore
556 list attributes cps path:
557 value: //categories[@code=1]
emacleed3400472022-08-19 09:26:39 +0100558 dmiPluginIdentifierInQuery:
559 name: dmi-plugin-identifier
560 in: query
561 description: dmi-plugin-identifier
562 required: true
563 schema:
564 type: string
565 example: my-dmi-plugin
niamhcorefd2e6dd2021-09-29 16:43:35 +0100566 resourceIdentifierInQuery:
tragaitc3285512021-08-16 15:12:36 +0100567 name: resourceIdentifier
niamhcorefd2e6dd2021-09-29 16:43:35 +0100568 in: query
569 description: The format of resource identifier depend on the associated DMI Plugin implementation. For ONAP DMI Plugin it will be RESTConf paths but it can really be anything.
tragaitc3285512021-08-16 15:12:36 +0100570 required: true
niamhcorefd2e6dd2021-09-29 16:43:35 +0100571 allowReserved: true
tragaitc3285512021-08-16 15:12:36 +0100572 schema:
573 type: string
niamhcorefd2e6dd2021-09-29 16:43:35 +0100574 examples:
emaclee844cab32021-12-01 09:42:37 +0000575 sample 1:
niamhcorefd2e6dd2021-09-29 16:43:35 +0100576 value:
emaclee844cab32021-12-01 09:42:37 +0000577 resourceIdentifier: \shops\bookstore
578 sample 2:
niamhcorefd2e6dd2021-09-29 16:43:35 +0100579 value:
emaclee844cab32021-12-01 09:42:37 +0000580 resourceIdentifier: \shops\bookstore\categories[@code=1]
581 sample 3:
niamhcorefd2e6dd2021-09-29 16:43:35 +0100582 value:
emaclee844cab32021-12-01 09:42:37 +0000583 resourceIdentifier: parent=shops,child=bookstore
tragaitabdff1b2021-10-06 11:04:18 +0100584 optionsParamInQuery:
585 name: options
tragaitc3285512021-08-16 15:12:36 +0100586 in: query
emaclee844cab32021-12-01 09:42:37 +0000587 description: options parameter in query, it is mandatory to wrap key(s)=value(s) in parenthesis'()'. The format of options parameter depend on the associated DMI Plugin implementation.
tragaitc3285512021-08-16 15:12:36 +0100588 required: false
589 schema:
590 type: string
tragaitabdff1b2021-10-06 11:04:18 +0100591 allowReserved: true
592 examples:
emaclee844cab32021-12-01 09:42:37 +0000593 sample 1:
tragaitabdff1b2021-10-06 11:04:18 +0100594 value:
emaclee844cab32021-12-01 09:42:37 +0000595 options: (depth=3)
596 sample 2:
tragaitabdff1b2021-10-06 11:04:18 +0100597 value:
emaclee844cab32021-12-01 09:42:37 +0000598 options: (fields=book)
599 sample 3:
tragaitabdff1b2021-10-06 11:04:18 +0100600 value:
emaclee844cab32021-12-01 09:42:37 +0000601 options: (depth=2,fields=book/authors)
sourabh_sourabh1f2e66e2022-02-16 21:53:41 +0530602 topicParamInQuery:
603 name: topic
604 in: query
605 description: topic parameter in query.
606 required: false
607 schema:
608 type: string
609 allowReserved: true
610 examples:
611 sample 1:
612 value:
613 topic: my-topic-name
sourabh_sourabh4031d432023-03-27 14:36:20 +0100614 requiredTopicParamInQuery:
615 name: topic
616 in: query
617 description: mandatory topic parameter in query.
618 required: true
619 schema:
620 type: string
621 allowReserved: true
622 examples:
623 sample 1:
624 value:
625 topic: my-topic-name
tragaitc584bf22021-08-20 15:45:58 +0100626 contentParamInHeader:
627 name: Content-Type
628 in: header
629 required: false
630 description: Content parameter for request, if content parameter is null, default value is application/json.
631 schema:
632 type: string
633 default: application/json
emaclee844cab32021-12-01 09:42:37 +0000634 example: application/yang-data+json
danielhanrahanc5222a72024-02-28 16:05:07 +0000635 authorizationParamInHeader:
636 name: Authorization
637 in: header
638 required: false
639 description: Authorization parameter for request.
640 schema:
641 type: string
bmiklosbbaf5012022-08-25 18:28:16 +0200642 datastoreName:
lukegleeson20e7a732022-10-20 10:14:00 +0100643 name: datastore-name
bmiklosbbaf5012022-08-25 18:28:16 +0200644 in: path
645 description: The type of the requested data
646 required: true
647 schema:
648 type: string
seanbeirneafc60552023-01-30 16:53:37 +0000649 example: ncmp-datastore:running
Ruslan Kashapov9f52f602021-01-22 12:53:01 +0200650
651 responses:
652 NotFound:
653 description: The specified resource was not found
654 content:
655 application/json:
656 schema:
657 $ref: '#/components/schemas/ErrorMessage'
emaclee844cab32021-12-01 09:42:37 +0000658 example:
659 status: 400
660 message: Not found error message
661 details: Not found error details
Ruslan Kashapov9f52f602021-01-22 12:53:01 +0200662 Unauthorized:
663 description: Unauthorized
664 content:
665 application/json:
666 schema:
667 $ref: '#/components/schemas/ErrorMessage'
emaclee844cab32021-12-01 09:42:37 +0000668 example:
669 status: 401
670 message: Unauthorized error message
671 details: Unauthorized error details
Ruslan Kashapov9f52f602021-01-22 12:53:01 +0200672 Forbidden:
673 description: Forbidden
674 content:
675 application/json:
676 schema:
677 $ref: '#/components/schemas/ErrorMessage'
emaclee844cab32021-12-01 09:42:37 +0000678 example:
bmiklosbbaf5012022-08-25 18:28:16 +0200679 status: 403
680 message: Forbidden error message
681 details: Forbidden error details
Ruslan Kashapov9f52f602021-01-22 12:53:01 +0200682 BadRequest:
683 description: Bad Request
684 content:
685 application/json:
686 schema:
687 $ref: '#/components/schemas/ErrorMessage'
emaclee844cab32021-12-01 09:42:37 +0000688 example:
bmiklosbbaf5012022-08-25 18:28:16 +0200689 status: 400 BAD_REQUEST
690 message: Bad request error message
691 details: Bad request error details
Ruslan Kashapov9f52f602021-01-22 12:53:01 +0200692 Conflict:
693 description: Conflict
694 content:
695 application/json:
696 schema:
697 $ref: '#/components/schemas/ErrorMessage'
emaclee844cab32021-12-01 09:42:37 +0000698 example:
bmiklosbbaf5012022-08-25 18:28:16 +0200699 status: 409 CONFLICT
700 message: Conflict error message
701 details: Conflict error details
Hanif Kukkalli83e318f2021-02-23 12:26:39 +0100702 NotImplemented:
703 description: The given path has not been implemented
704 content:
705 application/json:
706 schema:
707 $ref: '#/components/schemas/ErrorMessage'
emaclee844cab32021-12-01 09:42:37 +0000708 example:
bmiklosbbaf5012022-08-25 18:28:16 +0200709 status: 501
710 message: Not implemented error message
711 details: Not implemented error details
Ruslan Kashapov9f52f602021-01-22 12:53:01 +0200712 Ok:
713 description: OK
714 content:
715 application/json:
716 schema:
717 type: object
718 Created:
719 description: Created
bmiklosbbaf5012022-08-25 18:28:16 +0200720 content: { }
Ruslan Kashapov9f52f602021-01-22 12:53:01 +0200721 NoContent:
722 description: No Content
bmiklosbbaf5012022-08-25 18:28:16 +0200723 content: { }
JosephKeenane0873dd2022-01-28 11:22:22 +0000724 InternalServerError:
725 description: Internal Server Error
726 content:
727 application/json:
728 schema:
729 $ref: "#/components/schemas/ErrorMessage"
730 example:
731 status: 500
732 message: Internal Server Error
733 details: Internal Server Error occurred
mpriyank93afc1e2022-03-28 15:47:47 +0530734 BadGateway:
735 description: Bad Gateway
736 content:
737 application/json:
738 schema:
739 $ref: "#/components/schemas/DmiErrorMessage"
740 example:
741 message: "Bad Gateway Error Message NCMP"
742 dmi-response:
743 http-code: 400
744 body: "Bad Request"