update lexicon

This commit is contained in:
2026-01-23 00:39:04 +09:00
parent 5870541b96
commit fa0b68d622
6 changed files with 241 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
{
"$type": "com.atproto.lexicon.schema",
"lexicon": 1,
"id": "ai.syui.card.admin",
"defs": {
"main": {
"type": "record",
"key": "literal:self",
"description": "Card game configuration (admin only)",
"record": {
"type": "object",
"required": ["card", "createdAt", "updatedAt"],
"properties": {
"card": {
"type": "object",
"required": ["pickup", "normal"],
"properties": {
"pickup": { "type": "integer", "description": "Pickup card ID" },
"normal": { "type": "integer", "description": "Normal card ID" }
}
},
"createdAt": { "type": "string", "format": "datetime" },
"updatedAt": { "type": "string", "format": "datetime" }
}
}
}
}
}