Skip to content
Snippets Groups Projects
Verified Commit 129342a9 authored by Martin Weise's avatar Martin Weise
Browse files

Added upload service

parent 93f67e24
Branches
No related tags found
No related merge requests found
...@@ -25,6 +25,7 @@ swagger/api-semantics/ ...@@ -25,6 +25,7 @@ swagger/api-semantics/
swagger/api-data/ swagger/api-data/
swagger/api-mirror/ swagger/api-mirror/
swagger/api-user/ swagger/api-user/
swagger/api-upload/
swagger/api/ swagger/api/
swagger/**/*.png swagger/**/*.png
swagger/**/*.css swagger/**/*.css
......
.PHONY: clean docs .PHONY: clean docs
TAG ?= latest TAG ?= latest
BASE_URL ?= / BASE_URL ?= ""
all: build all: build
......
openapi: 3.0.1
info:
title: Database Repository Upload Service API
description: Service that manages the uploads
contact:
name: Prof. Andreas Rauber
email: andreas.rauber@tuwien.ac.at
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
version: 1.3.0
externalDocs:
description: Sourcecode Documentation
url: https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services
servers:
- url: http://localhost:1080
description: Generated server url
- url: https://test.dbrepo.tuwien.ac.at
description: Sandbox
paths:
/api/upload/files:
post:
tags:
- upload-endpoint
summary: Uploads a file
operationId: upload
responses:
"201":
description: "Successfully uploaded a file"
security: {}
\ No newline at end of file
openapi: 3.0.1
info:
title: Database Repository Upload Service API
description: Service that manages the uploads
contact:
name: Prof. Andreas Rauber
email: andreas.rauber@tuwien.ac.at
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
version: 1.3.0
externalDocs:
description: Sourcecode Documentation
url: https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services
servers:
- url: http://localhost:1080
description: Generated server url
- url: https://test.dbrepo.tuwien.ac.at
description: Sandbox
paths:
/api/upload/files:
post:
tags:
- upload-endpoint
summary: Uploads a file
operationId: upload
responses:
"201":
description: "Successfully uploaded a file"
security: {}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment