diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2021-01-06 11:14:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-01-06 11:14:31 +0000 |
commit | 69fc5b35d884afaea6cd4d96734a4f7607723997 (patch) | |
tree | 89142e964ed1652d44537cb88e196bbfb39724ca /cps-rest/docs/api/swagger/openapi.yml | |
parent | b41740d115b403e1790ec854c2aacf8b114ea6d0 (diff) | |
parent | acfb2078d510f5cec7b6ce57c03ba42663b8f3ee (diff) |
Merge "Create schema set REST API and service level"
Diffstat (limited to 'cps-rest/docs/api/swagger/openapi.yml')
-rwxr-xr-x | cps-rest/docs/api/swagger/openapi.yml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/cps-rest/docs/api/swagger/openapi.yml b/cps-rest/docs/api/swagger/openapi.yml index 587a37606c..d76ec5ecd5 100755 --- a/cps-rest/docs/api/swagger/openapi.yml +++ b/cps-rest/docs/api/swagger/openapi.yml @@ -38,6 +38,47 @@ paths: 403: description: Forbidden content: {} + /v1/dataspaces/{dataspace-name}/schema-sets: + post: + tags: + - cps-admin + summary: Create a new schema set in the given dataspace + operationId: createSchemaSet + parameters: + - name: dataspace-name + in: path + description: dataspace-name + required: true + schema: + type: string + requestBody: + required: true + content: + multipart/form-data: + schema: + required: + - schemaSetName + - multipartFile + properties: + schemaSetName: + type: string + multipartFile: + type: string + description: multipartFile + format: binary + responses: + 201: + description: Created + content: + application/json: + schema: + type: string + 401: + description: Unauthorized + content: { } + 403: + description: Forbidden + content: { } /v1/dataspaces/{dataspace-name}/anchors: get: tags: |