-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload.json
More file actions
1 lines (1 loc) · 1.33 KB
/
upload.json
File metadata and controls
1 lines (1 loc) · 1.33 KB
1
{"openapi":"3.1.0","info":{"title":"Codify Upload API","description":"Codify Upload API 명세서","version":"1.0.0"},"servers":[{"url":"/"}],"paths":{"/api/upload":{"post":{"tags":["upload-controller"],"operationId":"save","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SubmissionDto"}}},"required":true},"responses":{"200":{"description":"OK"}}}},"/api/upload/presigned-url":{"get":{"tags":["s-3-controller"],"operationId":"getPostS3Url","parameters":[{"name":"USER-UUID","in":"header","required":true,"schema":{"type":"string"}},{"name":"filename","in":"query","required":true,"schema":{"type":"string"}},{"name":"assignmentId","in":"query","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/GetS3UrlDto"}}}}}}}},"components":{"schemas":{"SubmissionDto":{"type":"object","properties":{"assignmentId":{"type":"integer","format":"int64"},"fileName":{"type":"string"},"week":{"type":"integer","format":"int64"},"submissionDate":{"type":"string","format":"date-time"},"studentId":{"type":"integer","format":"int64"},"studentName":{"type":"string"},"s3Key":{"type":"string"},"isLastFile":{"type":"boolean"}}},"GetS3UrlDto":{"type":"object","properties":{"preSignedUrl":{"type":"string"},"key":{"type":"string"}}}}}}