Rarible · Schema
Meta
NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the NFT item |
| description | string | Description of the NFT item |
| createdAt | string | |
| updatedAt | string | |
| tags | array | |
| genres | array | |
| language | string | Language in RFC 1176 format |
| rights | string | |
| rightsUri | string | |
| externalUri | string | URI to external page related to the Item |
| originalMetaUri | string | URI to the original meta JSON |
| attributes | array | Attributes of the NFT item |
| content | array | NFT content information |
| extraContent | array | NFT additional content information |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Meta",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the NFT item"
},
"description": {
"type": "string",
"description": "Description of the NFT item"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"updatedAt": {
"type": "string",
"format": "date-time"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"genres": {
"type": "array",
"items": {
"type": "string"
}
},
"language": {
"description": "Language in RFC 1176 format",
"type": "string"
},
"rights": {
"type": "string"
},
"rightsUri": {
"type": "string"
},
"externalUri": {
"description": "URI to external page related to the Item",
"type": "string"
},
"originalMetaUri": {
"description": "URI to the original meta JSON",
"type": "string"
},
"attributes": {
"type": "array",
"description": "Attributes of the NFT item",
"items": {
"$ref": "#/components/schemas/MetaAttribute"
}
},
"content": {
"type": "array",
"description": "NFT content information",
"items": {
"$ref": "#/components/schemas/MetaContent"
}
},
"extraContent": {
"type": "array",
"description": "NFT additional content information",
"items": {
"$ref": "#/components/schemas/MetaContent"
}
}
},
"required": [
"name",
"attributes",
"content"
]
}