mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-01-12 22:43:34 +08:00
* fix: openapi lint validator * fix: balances schema * fix: add title to all entities * fix: some additionalProperties and duplicate names * fix: remove additional properties for rosetta * fix: rosetta tests * style: remove empty description
28 lines
553 B
JSON
28 lines
553 B
JSON
{
|
|
"description": "GET request for account data",
|
|
"title": "AccountDataResponse",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["balance", "locked", "unlock_height", "nonce", "balance_proof", "nonce_proof"],
|
|
"properties": {
|
|
"balance": {
|
|
"type": "string"
|
|
},
|
|
"locked": {
|
|
"type": "string"
|
|
},
|
|
"unlock_height": {
|
|
"type": "integer"
|
|
},
|
|
"nonce": {
|
|
"type": "integer"
|
|
},
|
|
"balance_proof": {
|
|
"type": "string"
|
|
},
|
|
"nonce_proof": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|