changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "chain": {
+ "description": "Blockchain chain queried",
+ "type": "string"
+ },
+ "count": {
+ "description": "Number of NFTs in this page",
+ "type": "number"
+ },
+ "next": {
+ "description": "Pagination cursor for next page",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "nfts": {
+ "description": "NFTs owned by address",
+ "items": {
+ "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"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "owner": {
+ "description": "Owner wallet address",
+ "type": "string"
+ }
+ },
+ "required": [
+ "chain",
+ "owner",
+ "count",
+ "next",
+ "nfts"
+ ],
+ "type": "object"
+}