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

30 lines
814 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "GET request to get contract interface",
"title": "ContractInterface",
"type": "object",
"required": ["functions", "variables", "maps", "fungible_tokens", "non_fungible_tokens"],
"properties": {
"functions": {
"type": "array",
"description": "List of defined methods"
},
"variables": {
"type": "array",
"description": "List of defined variables"
},
"maps": {
"type": "array",
"description": "List of defined data-maps"
},
"fungible_tokens": {
"type": "array",
"description": "List of fungible tokens in the contract"
},
"non_fungible_tokens": {
"type": "array",
"description": "List of non-fungible tokens in the contract"
}
}
}