1
0
bot/at/lexicons/ai/syui/game.json
syui ec5de6b9c2
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
fix
2024-11-09 14:16:54 +09:00

28 lines
557 B
JSON

{
"lexicon": 1,
"id": "ai.syui.game",
"defs": {
"main": {
"type": "record",
"description": "Record containing a game.",
"key": "literal:self",
"record": {
"type": "object",
"required": ["account", "createdAt"],
"properties": {
"account": {
"type": "string",
"format": "at-uri",
"description": "at://verify..."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this post was originally created."
}
}
}
}
}
}