Rarible · Schema
CollectionMeta
NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the collection |
| description | string | Description of the collection |
| createdAt | 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 collection |
| originalMetaUri | string | URI to the original meta JSON |
| content | array | |
| externalLink | string | External link to the original website for the collection |
| sellerFeeBasisPoints | integer | Indicates a 1% seller fee |
| feeRecipient | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CollectionMeta",
"required": [
"name",
"content"
],
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the collection"
},
"description": {
"type": "string",
"description": "Description of the collection"
},
"createdAt": {
"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 collection",
"type": "string"
},
"originalMetaUri": {
"description": "URI to the original meta JSON",
"type": "string"
},
"content": {
"default": [],
"type": "array",
"items": {
"$ref": "#/components/schemas/MetaContent"
}
},
"externalLink": {
"type": "string",
"description": "External link to the original website for the collection"
},
"sellerFeeBasisPoints": {
"type": "integer",
"format": "int32",
"description": "Indicates a 1% seller fee"
},
"feeRecipient": {
"$ref": "#/components/schemas/UnionAddress"
}
}
}