-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main'
- Loading branch information
Showing
45 changed files
with
831 additions
and
159 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/jams: | ||
get: | ||
- lang: cURL | ||
source: >- | ||
curl -X GET "https://vrchat.com/api/1/jams?type={string}" | ||
/jams/{jamId}: | ||
get: | ||
- lang: cURL | ||
source: >- | ||
curl -X GET "https://vrchat.com/api/1/jams/{jamId}" | ||
/jams/{jamId}/submissions: | ||
get: | ||
- lang: cURL | ||
source: >- | ||
curl -X GET "https://vrchat.com/api/1/jams/{jamId}/submissions" |
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
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
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 |
---|---|---|
@@ -0,0 +1,69 @@ | ||
openapi: 3.0.3 | ||
info: | ||
title: jams | ||
version: '1.0' | ||
description: Jams Docs Here | ||
paths: | ||
/jams: | ||
get: | ||
summary: Show jams list | ||
tags: | ||
- jams | ||
x-codeSamples: | ||
$ref: "../codeSamples/jams.yaml#/~1jams/get" | ||
responses: | ||
'200': | ||
$ref: ../responses/jams/JamListResponse.yaml | ||
security: | ||
- authCookie: [] | ||
operationId: getJams | ||
description: |- | ||
Lists World Jams or Avatar Jams, both currently running and ones that have ended. | ||
`isActive` is used to select only active or already ended jams. | ||
`type` is used to select only world or avatar jams, and can only take `world` or `avatar`. | ||
`` | ||
parameters: | ||
- schema: | ||
type: string | ||
example: avatar | ||
in: query | ||
name: type | ||
description: 'Only show jams of this type (`avatar` or `world`).' | ||
/jams/{jamId}: | ||
parameters: | ||
- $ref: ../parameters.yaml#/jamId | ||
get: | ||
summary: Show jam information | ||
tags: | ||
- jams | ||
x-codeSamples: | ||
$ref: "../codeSamples/jams.yaml#/~1jams~1{jamId}/get" | ||
responses: | ||
'200': | ||
$ref: ../responses/jams/JamResponse.yaml | ||
'404': | ||
$ref: ../responses/jams/JamNotFoundError.yaml | ||
security: | ||
- authCookie: [] | ||
operationId: getJam | ||
description: Returns a jam. | ||
/jams/{jamId}/submissions: | ||
parameters: | ||
- $ref: ../parameters.yaml#/jamId | ||
get: | ||
summary: Show jam submissions | ||
tags: | ||
- jams | ||
x-codeSamples: | ||
$ref: "../codeSamples/jams.yaml#/~1jams~1{jamId}~1submissions/get" | ||
responses: | ||
'200': | ||
$ref: ../responses/jams/SubmissionListResponse.yaml | ||
'404': | ||
$ref: ../responses/jams/JamNotFoundError.yaml | ||
security: | ||
- authCookie: [] | ||
operationId: getJamSubmissions | ||
description: Returns all submissions of a jam. |
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
7 changes: 0 additions & 7 deletions
7
openapi/components/responses/economy/LicenseGroupListResponse.yaml
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
openapi/components/responses/instances/InstanceSelfInviteSuccess.yaml
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
openapi/components/responses/instances/InstanceShortNameResponse.yaml
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,5 +1,5 @@ | ||
description: Returns an instance secureName and/or shortName. | ||
content: | ||
text/plain: | ||
application/json: | ||
schema: | ||
$ref: ../../schemas/InstanceShortNameResponse.yaml |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
description: Returns a list of Jam objects. | ||
content: | ||
application/json: | ||
schema: | ||
type: array | ||
items: | ||
$ref: ../../schemas/Jam.yaml |
Oops, something went wrong.