Tezos · Schema

ProposalAlias

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
alias string Alias of the proposal
hash string Hash of the proposal, which representing a tarball of concatenated .ml/.mli source files
View JSON Schema on GitHub

JSON Schema

proposalalias.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ProposalAlias",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "alias": {
      "type": "string",
      "description": "Alias of the proposal",
      "nullable": true
    },
    "hash": {
      "type": "string",
      "description": "Hash of the proposal, which representing a tarball of concatenated .ml/.mli source files"
    }
  }
}