shivasubedi | 8df61a9 | 2021-06-16 14:43:18 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
| 2 | # Copyright (c) 2021 Bell Canada. |
| 3 | # ================================================================================ |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
Renu Kumari | 4d52001 | 2021-08-30 11:50:43 -0400 | [diff] [blame] | 15 | # |
| 16 | # SPDX-License-Identifier: Apache-2.0 |
shivasubedi | 8df61a9 | 2021-06-16 14:43:18 +0100 | [diff] [blame] | 17 | # ============LICENSE_END========================================================= |
| 18 | |
Rishi.Chail | dacc663 | 2021-01-27 04:27:34 +0000 | [diff] [blame] | 19 | dataspaces: |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 20 | post: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 21 | description: Create a new dataspace |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 22 | tags: |
| 23 | - cps-admin |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 24 | summary: Create a dataspace |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 25 | operationId: createDataspace |
| 26 | parameters: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 27 | - $ref: 'components.yml#/components/parameters/dataspaceNameInQuery' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 28 | responses: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 29 | '201': |
| 30 | $ref: 'components.yml#/components/responses/Created' |
| 31 | '400': |
| 32 | $ref: 'components.yml#/components/responses/BadRequest' |
| 33 | '401': |
| 34 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 35 | '403': |
| 36 | $ref: 'components.yml#/components/responses/Forbidden' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 37 | |
niamhcore | 09c6b6e | 2021-11-22 11:44:38 +0000 | [diff] [blame^] | 38 | delete: |
| 39 | description: Delete a dataspace |
| 40 | tags: |
| 41 | - cps-admin |
| 42 | summary: Delete a dataspace |
| 43 | operationId: deleteDataspace |
| 44 | parameters: |
| 45 | - $ref: 'components.yml#/components/parameters/dataspaceNameInQuery' |
| 46 | responses: |
| 47 | '204': |
| 48 | $ref: 'components.yml#/components/responses/NoContent' |
| 49 | '400': |
| 50 | $ref: 'components.yml#/components/responses/BadRequest' |
| 51 | '401': |
| 52 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 53 | '403': |
| 54 | $ref: 'components.yml#/components/responses/Forbidden' |
| 55 | '409': |
| 56 | $ref: 'components.yml#/components/responses/Conflict' |
| 57 | |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 58 | schemaSet: |
| 59 | post: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 60 | description: Create a new schema set in the given dataspace |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 61 | tags: |
| 62 | - cps-admin |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 63 | summary: Create a schema set |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 64 | operationId: createSchemaSet |
| 65 | parameters: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 66 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 67 | - $ref: 'components.yml#/components/parameters/schemaSetNameInQuery' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 68 | requestBody: |
| 69 | required: true |
| 70 | content: |
| 71 | multipart/form-data: |
| 72 | schema: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 73 | $ref: 'components.yml#/components/schemas/MultipartFile' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 74 | |
| 75 | responses: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 76 | '201': |
| 77 | $ref: 'components.yml#/components/responses/Created' |
| 78 | '400': |
| 79 | $ref: 'components.yml#/components/responses/BadRequest' |
| 80 | '401': |
| 81 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 82 | '403': |
| 83 | $ref: 'components.yml#/components/responses/Forbidden' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 84 | |
| 85 | schemaSetBySchemaSetName: |
| 86 | get: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 87 | description: Read a schema set given a schema set name and a dataspace |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 88 | tags: |
| 89 | - cps-admin |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 90 | summary: Get a schema set |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 91 | operationId: getSchemaSet |
| 92 | parameters: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 93 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 94 | - $ref: 'components.yml#/components/parameters/schemaSetNameInPath' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 95 | responses: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 96 | '200': |
JosephKeenan | c6865f3 | 2021-06-08 13:16:37 +0100 | [diff] [blame] | 97 | description: OK |
| 98 | content: |
| 99 | application/json: |
| 100 | schema: |
| 101 | $ref: 'components.yml#/components/schemas/SchemaSetDetails' |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 102 | '400': |
| 103 | $ref: 'components.yml#/components/responses/BadRequest' |
| 104 | '401': |
| 105 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 106 | '403': |
| 107 | $ref: 'components.yml#/components/responses/Forbidden' |
| 108 | '404': |
| 109 | $ref: 'components.yml#/components/responses/NotFound' |
| 110 | |
Ruslan Kashapov | dce4e31 | 2021-01-11 15:34:10 +0200 | [diff] [blame] | 111 | delete: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 112 | description: Delete a schema set given a schema set name and a dataspace |
Ruslan Kashapov | dce4e31 | 2021-01-11 15:34:10 +0200 | [diff] [blame] | 113 | tags: |
| 114 | - cps-admin |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 115 | summary: Delete a schema set |
Ruslan Kashapov | dce4e31 | 2021-01-11 15:34:10 +0200 | [diff] [blame] | 116 | operationId: deleteSchemaSet |
| 117 | parameters: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 118 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 119 | - $ref: 'components.yml#/components/parameters/schemaSetNameInPath' |
Ruslan Kashapov | dce4e31 | 2021-01-11 15:34:10 +0200 | [diff] [blame] | 120 | responses: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 121 | '204': |
| 122 | $ref: 'components.yml#/components/responses/NoContent' |
| 123 | '400': |
| 124 | $ref: 'components.yml#/components/responses/BadRequest' |
| 125 | '401': |
| 126 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 127 | '403': |
| 128 | $ref: 'components.yml#/components/responses/Forbidden' |
| 129 | '409': |
| 130 | $ref: 'components.yml#/components/responses/Conflict' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 131 | |
| 132 | anchorsByDataspace: |
| 133 | get: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 134 | description: Read all anchors, given a dataspace |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 135 | tags: |
| 136 | - cps-admin |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 137 | summary: Get anchors |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 138 | operationId: getAnchors |
| 139 | parameters: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 140 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 141 | responses: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 142 | '200': |
JosephKeenan | c6865f3 | 2021-06-08 13:16:37 +0100 | [diff] [blame] | 143 | description: OK |
| 144 | content: |
| 145 | application/json: |
| 146 | schema: |
| 147 | type: array |
| 148 | items: |
| 149 | $ref: 'components.yml#/components/schemas/AnchorDetails' |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 150 | '400': |
| 151 | $ref: 'components.yml#/components/responses/BadRequest' |
| 152 | '401': |
| 153 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 154 | '403': |
| 155 | $ref: 'components.yml#/components/responses/Forbidden' |
| 156 | '404': |
| 157 | $ref: 'components.yml#/components/responses/NotFound' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 158 | |
| 159 | post: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 160 | description: Create a new anchor in the given dataspace |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 161 | tags: |
| 162 | - cps-admin |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 163 | summary: Create an anchor |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 164 | operationId: createAnchor |
| 165 | parameters: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 166 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 167 | - $ref: 'components.yml#/components/parameters/schemaSetNameInQuery' |
| 168 | - $ref: 'components.yml#/components/parameters/anchorNameInQuery' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 169 | responses: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 170 | '201': |
| 171 | $ref: 'components.yml#/components/responses/Created' |
| 172 | '400': |
| 173 | $ref: 'components.yml#/components/responses/BadRequest' |
| 174 | '401': |
| 175 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 176 | '403': |
| 177 | $ref: 'components.yml#/components/responses/Forbidden' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 178 | |
| 179 | anchorByDataspaceAndAnchorName: |
| 180 | get: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 181 | description: Read an anchor given an anchor name and a dataspace |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 182 | tags: |
| 183 | - cps-admin |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 184 | summary: Get an anchor |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 185 | operationId: getAnchor |
| 186 | parameters: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 187 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 188 | - $ref: 'components.yml#/components/parameters/anchorNameInPath' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 189 | responses: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 190 | '200': |
JosephKeenan | c6865f3 | 2021-06-08 13:16:37 +0100 | [diff] [blame] | 191 | description: OK |
| 192 | content: |
| 193 | application/json: |
| 194 | schema: |
| 195 | $ref: 'components.yml#/components/schemas/AnchorDetails' |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 196 | '400': |
| 197 | $ref: 'components.yml#/components/responses/BadRequest' |
| 198 | '401': |
| 199 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 200 | '403': |
| 201 | $ref: 'components.yml#/components/responses/Forbidden' |
| 202 | '404': |
| 203 | $ref: 'components.yml#/components/responses/NotFound' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 204 | |
| 205 | delete: |
Ruslan Kashapov | b20858b | 2021-04-05 14:46:03 +0300 | [diff] [blame] | 206 | description: Delete an anchor given an anchor name and a dataspace |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 207 | tags: |
| 208 | - cps-admin |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 209 | summary: Delete an anchor |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 210 | operationId: deleteAnchor |
| 211 | parameters: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 212 | - $ref: 'components.yml#/components/parameters/dataspaceNameInPath' |
| 213 | - $ref: 'components.yml#/components/parameters/anchorNameInPath' |
puthuparambil.aditya | 001e773 | 2021-01-13 12:06:20 +0000 | [diff] [blame] | 214 | responses: |
Rishi.Chail | 6d13f16 | 2021-01-26 05:58:39 +0000 | [diff] [blame] | 215 | '204': |
| 216 | $ref: 'components.yml#/components/responses/NoContent' |
| 217 | '400': |
| 218 | $ref: 'components.yml#/components/responses/BadRequest' |
| 219 | '401': |
| 220 | $ref: 'components.yml#/components/responses/Unauthorized' |
| 221 | '403': |
JosephKeenan | c6865f3 | 2021-06-08 13:16:37 +0100 | [diff] [blame] | 222 | $ref: 'components.yml#/components/responses/Forbidden' |