Tezos · Schema

BigMapInterface

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
path string Full path to the Big_map in the contract storage
name string Big_map name, if exists (field annotation)
keySchema object JSON Schema of the Big_map key in humanified format (as returned by API)
valueSchema object JSON Schema of the Big_map value in humanified format (as returned by API)
View JSON Schema on GitHub

JSON Schema

bigmapinterface.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BigMapInterface",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "path": {
      "type": "string",
      "description": "Full path to the Big_map in the contract storage"
    },
    "name": {
      "type": "string",
      "description": "Big_map name, if exists (field annotation)",
      "nullable": true
    },
    "keySchema": {
      "description": "JSON Schema of the Big_map key in humanified format (as returned by API)",
      "nullable": true
    },
    "valueSchema": {
      "description": "JSON Schema of the Big_map value in humanified format (as returned by API)",
      "nullable": true
    }
  }
}