Cardano · Schema

Tx Content Metadata Cbor

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3
View JSON Schema on GitHub

JSON Schema

tx-content-metadata-cbor.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/tx_content_metadata_cbor",
  "title": "Tx Content Metadata Cbor",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "label": {
        "type": "string",
        "description": "Metadata label"
      },
      "cbor_metadata": {
        "deprecated": true,
        "type": "string",
        "nullable": true,
        "description": "Content of the CBOR metadata"
      },
      "metadata": {
        "type": "string",
        "nullable": true,
        "description": "Content of the CBOR metadata in hex"
      }
    },
    "required": [
      "label",
      "cbor_metadata",
      "metadata"
    ]
  },
  "example": [
    {
      "label": "1968",
      "cbor_metadata": "\\xa100a16b436f6d62696e6174696f6e8601010101010c",
      "metadata": "a100a16b436f6d62696e6174696f6e8601010101010c"
    }
  ]
}