mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-15 09:07:43 +08:00
20 lines
395 B
JSON
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"
|
|
}
|
|
}
|
|
}
|