A collector circle.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
curatorDid
string
did
Optional
A decentralized identifier (DID).
curatorHandle
string
Optional
No description available.
curatorName
string
Optional
No description available.
description
string
Optional
No description available.
maxLength: 200 bytesmemberCount
integer
Optional
No description available.
memberDids
array
of
string
did
Optional
No description available.
maxLength: 100 itemsmemberProfiles
array
of
object
Optional
No description available.
maxLength: 100 itemsname
string
Required
No description available.
maxLength: 60 bytesregion
string
Optional
No description available.
theme
string
Optional
No description available.
Known values:
vintage, competitive, shiny, investment, local_region, artist, generalvisibility
string
Required
No description available.
Known values:
private, members_visible, publicView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"visibility",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 60
},
"theme": {
"type": "string",
"knownValues": [
"vintage",
"competitive",
"shiny",
"investment",
"local_region",
"artist",
"general"
]
},
"region": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"curatorDid": {
"type": "string",
"format": "did"
},
"memberDids": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"maxLength": 100
},
"visibility": {
"type": "string",
"knownValues": [
"private",
"members_visible",
"public"
]
},
"curatorName": {
"type": "string"
},
"description": {
"type": "string",
"maxLength": 200
},
"memberCount": {
"type": "integer"
},
"curatorHandle": {
"type": "string"
},
"memberProfiles": {
"type": "array",
"items": {
"type": "object",
"properties": {
"did": {
"type": "string",
"format": "did"
},
"name": {
"type": "string"
},
"avatar": {
"type": "string",
"format": "uri"
},
"handle": {
"type": "string"
}
}
},
"maxLength": 100
}
}
},
"description": "A collector circle."
}