Files
stacks-blockchain-api/docs/api/contract/post-call-read-only-fn.schema.json
2020-09-08 19:12:57 +02:00

20 lines
395 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "GET request to get contract source",
"title": "ReadOnlyFunctionSuccessResponse",
"type": "object",
"additionalProperties": false,
"required": ["okay"],
"properties": {
"okay": {
"type": "boolean"
},
"result": {
"type": "string"
},
"cause": {
"type": "string"
}
}
}