Files
stacks-blockchain-api/docs/api/core-node/get-contract-source.schema.json
2020-07-22 08:00:48 -07:00

20 lines
417 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "GET request to get contract source",
"title": "ContractSource",
"type": "object",
"additionalProperties": false,
"required": ["source", "publish_height", "proof"],
"properties": {
"source": {
"type": "string"
},
"publish_height": {
"type": "integer"
},
"proof": {
"type": "string"
}
}
}