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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://opensea.io/schemas/Nft",
"title": "Nft",
"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"
}
}
},
"required": [
"collection",
"contract",
"identifier",
"is_disabled",
"is_nsfw",
"opensea_url",
"token_standard",
"traits",
"updated_at"
]
}