Record representing an achievement unlocked by a player
any
Any valid record key
Properties
achievementId
string
Required
Unique identifier for the achievement (e.g., 'followers-1000', 'level-10')
maxLength: 100 bytescategory
string
Required
Category of the achievement
followers, level, social, collectiondescription
string
Optional
Description of what was accomplished
maxLength: 500 bytesmetadata
unknown
Optional
Additional achievement-specific data
name
string
Required
Display name of the achievement
maxLength: 100 bytesrarity
string
Optional
Rarity tier of the achievement
common, uncommon, rare, epic, legendarysignature
ref
#signature
Required
No description available.
tier
integer
Optional
Tier or milestone value (e.g., 1000 for followers-1000, 10 for level-10)
minimum: 0unlockedAt
string
datetime
Required
When the achievement was unlocked
verificationUri
string
at-uri
Optional
AT URI linking to the verification record on the Anisota brand PDS
xpReward
integer
Optional
Experience points awarded for this achievement
minimum: 0View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"achievementId",
"category",
"name",
"unlockedAt",
"signature"
],
"properties": {
"name": {
"type": "string",
"maxLength": 100,
"description": "Display name of the achievement"
},
"tier": {
"type": "integer",
"minimum": 0,
"description": "Tier or milestone value (e.g., 1000 for followers-1000, 10 for level-10)"
},
"rarity": {
"enum": [
"common",
"uncommon",
"rare",
"epic",
"legendary"
],
"type": "string",
"description": "Rarity tier of the achievement"
},
"category": {
"enum": [
"followers",
"level",
"social",
"collection"
],
"type": "string",
"description": "Category of the achievement"
},
"metadata": {
"type": "unknown",
"description": "Additional achievement-specific data"
},
"xpReward": {
"type": "integer",
"minimum": 0,
"description": "Experience points awarded for this achievement"
},
"signature": {
"ref": "#signature",
"type": "ref"
},
"unlockedAt": {
"type": "string",
"format": "datetime",
"description": "When the achievement was unlocked"
},
"description": {
"type": "string",
"maxLength": 500,
"description": "Description of what was accomplished"
},
"achievementId": {
"type": "string",
"maxLength": 100,
"description": "Unique identifier for the achievement (e.g., 'followers-1000', 'level-10')"
},
"verificationUri": {
"type": "string",
"format": "at-uri",
"description": "AT URI linking to the verification record on the Anisota brand PDS"
}
}
},
"description": "Record representing an achievement unlocked by a player"
}