-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
371 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
# get /formatcheck | ||
|
||
> Check PDF format for a document | ||
> Check PDF format | ||
|
||
# post /upload | ||
|
||
> Upload support for large documents | ||
> Upload file | ||
This endpoint uploads documents to the server. It is intended for large | ||
documents, and can upload a file over multiple requests, each containing a | ||
slice of the data. | ||
|
||
An upload is identified by a `token`. To start an upload, set `start=1` and do | ||
not include a `token` parameter. All subsequent requests must include the | ||
`token` returned by the server in response to the `start=1` request. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
apis: | ||
core@v1: | ||
root: ../../etc/openapi.json | ||
|
||
theme: | ||
openapi: | ||
schemaExpansionLevel: 3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
# post /assign | ||
|
||
> Perform bulk assignments | ||
> Bulk assignments | ||
|
||
# get /{p}/decision | ||
|
||
> Return decision for submission | ||
> Retrieve submission decision | ||
|
||
# post /{p}/decision | ||
|
||
> Change decision for submission | ||
> Change submission decision | ||
|
||
# get /{p}/lead | ||
|
||
> Return discussion lead for submission | ||
> Retrieve submission discussion lead | ||
|
||
# post /{p}/lead | ||
|
||
> Change decision lead for submission | ||
> Change submission discussion lead | ||
|
||
# get /{p}/manager | ||
|
||
> Return submission administrator for submission | ||
> Retrieve submission administrator | ||
|
||
# post /{p}/manager | ||
|
||
> Change submission administrator for submission | ||
> Change submission administrator | ||
|
||
# post /{p}/reviewround | ||
|
||
> Change round for review | ||
> Change review round | ||
|
||
# get /{p}/shepherd | ||
|
||
> Return shepherd for submission | ||
> Retrieve submission shepherd | ||
|
||
# post /{p}/shepherd | ||
|
||
> Change shepherd for submission | ||
> Change submission shepherd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
# get /{p}/tags | ||
|
||
> Return tags for submission | ||
> Retrieve submission tags | ||
|
||
# post /tags | ||
|
||
> Change tags for submission(s) | ||
> Change submission tags | ||
|
||
# get /alltags | ||
|
||
> Return all visible tags | ||
> Retrieve all visible tags | ||
|
||
# get /taganno | ||
|
||
> Return annotations for tag | ||
> Retrieve tag annotations | ||
|
||
# post /taganno | ||
|
||
> Change annotations for tag | ||
> Change tag annotations | ||
|
||
# get /{p}/tagmessages | ||
|
||
> Return messages related to editing tags for submission | ||
> Retrieve tag edit messages | ||
|
||
# get /{p}/votereport | ||
|
||
> Return vote analysis for submission voting tag | ||
> Retrieve vote analysis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.