mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-01-12 22:43:42 +08:00
29 lines
609 B
JSON
29 lines
609 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"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"
|
|
}
|
|
}
|
|
}
|