Tezos · Schema
ContractView
TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Contract view name |
| jsonParameterType | object | Parameter type in human-readable JSON format |
| jsonReturnType | object | Return type in human-readable JSON format |
| michelineParameterType | object | Parameter type in micheline format |
| michelineReturnType | object | Return type in micheline format |
| michelsonParameterType | string | Parameter type in michelson format |
| michelsonReturnType | string | Return type in michelson format |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ContractView",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Contract view name"
},
"jsonParameterType": {
"description": "Parameter type in human-readable JSON format",
"nullable": true
},
"jsonReturnType": {
"description": "Return type in human-readable JSON format",
"nullable": true
},
"michelineParameterType": {
"description": "Parameter type in micheline format",
"nullable": true,
"oneOf": [
{
"$ref": "#/components/schemas/IMicheline"
}
]
},
"michelineReturnType": {
"description": "Return type in micheline format",
"nullable": true,
"oneOf": [
{
"$ref": "#/components/schemas/IMicheline"
}
]
},
"michelsonParameterType": {
"type": "string",
"description": "Parameter type in michelson format",
"nullable": true
},
"michelsonReturnType": {
"type": "string",
"description": "Return type in michelson format",
"nullable": true
}
}
}