DefiHackathon-2022/contracts/counter/schema/query_msg.json
2022-03-26 16:36:38 -04:00

18 lines
312 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "QueryMsg",
"anyOf": [
{
"type": "object",
"required": [
"get_count"
],
"properties": {
"get_count": {
"type": "object"
}
},
"additionalProperties": false
}
]
}