You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mv-api-spec/openapi/paths/polls@{poll-id}@judges@{jud...

32 lines
652 B

parameters:
- in: path
name: judge-id
required: true
schema:
type: string
get:
operationId: get-poll-judge
summary: Get a judge from a poll
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: ../components/schemas/judge.yaml
'404':
$ref: ../components/responses/judge-not-found.yaml
security:
- {}
- pollAuth: []
delete:
operationId: delete-poll-judge
summary: Delete a judge from a poll
responses:
'200':
description: OK
'404':
$ref: ../components/responses/judge-not-found.yaml
security:
- pollAuth: []