tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
DylanB95EST | 63132ce | 2021-12-14 16:34:38 +0000 | [diff] [blame] | 2 | # Copyright (C) 2021-2022 Nordix Foundation |
Ruslan Kashapov | 1baf48d | 2021-05-07 10:46:27 +0300 | [diff] [blame] | 3 | # Modifications Copyright (C) 2021 Pantheon.tech |
puthuparambil.aditya | d69742c | 2022-03-29 11:03:52 +0100 | [diff] [blame] | 4 | # Modifications Copyright (C) 2022 Bell Canada |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 5 | # ================================================================================ |
| 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 |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 11 | # |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 12 | # 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 Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 21 | components: |
| 22 | schemas: |
niamhcore | 66017b4 | 2021-10-19 11:07:02 +0100 | [diff] [blame] | 23 | # Common Schemas |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 24 | ErrorMessage: |
| 25 | type: object |
| 26 | title: Error |
| 27 | properties: |
| 28 | status: |
| 29 | type: string |
| 30 | message: |
| 31 | type: string |
| 32 | details: |
| 33 | type: string |
mpriyank | 93afc1e | 2022-03-28 15:47:47 +0530 | [diff] [blame] | 34 | # DMI Server Exception Schema |
| 35 | DmiErrorMessage: |
| 36 | title: DMI Error Message |
| 37 | type: object |
| 38 | properties: |
| 39 | message: |
| 40 | type: string |
| 41 | example: "Bad Gateway Error Message NCMP" |
| 42 | 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 |
niamhcore | 66017b4 | 2021-10-19 11:07:02 +0100 | [diff] [blame] | 51 | # Request Schemas |
DylanB95EST | 4f4178c | 2021-07-02 13:30:42 +0100 | [diff] [blame] | 52 | RestDmiPluginRegistration: |
| 53 | type: object |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 54 | properties: |
DylanB95EST | 4f4178c | 2021-07-02 13:30:42 +0100 | [diff] [blame] | 55 | dmiPlugin: |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 56 | type: string |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 57 | example: my-dmi-plugin |
DylanB95EST | d042fcd | 2022-02-21 12:57:08 +0000 | [diff] [blame] | 58 | default: "" |
JosephKeenan | 20b4f9c | 2021-11-23 12:18:28 +0000 | [diff] [blame] | 59 | dmiDataPlugin: |
| 60 | type: string |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 61 | example: my-dmi-data-plugin |
DylanB95EST | d042fcd | 2022-02-21 12:57:08 +0000 | [diff] [blame] | 62 | default: "" |
JosephKeenan | 20b4f9c | 2021-11-23 12:18:28 +0000 | [diff] [blame] | 63 | dmiModelPlugin: |
| 64 | type: string |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 65 | example: my-dmi-model-plugin |
DylanB95EST | d042fcd | 2022-02-21 12:57:08 +0000 | [diff] [blame] | 66 | default: "" |
DylanB95EST | 4f4178c | 2021-07-02 13:30:42 +0100 | [diff] [blame] | 67 | createdCmHandles: |
| 68 | type: array |
| 69 | items: |
DylanB95EST | e557338 | 2022-01-27 17:12:52 +0000 | [diff] [blame] | 70 | $ref: '#/components/schemas/RestInputCmHandle' |
DylanB95EST | 31facc8 | 2021-08-18 17:12:25 +0100 | [diff] [blame] | 71 | updatedCmHandles: |
| 72 | type: array |
| 73 | items: |
DylanB95EST | e557338 | 2022-01-27 17:12:52 +0000 | [diff] [blame] | 74 | $ref: '#/components/schemas/RestInputCmHandle' |
Renu Kumari | 2c96317 | 2022-03-10 16:02:55 -0500 | [diff] [blame] | 75 | 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: '~' |
DylanB95EST | e999b02 | 2021-08-24 16:56:40 +0100 | [diff] [blame] | 85 | removedCmHandles: |
| 86 | type: array |
| 87 | items: |
| 88 | type: string |
Renu Kumari | 2c96317 | 2022-03-10 16:02:55 -0500 | [diff] [blame] | 89 | example: [my-cm-handle1, my-cm-handle2, my-cm-handle3] |
Renu Kumari | b14f04b | 2022-03-28 10:22:41 -0400 | [diff] [blame] | 90 | DmiPluginRegistrationErrorResponse: |
| 91 | type: object |
| 92 | properties: |
| 93 | failedCreatedCmHandles: |
| 94 | type: array |
| 95 | items: |
| 96 | $ref: '#/components/schemas/CmHandlerRegistrationErrorResponse' |
Renu Kumari | b14f04b | 2022-03-28 10:22:41 -0400 | [diff] [blame] | 97 | failedUpdatedCmHandles: |
| 98 | type: array |
| 99 | items: |
| 100 | $ref: '#/components/schemas/CmHandlerRegistrationErrorResponse' |
Renu Kumari | b14f04b | 2022-03-28 10:22:41 -0400 | [diff] [blame] | 101 | failedRemovedCmHandles: |
| 102 | type: array |
| 103 | items: |
| 104 | $ref: '#/components/schemas/CmHandlerRegistrationErrorResponse' |
Renu Kumari | b14f04b | 2022-03-28 10:22:41 -0400 | [diff] [blame] | 105 | CmHandlerRegistrationErrorResponse: |
| 106 | type: object |
| 107 | properties: |
| 108 | cmHandle: |
| 109 | type: string |
| 110 | example: my-cm-handle |
| 111 | errorCode: |
| 112 | type: string |
Renu Kumari | 952603c | 2022-04-18 12:39:33 -0400 | [diff] [blame] | 113 | example: '00' |
Renu Kumari | b14f04b | 2022-03-28 10:22:41 -0400 | [diff] [blame] | 114 | errorText: |
| 115 | type: string |
Renu Kumari | 952603c | 2022-04-18 12:39:33 -0400 | [diff] [blame] | 116 | example: 'Unknown error. <error-details>' |
DylanB95EST | 4f4178c | 2021-07-02 13:30:42 +0100 | [diff] [blame] | 117 | |
DylanB95EST | e557338 | 2022-01-27 17:12:52 +0000 | [diff] [blame] | 118 | RestInputCmHandle: |
DylanB95EST | 4f4178c | 2021-07-02 13:30:42 +0100 | [diff] [blame] | 119 | required: |
| 120 | - cmHandle |
| 121 | type: object |
| 122 | properties: |
| 123 | cmHandle: |
| 124 | type: string |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 125 | example: my-cm-handle |
DylanB95EST | 4f4178c | 2021-07-02 13:30:42 +0100 | [diff] [blame] | 126 | cmHandleProperties: |
DylanB95EST | 63132ce | 2021-12-14 16:34:38 +0000 | [diff] [blame] | 127 | $ref: '#/components/schemas/RestCmHandleProperties' |
| 128 | publicCmHandleProperties: |
| 129 | $ref: '#/components/schemas/RestCmHandleProperties' |
| 130 | RestCmHandleProperties: |
DylanB95EST | 4f4178c | 2021-07-02 13:30:42 +0100 | [diff] [blame] | 131 | type: object |
| 132 | additionalProperties: |
| 133 | type: string |
DylanB95EST | 63132ce | 2021-12-14 16:34:38 +0000 | [diff] [blame] | 134 | example: my-property |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 135 | |
niamhcore | 66017b4 | 2021-10-19 11:07:02 +0100 | [diff] [blame] | 136 | Conditions: |
| 137 | type: object |
| 138 | properties: |
| 139 | conditions: |
| 140 | $ref: '#/components/schemas/ConditionsData' |
| 141 | ConditionsData: |
| 142 | type: array |
| 143 | items: |
| 144 | type: object |
| 145 | $ref: '#/components/schemas/ConditionProperties' |
| 146 | ConditionProperties: |
| 147 | properties: |
| 148 | name: |
| 149 | type: string |
| 150 | example: hasAllModules |
| 151 | conditionParameters: |
niamhcore | b0d9307 | 2021-10-28 13:39:24 +0100 | [diff] [blame] | 152 | $ref: '#/components/schemas/ModuleNamesAsJsonArray' |
| 153 | ModuleNamesAsJsonArray: |
niamhcore | 66017b4 | 2021-10-19 11:07:02 +0100 | [diff] [blame] | 154 | type: array |
| 155 | items: |
| 156 | type: object |
niamhcore | b0d9307 | 2021-10-28 13:39:24 +0100 | [diff] [blame] | 157 | $ref: '#/components/schemas/ModuleNameAsJsonObject' |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 158 | example: [my-module-1, my-module-2, my-module-3] |
niamhcore | b0d9307 | 2021-10-28 13:39:24 +0100 | [diff] [blame] | 159 | ModuleNameAsJsonObject: |
niamhcore | 66017b4 | 2021-10-19 11:07:02 +0100 | [diff] [blame] | 160 | properties: |
| 161 | moduleName: |
| 162 | type: string |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 163 | example: my-module |
niamhcore | 66017b4 | 2021-10-19 11:07:02 +0100 | [diff] [blame] | 164 | |
| 165 | #Response Schemas |
| 166 | CmHandles: |
| 167 | type: object |
| 168 | properties: |
| 169 | cmHandles: |
| 170 | $ref: '#/components/schemas/CmHandleProperties' |
| 171 | CmHandleProperties: |
| 172 | type: array |
| 173 | items: |
| 174 | type: object |
| 175 | $ref: '#/components/schemas/CmHandleProperty' |
| 176 | CmHandleProperty: |
| 177 | properties: |
| 178 | cmHandleId: |
| 179 | type: string |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 180 | example: my-cm-handle-id |
| 181 | |
lukegleeson | d5bda88 | 2022-03-02 14:32:47 +0000 | [diff] [blame] | 182 | RestModuleReference: |
puthuparambil.aditya | d000733 | 2021-12-08 18:53:39 +0000 | [diff] [blame] | 183 | type: object |
| 184 | title: Module reference details |
| 185 | properties: |
| 186 | moduleName: |
| 187 | type: string |
| 188 | example: my-module-name |
| 189 | revision: |
| 190 | type: string |
| 191 | example: my-module-revision |
| 192 | |
JosephKeenan | deac477 | 2022-03-28 12:26:07 +0100 | [diff] [blame] | 193 | CmHandleQueryRestParameters: |
| 194 | type: object |
| 195 | title: Cm Handle query parameters for executing cm handle search |
| 196 | properties: |
| 197 | publicCmHandleProperties: |
| 198 | type: object |
| 199 | additionalProperties: |
| 200 | type: string |
| 201 | example: Book Type |
| 202 | |
DylanB95EST | e557338 | 2022-01-27 17:12:52 +0000 | [diff] [blame] | 203 | RestOutputCmHandle: |
| 204 | type: object |
| 205 | title: CM handle Details |
| 206 | properties: |
| 207 | cmHandle: |
| 208 | type: string |
| 209 | example: my-cm-handle1 |
| 210 | publicCmHandleProperties: |
| 211 | $ref: '#/components/schemas/CmHandlePublicProperties' |
| 212 | CmHandlePublicProperties: |
| 213 | type: array |
| 214 | items: |
| 215 | type: object |
| 216 | additionalProperties: |
| 217 | type: string |
| 218 | example: Book Type |
| 219 | |
lukegleeson | bed18fd | 2022-05-06 12:02:42 +0100 | [diff] [blame] | 220 | RestOutputCmHandlePublicProperties: |
| 221 | type: object |
| 222 | properties: |
| 223 | publicCmHandleProperties: |
| 224 | $ref: '#/components/schemas/CmHandlePublicProperties' |
| 225 | |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 226 | examples: |
| 227 | dataSampleRequest: |
| 228 | summary: Sample request |
| 229 | description: Sample request body |
| 230 | value: |
| 231 | test:bookstore: |
| 232 | bookstore-name: Chapters |
| 233 | categories: |
| 234 | - code: '01' |
| 235 | name: SciFi |
| 236 | books: |
| 237 | - authors: |
| 238 | - Iain M. Banks |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 239 | - Ursula K. Le Guin |
| 240 | - code: '02' |
| 241 | name: kids |
| 242 | books: |
| 243 | - authors: |
| 244 | - Philip Pullman |
| 245 | |
tragait | ecd7f5e | 2022-01-13 13:15:14 +0000 | [diff] [blame] | 246 | dataSamplePatchRequest: |
| 247 | summary: Sample patch request |
| 248 | description: Sample patch request body |
| 249 | value: |
| 250 | ietf-restconf:yang-patch: |
| 251 | patch-id: patch-1 |
| 252 | edit: |
| 253 | - edit-id: edit1 |
| 254 | operation: merge |
| 255 | target: / |
| 256 | value: |
| 257 | test:bookstore: |
| 258 | bookstore-name: Chapters |
| 259 | categories: |
| 260 | - code: '01' |
| 261 | name: Science |
| 262 | books: |
| 263 | - authors: |
| 264 | - Author1 |
| 265 | - Author2 |
| 266 | - code: '02' |
| 267 | name: Arts |
| 268 | books: |
| 269 | - authors: |
| 270 | - Author3 |
| 271 | - edit-id: edit2 |
| 272 | operation: merge |
| 273 | target: / |
| 274 | value: |
| 275 | test:bookstore: |
| 276 | bookstore-name: Novels |
| 277 | categories: |
| 278 | - code: '03' |
| 279 | name: History |
| 280 | books: |
| 281 | - authors: |
| 282 | - Iain M. Banks |
| 283 | - Ursula K. Le Guin |
| 284 | - code: '04' |
| 285 | name: Fiction |
| 286 | books: |
| 287 | - authors: |
| 288 | - Philip Pullman |
| 289 | |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 290 | dataSampleResponse: |
| 291 | summary: Sample response |
| 292 | description: Sample response for selecting 'sample 1'. |
| 293 | value: |
| 294 | bookstore: |
| 295 | categories: |
| 296 | - code: '01' |
| 297 | books: |
puthuparambil.aditya | d000733 | 2021-12-08 18:53:39 +0000 | [diff] [blame] | 298 | - authors: |
| 299 | - Iain M. Banks |
| 300 | - Ursula K. Le Guin |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 301 | name: SciFi |
| 302 | - code: '02' |
| 303 | books: |
puthuparambil.aditya | d000733 | 2021-12-08 18:53:39 +0000 | [diff] [blame] | 304 | - authors: |
| 305 | - Philip Pullman |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 306 | name: kids |
niamhcore | 66017b4 | 2021-10-19 11:07:02 +0100 | [diff] [blame] | 307 | |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 308 | parameters: |
Hanif Kukkalli | 83e318f | 2021-02-23 12:26:39 +0100 | [diff] [blame] | 309 | cmHandleInPath: |
| 310 | name: cm-handle |
| 311 | in: path |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 312 | description: The identifier for a network function, network element, subnetwork or any other cm object by managed Network CM Proxy |
Hanif Kukkalli | 83e318f | 2021-02-23 12:26:39 +0100 | [diff] [blame] | 313 | required: true |
| 314 | schema: |
| 315 | type: string |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 316 | example: my-cm-handle |
Hanif Kukkalli | 83e318f | 2021-02-23 12:26:39 +0100 | [diff] [blame] | 317 | xpathInQuery: |
| 318 | name: xpath |
| 319 | in: query |
| 320 | description: xpath |
| 321 | required: false |
| 322 | schema: |
| 323 | type: string |
| 324 | default: / |
Ruslan Kashapov | 1baf48d | 2021-05-07 10:46:27 +0300 | [diff] [blame] | 325 | requiredXpathInQuery: |
| 326 | name: xpath |
| 327 | in: query |
| 328 | description: xpath |
| 329 | required: true |
| 330 | schema: |
| 331 | type: string |
Hanif Kukkalli | 83e318f | 2021-02-23 12:26:39 +0100 | [diff] [blame] | 332 | includeDescendantsOptionInQuery: |
| 333 | name: include-descendants |
| 334 | in: query |
| 335 | description: include-descendants |
| 336 | required: false |
| 337 | schema: |
| 338 | type: boolean |
| 339 | default: false |
niamhcore | b5d573b | 2021-02-26 10:13:48 +0000 | [diff] [blame] | 340 | cpsPathInQuery: |
| 341 | name: cps-path |
| 342 | in: query |
| 343 | description: cps-path |
| 344 | required: false |
| 345 | schema: |
| 346 | type: string |
| 347 | default: / |
niamhcore | fd2e6dd | 2021-09-29 16:43:35 +0100 | [diff] [blame] | 348 | resourceIdentifierInQuery: |
tragait | c328551 | 2021-08-16 15:12:36 +0100 | [diff] [blame] | 349 | name: resourceIdentifier |
niamhcore | fd2e6dd | 2021-09-29 16:43:35 +0100 | [diff] [blame] | 350 | in: query |
| 351 | 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. |
tragait | c328551 | 2021-08-16 15:12:36 +0100 | [diff] [blame] | 352 | required: true |
niamhcore | fd2e6dd | 2021-09-29 16:43:35 +0100 | [diff] [blame] | 353 | allowReserved: true |
tragait | c328551 | 2021-08-16 15:12:36 +0100 | [diff] [blame] | 354 | schema: |
| 355 | type: string |
niamhcore | fd2e6dd | 2021-09-29 16:43:35 +0100 | [diff] [blame] | 356 | examples: |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 357 | sample 1: |
niamhcore | fd2e6dd | 2021-09-29 16:43:35 +0100 | [diff] [blame] | 358 | value: |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 359 | resourceIdentifier: \shops\bookstore |
| 360 | sample 2: |
niamhcore | fd2e6dd | 2021-09-29 16:43:35 +0100 | [diff] [blame] | 361 | value: |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 362 | resourceIdentifier: \shops\bookstore\categories[@code=1] |
| 363 | sample 3: |
niamhcore | fd2e6dd | 2021-09-29 16:43:35 +0100 | [diff] [blame] | 364 | value: |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 365 | resourceIdentifier: parent=shops,child=bookstore |
tragait | abdff1b | 2021-10-06 11:04:18 +0100 | [diff] [blame] | 366 | optionsParamInQuery: |
| 367 | name: options |
tragait | c328551 | 2021-08-16 15:12:36 +0100 | [diff] [blame] | 368 | in: query |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 369 | 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. |
tragait | c328551 | 2021-08-16 15:12:36 +0100 | [diff] [blame] | 370 | required: false |
| 371 | schema: |
| 372 | type: string |
tragait | abdff1b | 2021-10-06 11:04:18 +0100 | [diff] [blame] | 373 | allowReserved: true |
| 374 | examples: |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 375 | sample 1: |
tragait | abdff1b | 2021-10-06 11:04:18 +0100 | [diff] [blame] | 376 | value: |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 377 | options: (depth=3) |
| 378 | sample 2: |
tragait | abdff1b | 2021-10-06 11:04:18 +0100 | [diff] [blame] | 379 | value: |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 380 | options: (fields=book) |
| 381 | sample 3: |
tragait | abdff1b | 2021-10-06 11:04:18 +0100 | [diff] [blame] | 382 | value: |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 383 | options: (depth=2,fields=book/authors) |
sourabh_sourabh | 1f2e66e | 2022-02-16 21:53:41 +0530 | [diff] [blame] | 384 | topicParamInQuery: |
| 385 | name: topic |
| 386 | in: query |
| 387 | description: topic parameter in query. |
| 388 | required: false |
| 389 | schema: |
| 390 | type: string |
| 391 | allowReserved: true |
| 392 | examples: |
| 393 | sample 1: |
| 394 | value: |
| 395 | topic: my-topic-name |
tragait | c584bf2 | 2021-08-20 15:45:58 +0100 | [diff] [blame] | 396 | contentParamInHeader: |
| 397 | name: Content-Type |
| 398 | in: header |
| 399 | required: false |
| 400 | description: Content parameter for request, if content parameter is null, default value is application/json. |
| 401 | schema: |
| 402 | type: string |
| 403 | default: application/json |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 404 | example: application/yang-data+json |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 405 | |
| 406 | responses: |
| 407 | NotFound: |
| 408 | description: The specified resource was not found |
| 409 | content: |
| 410 | application/json: |
| 411 | schema: |
| 412 | $ref: '#/components/schemas/ErrorMessage' |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 413 | example: |
| 414 | status: 400 |
| 415 | message: Not found error message |
| 416 | details: Not found error details |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 417 | Unauthorized: |
| 418 | description: Unauthorized |
| 419 | content: |
| 420 | application/json: |
| 421 | schema: |
| 422 | $ref: '#/components/schemas/ErrorMessage' |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 423 | example: |
| 424 | status: 401 |
| 425 | message: Unauthorized error message |
| 426 | details: Unauthorized error details |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 427 | Forbidden: |
| 428 | description: Forbidden |
| 429 | content: |
| 430 | application/json: |
| 431 | schema: |
| 432 | $ref: '#/components/schemas/ErrorMessage' |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 433 | example: |
| 434 | status: 403 |
| 435 | message: Forbidden error message |
| 436 | details: Forbidden error details |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 437 | BadRequest: |
| 438 | description: Bad Request |
| 439 | content: |
| 440 | application/json: |
| 441 | schema: |
| 442 | $ref: '#/components/schemas/ErrorMessage' |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 443 | example: |
| 444 | status: 400 BAD_REQUEST |
| 445 | message: Bad request error message |
| 446 | details: Bad request error details |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 447 | Conflict: |
| 448 | description: Conflict |
| 449 | content: |
| 450 | application/json: |
| 451 | schema: |
| 452 | $ref: '#/components/schemas/ErrorMessage' |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 453 | example: |
| 454 | status: 409 CONFLICT |
| 455 | message: Conflict error message |
| 456 | details: Conflict error details |
Hanif Kukkalli | 83e318f | 2021-02-23 12:26:39 +0100 | [diff] [blame] | 457 | NotImplemented: |
| 458 | description: The given path has not been implemented |
| 459 | content: |
| 460 | application/json: |
| 461 | schema: |
| 462 | $ref: '#/components/schemas/ErrorMessage' |
emaclee | 844cab3 | 2021-12-01 09:42:37 +0000 | [diff] [blame] | 463 | example: |
| 464 | status: 501 |
| 465 | message: Not implemented error message |
| 466 | details: Not implemented error details |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 467 | Ok: |
| 468 | description: OK |
| 469 | content: |
| 470 | application/json: |
| 471 | schema: |
| 472 | type: object |
| 473 | Created: |
| 474 | description: Created |
DylanB95EST | 4f4178c | 2021-07-02 13:30:42 +0100 | [diff] [blame] | 475 | content: {} |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 476 | NoContent: |
| 477 | description: No Content |
| 478 | content: {} |
JosephKeenan | e0873dd | 2022-01-28 11:22:22 +0000 | [diff] [blame] | 479 | InternalServerError: |
| 480 | description: Internal Server Error |
| 481 | content: |
| 482 | application/json: |
| 483 | schema: |
| 484 | $ref: "#/components/schemas/ErrorMessage" |
| 485 | example: |
| 486 | status: 500 |
| 487 | message: Internal Server Error |
| 488 | details: Internal Server Error occurred |
mpriyank | 93afc1e | 2022-03-28 15:47:47 +0530 | [diff] [blame] | 489 | BadGateway: |
| 490 | description: Bad Gateway |
| 491 | content: |
| 492 | application/json: |
| 493 | schema: |
| 494 | $ref: "#/components/schemas/DmiErrorMessage" |
| 495 | example: |
| 496 | message: "Bad Gateway Error Message NCMP" |
| 497 | dmi-response: |
| 498 | http-code: 400 |
| 499 | body: "Bad Request" |