Cardano · Schema

Tx Metadata Labels

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3
View JSON Schema on GitHub

JSON Schema

tx-metadata-labels.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/tx_metadata_labels",
  "title": "Tx Metadata Labels",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "label": {
        "type": "string",
        "description": "Metadata label"
      },
      "cip10": {
        "type": "string",
        "nullable": true,
        "description": "CIP10 defined description"
      },
      "count": {
        "type": "string",
        "description": "The count of metadata entries with a specific label"
      }
    },
    "required": [
      "label",
      "cip10",
      "count"
    ]
  },
  "example": [
    {
      "label": "1990",
      "cip10": null,
      "count": "1"
    },
    {
      "label": "1967",
      "cip10": "nut.link metadata oracles registry",
      "count": "3"
    },
    {
      "label": "1968",
      "cip10": "nut.link metadata oracles data points",
      "count": "16321"
    }
  ]
}