35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"$type": "com.atproto.lexicon.schema",
|
|
"lexicon": 1,
|
|
"id": "ai.syui.card.user",
|
|
"defs": {
|
|
"main": {
|
|
"type": "record",
|
|
"key": "literal:self",
|
|
"description": "User card collection",
|
|
"record": {
|
|
"type": "object",
|
|
"required": ["card", "createdAt", "updatedAt"],
|
|
"properties": {
|
|
"card": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": ["id", "cp", "rare", "cid", "unique"],
|
|
"properties": {
|
|
"id": { "type": "integer", "description": "Card type ID" },
|
|
"cp": { "type": "integer", "description": "Card power" },
|
|
"rare": { "type": "integer", "description": "Rarity level" },
|
|
"cid": { "type": "string", "description": "Unique card instance ID" },
|
|
"unique": { "type": "boolean", "description": "Unique card flag" }
|
|
}
|
|
}
|
|
},
|
|
"createdAt": { "type": "string", "format": "datetime" },
|
|
"updatedAt": { "type": "string", "format": "datetime" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|