changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "animation": {
+ "description": "Animation/video URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "collection": {
+ "description": "Collection slug",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "contract": {
+ "description": "Contract address",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "NFT description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "disabled": {
+ "description": "Whether NFT is disabled",
+ "type": "boolean"
+ },
+ "identifier": {
+ "description": "Token ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "image": {
+ "description": "Display image URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "metadata_url": {
+ "description": "Metadata URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "NFT name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "nsfw": {
+ "description": "Whether NFT is marked NSFW",
+ "type": "boolean"
+ },
+ "opensea_url": {
+ "description": "OpenSea item page URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "owners": {
+ "description": "Current owners (for ERC1155 multiple owners possible)",
+ "items": {
+ "properties": {
+ "address": {
+ "description": "Owner address",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "quantity": {
+ "description": "Quantity owned",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "rarity_rank": {
+ "description": "Rarity rank in collection",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "rarity_score": {
+ "description": "Rarity score",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "standard": {
+ "description": "Token standard (ERC721, ERC1155)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "traits": {
+ "description": "NFT traits/attributes",
+ "items": {
+ "properties": {
+ "display_type": {
+ "description": "Display type hint",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Trait name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "description": "Trait value",
+ "type": [
+ "string",
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "updated_at": {
+ "description": "Last update timestamp",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "identifier",
+ "collection",
+ "contract",
+ "standard",
+ "name",
+ "description",
+ "image",
+ "animation",
+ "metadata_url",
+ "opensea_url",
+ "updated_at",
+ "disabled",
+ "nsfw",
+ "traits",
+ "owners",
+ "rarity_rank",
+ "rarity_score"
+ ],
+ "type": "object"
+}