Rarible · Schema
ItemOwnership
NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer
Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| blockchain | object | |
| collection | object | |
| owner | object | |
| value | object | |
| createdAt | string | |
| creators | array | Creators of the target item |
| lazyValue | object | |
| version | integer |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ItemOwnership",
"type": "object",
"properties": {
"id": {
"$ref": "#/components/schemas/OwnershipId"
},
"blockchain": {
"$ref": "#/components/schemas/Blockchain"
},
"collection": {
"$ref": "#/components/schemas/CollectionId"
},
"owner": {
"$ref": "#/components/schemas/UnionAddress"
},
"value": {
"$ref": "#/components/schemas/BigInteger"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"creators": {
"type": "array",
"description": "Creators of the target item",
"default": [],
"items": {
"$ref": "#/components/schemas/Creator"
}
},
"lazyValue": {
"$ref": "#/components/schemas/BigInteger"
},
"version": {
"type": "integer",
"format": "int64"
}
},
"required": [
"id",
"blockchain",
"owner",
"value",
"createdAt",
"creators",
"lazyValue",
"pending"
]
}