A combined view of a score and the profile of the user who performed it.
Properties
did
string
did
Optional
A decentralized identifier (DID).
handle
string
handle
Optional
An AT Protocol handle (e.g., alice.bsky.social).
profile
ref
dev.tsunagite.profile
Optional
No description available.
score
ref
dev.tsunagite.score
Required
No description available.
View raw schema
{
"type": "object",
"required": [
"score"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"score": {
"ref": "dev.tsunagite.score",
"type": "ref"
},
"handle": {
"type": "string",
"format": "handle"
},
"profile": {
"ref": "dev.tsunagite.profile",
"type": "ref"
}
},
"description": "A combined view of a score and the profile of the user who performed it."
}