OpenSea · Schema

NftDetailed

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
identifier string
collection string
contract string
token_standard string
name string
description string
image_url string
display_image_url string
display_animation_url string
metadata_url string
opensea_url string
updated_at string
is_disabled boolean
is_nsfw boolean
original_image_url string
original_animation_url string
traits array
animation_url string
is_suspicious boolean
creator string
owners array
rarity object
subscription object
agent_binding object
View JSON Schema on GitHub

JSON Schema

NftDetailed.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/NftDetailed",
  "title": "NftDetailed",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string"
    },
    "collection": {
      "type": "string"
    },
    "contract": {
      "type": "string"
    },
    "token_standard": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "image_url": {
      "type": "string"
    },
    "display_image_url": {
      "type": "string"
    },
    "display_animation_url": {
      "type": "string"
    },
    "metadata_url": {
      "type": "string"
    },
    "opensea_url": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "is_disabled": {
      "type": "boolean"
    },
    "is_nsfw": {
      "type": "boolean"
    },
    "original_image_url": {
      "type": "string"
    },
    "original_animation_url": {
      "type": "string"
    },
    "traits": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Trait"
      }
    },
    "animation_url": {
      "type": "string"
    },
    "is_suspicious": {
      "type": "boolean"
    },
    "creator": {
      "type": "string"
    },
    "owners": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Owner"
      }
    },
    "rarity": {
      "$ref": "#/components/schemas/Rarity"
    },
    "subscription": {
      "$ref": "#/components/schemas/SubscriptionInfoResponse"
    },
    "agent_binding": {
      "$ref": "#/components/schemas/AgentBindingResponse"
    }
  },
  "required": [
    "collection",
    "contract",
    "creator",
    "identifier",
    "is_disabled",
    "is_nsfw",
    "is_suspicious",
    "opensea_url",
    "owners",
    "token_standard",
    "traits",
    "updated_at"
  ]
}