Skip to content

Commit

Permalink
Update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
maurolacy committed Dec 7, 2020
1 parent 251e6e6 commit be20beb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions packages/cw3/schema/voter_list_response.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,17 @@
"VoterResponse": {
"type": "object",
"required": [
"addr",
"weight"
"addr"
],
"properties": {
"addr": {
"$ref": "#/definitions/HumanAddr"
},
"weight": {
"type": "integer",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
}
Expand Down
8 changes: 5 additions & 3 deletions packages/cw3/schema/voter_response.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@
"title": "VoterResponse",
"type": "object",
"required": [
"addr",
"weight"
"addr"
],
"properties": {
"addr": {
"$ref": "#/definitions/HumanAddr"
},
"weight": {
"type": "integer",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
}
Expand Down

0 comments on commit be20beb

Please sign in to comment.