Files
stacks-blockchain-api/docs/api/burnchain/get-rewards.schema.json
2020-11-17 11:52:33 +01:00

27 lines
690 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "GET request that returns blocks",
"additionalProperties": false,
"title": "BurnchainRewardListResponse",
"type": "object",
"required": ["results", "limit", "offset"],
"properties": {
"limit": {
"type": "integer",
"maximum": 30,
"description": "The number of burnchain rewards to return"
},
"offset": {
"type": "integer",
"description": "The number to burnchain rewards to skip (starting at `0`)",
"default": 0
},
"results": {
"type": "array",
"items": {
"$ref": "../../entities/burnchain/reward.schema.json"
}
}
}
}