Tezos · Schema

EventInterface

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
tag string Event tag
eventSchema object JSON Schema of the event type in humanified format (as returned by API)
View JSON Schema on GitHub

JSON Schema

eventinterface.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EventInterface",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "tag": {
      "type": "string",
      "description": "Event tag"
    },
    "eventSchema": {
      "description": "JSON Schema of the event type in humanified format (as returned by API)",
      "nullable": true
    }
  }
}