Contributor information including identifier, display name, and image.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this record was originally created.
displayName
string
Optional
Display name of the contributor.
maxLength: 100 bytesidentifier
string
Optional
DID or a URI to a social profile of the contributor.
image
union
Optional
The contributor visual representation as a URI or image blob.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt"
],
"properties": {
"image": {
"refs": [
"org.hypercerts.defs#uri",
"org.hypercerts.defs#smallImage"
],
"type": "union",
"description": "The contributor visual representation as a URI or image blob."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this record was originally created."
},
"identifier": {
"type": "string",
"description": "DID or a URI to a social profile of the contributor."
},
"displayName": {
"type": "string",
"maxLength": 100,
"description": "Display name of the contributor."
}
}
},
"description": "Contributor information including identifier, display name, and image."
}