Avalanche · Schema

Erc721TokenMetadata

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
indexStatus object
metadataLastUpdatedTimestamp number
name string
symbol string
imageUri string
description string
animationUri string
externalUrl string
background string
attributes string
View JSON Schema on GitHub

JSON Schema

Erc721TokenMetadata.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/Erc721TokenMetadata.json",
  "title": "Erc721TokenMetadata",
  "type": "object",
  "properties": {
    "indexStatus": {
      "examples": [
        "indexed"
      ],
      "$ref": "#/components/schemas/NftTokenMetadataStatus"
    },
    "metadataLastUpdatedTimestamp": {
      "type": "number"
    },
    "name": {
      "type": "string"
    },
    "symbol": {
      "type": "string"
    },
    "imageUri": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "animationUri": {
      "type": "string"
    },
    "externalUrl": {
      "type": "string"
    },
    "background": {
      "type": "string"
    },
    "attributes": {
      "type": "string"
    }
  },
  "required": [
    "indexStatus"
  ]
}