Hedera · Schema

Token

Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise

Properties

Name Type Description
admin_key object
decimals integer
metadata string Arbitrary binary data associated with this token class encoded in base64.
name string
symbol string
token_id object
type string
View JSON Schema on GitHub

JSON Schema

Token.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/Token.json",
  "title": "Token",
  "type": "object",
  "properties": {
    "admin_key": {
      "$ref": "#/components/schemas/Key"
    },
    "decimals": {
      "format": "int64",
      "type": "integer"
    },
    "metadata": {
      "description": "Arbitrary binary data associated with this token class encoded in base64.",
      "type": "string",
      "format": "byte"
    },
    "name": {
      "type": "string"
    },
    "symbol": {
      "type": "string"
    },
    "token_id": {
      "$ref": "#/components/schemas/EntityId"
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "admin_key",
    "decimals",
    "name",
    "symbol",
    "token_id",
    "type"
  ],
  "example": {
    "admin_key": null,
    "decimals": 3,
    "metadata": "VGhpcyBpcyBhIHRlc3QgTkZU",
    "name": "First Mover",
    "symbol": "FIRSTMOVERLPDJH",
    "token_id": "0.0.1",
    "type": "FUNGIBLE_COMMON"
  }
}