...
- submissionID
- eTag - optimistic concurrency flag; changes with each update
- status - enum describing the state of the Submission, one of: OPEN, CLOSED, SCORED, INVALID
- score - numerical score for this Submission (longdouble between 0 and 1)
REST API
Competition
URL | HTTP Type | Description |
---|---|---|
/competition | POST | Create a new Competition |
/competition/{competitionId} | GET | Get a Competition |
/competition/{competitionId} | PUT | Update a Competition |
/competition/{competitionId} | DELETE | Delete a Competition |
/competition | GET | Batch Get Competitions (Paginated) |
/competition/count | GET | Get the number of Competitions |
/competition/name/{name} | GET | Find a Competition by name |
...