1
0
This commit is contained in:
2026-03-08 16:23:07 +09:00
parent b64785350b
commit 595766c617
26 changed files with 665 additions and 33 deletions

32
lexicons/ai.syui.vrm.json Normal file
View File

@@ -0,0 +1,32 @@
{
"$type": "com.atproto.lexicon.schema",
"lexicon": 1,
"id": "ai.syui.vrm",
"defs": {
"main": {
"type": "record",
"key": "literal:self",
"description": "VRM game score collection",
"record": {
"type": "object",
"required": ["item", "createdAt", "updatedAt"],
"properties": {
"item": {
"type": "array",
"items": {
"type": "object",
"required": ["id", "cp", "cid"],
"properties": {
"id": { "type": "integer", "description": "Crown type: 1=gold, 2=silver, 3=bronze" },
"cp": { "type": "integer", "description": "Score at acquisition" },
"cid": { "type": "string", "description": "Unique instance ID" }
}
}
},
"createdAt": { "type": "string", "format": "datetime" },
"updatedAt": { "type": "string", "format": "datetime" }
}
}
}
}
}