mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-17 10:51:19 +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
19 lines
369 B
JSON
19 lines
369 B
JSON
{
|
|
"description": "GET request to get contract source",
|
|
"title": "ContractSourceResponse",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["source", "publish_height", "proof"],
|
|
"properties": {
|
|
"source": {
|
|
"type": "string"
|
|
},
|
|
"publish_height": {
|
|
"type": "integer"
|
|
},
|
|
"proof": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|