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