OpenSea · Schema

ValidateMetadataDetails

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
name string
description string
originalImageUrl string
processedImageUrl string
originalAnimationUrl string
processedAnimationUrl string
externalUrl string
backgroundColor string
attributes array
View JSON Schema on GitHub

JSON Schema

ValidateMetadataDetails.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/ValidateMetadataDetails",
  "title": "ValidateMetadataDetails",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "originalImageUrl": {
      "type": "string"
    },
    "processedImageUrl": {
      "type": "string"
    },
    "originalAnimationUrl": {
      "type": "string"
    },
    "processedAnimationUrl": {
      "type": "string"
    },
    "externalUrl": {
      "type": "string"
    },
    "backgroundColor": {
      "type": "string"
    },
    "attributes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ValidateMetadataAttribute"
      }
    }
  },
  "required": [
    "attributes"
  ]
}