Skip to content

Commit

Permalink
Deploying to gh-pages from @ 70379e2 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaptoss committed Aug 2, 2024
1 parent 4566ddb commit 325b51f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
18 changes: 17 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1411,6 +1411,16 @@
"404": {
"$ref": "#/components/responses/notFound"
},
"409": {
"description": "Event already fulfilled",
"content": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/Errors"
}
}
}
},
"500": {
"$ref": "#/components/responses/internalError"
}
Expand Down Expand Up @@ -2016,14 +2026,20 @@
"properties": {
"attributes": {
"required": [
"proof"
"proof",
"proposal_id"
],
"type": "object",
"properties": {
"proof": {
"type": "object",
"format": "types.ZKProof",
"description": "Proof of voting in some poll."
},
"proposal_id": {
"type": "string",
"pattern": "[0-9]+",
"description": "Vote proposal id"
}
}
}
Expand Down
11 changes: 11 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -945,6 +945,12 @@ paths:
$ref: '#/components/schemas/Errors'
'404':
$ref: '#/components/responses/notFound'
'409':
description: Event already fulfilled
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Errors'
'500':
$ref: '#/components/responses/internalError'
components:
Expand Down Expand Up @@ -1396,12 +1402,17 @@ components:
attributes:
required:
- proof
- proposal_id
type: object
properties:
proof:
type: object
format: types.ZKProof
description: Proof of voting in some poll.
proposal_id:
type: string
pattern: '[0-9]+'
description: Vote proposal id
FulfillPollEventKey:
type: object
required:
Expand Down

0 comments on commit 325b51f

Please sign in to comment.