NOTE: The Competition services are still under development and are not yet available on Synapse.
The Competition API is designed to support open-access Synapse data analysis and modeling challenges. This framework provides tools for administrators to create new competitions in Synapse and manage the users and data objects associated with a competition. A competition owner can control access to competition resources and registration, as well as track user participation and evaluate submitted models. This API will support user-facing interfaces to monitor competitions including activity notifications and on-demand scoring and leaderboarding.
Synapse Competitions are constructed around three primary objects: Competition, Participant, and Submission. These objects are defined by eponymous JSON schema files in the Synapse Repository Services.
Competition
Object representing a Synapse Competition
status - enum describing the state of the Competition, one of: PLANNED, OPEN, CLOSED, COMPLETED
Participant
Immutable object to represent a single user participating in a Competition. Competitions can have many users, and users can participate in many Competitions.
Submission
Immutable object to represent an entity submission to a Competition. A participant can create many Submissions for a given Competition.
SubmissionStatus
Object to track the status and score of a specific Submission. This object is generated at the time of submission, and can be modified by Competition administrators.
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 |
Participant
URL | HTTP Type | Description |
---|---|---|
/competition/{competitionId}/participant | POST | Join as a Participant in a Competition |
/competition/{competitionId}/participant/{principalId} | POST | Add another user as a Participant in a Competition. Requires admin rights on the Competition. |
/competition/{competitionId}/participant/{principalId} | GET | Get a Participant |
/competition/{competitionId}/participant/{principalId} | DELETE | Delete a Participant |
/competition/{competitionId}/participant/ | GET | Batch get Participants for a given Competition (Paginated) |
/competition/{competitionId}/participant/count | GET | Get the number of Participants in a given Competition |
Submission
URL | HTTP Type | Description |
---|---|---|
/competition/submission | POST | Create a new Submission. |
/competition/submission/{submissionId} | GET | Get a Submission |
/competition/submission/{submissionId}/status | GET | Get the status of a Submission |
/competition/submission/{submissionId}/status | PUT | Update the status of a Submission. |
/competition/submission/{submissionId} | DELETE | Delete a Submission. Requires admin rights on the Competition. |
/competition/{compId}/submission | GET | Batch get Submissions for a given Competition (Paginated). |
/competition/{compId}/submission/count | GET | Get the number of Submissions for a given Competition |
Create a Competition
curl -i -k -H sessionToken:xxxxxxxxxxxxxxxx -H Accept:application/json -H Content-Type:application/json -d '{ "status":"PLANNED", "description":"description", "name":"my first competition", "contentSource":"contentSource" }' https://repo-staging.prod.sagebase.org/repo/v1/competition |
Get a Competition
curl -i -k -H sessionToken:xxxxxxxxxxxxxxxx -H Accept:application/json 'https://repo-staging.prod.sagebase.org/repo/v1/competition/1588317' |
Update a Competition
curl -i -k -H sessionToken:xxxxxxxxxxxxxxxx -H Accept:application/json -H Content-Type:application/json -X PUT -d '{ "id":"1588317", "createdOn":"2013-01-16T16:30:56.727Z", "etag":"eed22bca-d88e-4b4a-8b1a-35dca7b7b8db", "status":"OPEN", "description":"description", "ownerId":"1588313", "name":"my first competition", "contentSource":"contentSource" }' https://repo-staging.prod.sagebase.org/repo/v1/competition/1588317 |
Delete a Competition
curl -i -k -H sessionToken:okxkSRyl3v0iIf0eutQfXA00 -H Accept:application/json -X DELETE 'https://repo-staging.prod.sagebase.org/repo/v1/competition/1588317' |
Create a Participant
curl -i -k -H sessionToken:xxxxxxxxxxxxxxxx -H Accept:application/json -H Content-Type:application/json -d '{ "ownerId":"123456" }' https://repo-staging.prod.sagebase.org/repo/v1/competition/987654/participant |
Delete a Participant
curl -i -k -H sessionToken:xxxxxxxxxxxxxxxx -H Accept:application/json -X DELETE 'https://repo-staging.prod.sagebase.org/repo/v1/competition/1588317/participant/1588313' |
Create a Submission
curl -i -k -H sessionToken:xxxxxxxxxxxxxxxx -H Accept:application/json -H Content-Type:application/json -d '{ "competitionId":"1588317", "entityId":"1588315", "versionNumber":"1", "name":"some-name" }' https://repo-staging.prod.sagebase.org/repo/v1/competition/submission |
Update a SubmissionStatus
curl -i -k -H sessionToken:xxxxxxxxxxxxxxxx -H Accept:application/json -H Content-Type:application/json -X PUT -d '{ "id":"1589914", "modifiedOn":"2013-01-18T21:43:18.897Z", "etag":"13c88b1a-662c-4dd6-bb56-3976566516f7", "status":"SCORED", "score":0.42 }' https://repo-staging.prod.sagebase.org/repo/v1/competition/submission/1589914/status |
Delete a Submission
curl -i -k -H sessionToken:dPF2TqGUq121PR36AwJhXw00 -H Accept:application/json -X DELETE 'https://repo-staging.prod.sagebase.org/repo/v1/competition/submission/1589912' |
The following is a proposed workflow for interacting with the Competition Services. Please note that some components are still under development.
User Perspective
Owner/Admin Perspective
The following features are planned but not yet implemented.