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

14 lines
233 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CountResponse",
"type": "object",
"required": [
"count"
],
"properties": {
"count": {
"type": "integer",
"format": "int32"
}
}
}