ai/at
ai/at
1
0

fix indent

This commit is contained in:
syui 2024-12-27 16:42:18 +09:00
parent c2dac2a9d4
commit 826cc75219
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56

View File

@ -8,55 +8,65 @@
"key": "tid", "key": "tid",
"record": { "record": {
"type": "object", "type": "object",
"required": ["handle", "did", "createdAt"], "required": [
"handle",
"did",
"createdAt"
],
"properties": { "properties": {
"id":{ "id": {
"type": "integer", "type": "integer",
"minimum": 0, "minimum": 0,
"maximum": 14, "maximum": 14,
"default": 0 "default": 0
}, },
"cp":{ "cp": {
"type": "integer", "type": "integer",
"minimum": 1, "minimum": 1,
"maximum": 10000, "maximum": 10000,
"default": 1 "default": 1
}, },
"rank":{ "rank": {
"type": "integer", "type": "integer",
"minimum": 0, "minimum": 0,
"maximum": 7, "maximum": 7,
"default": 0 "default": 0
}, },
"rare": { "rare": {
"type": "string", "type": "string",
"enum": ["normal", "super", "ultra", "yui", "ai"], "enum": [
"default": "normal" "normal",
}, "super",
"handle": { "ultra",
"type": "string", "yui",
"maxLength": 32, "ai"
"maxGraphemes": 32 ],
}, "default": "normal"
"did": { },
"type": "string" "handle": {
}, "type": "string",
"embed": { "maxLength": 32,
"type": "union", "maxGraphemes": 32
"refs": [ },
"app.bsky.embed.images", "did": {
"app.bsky.embed.external", "type": "string"
"app.bsky.embed.record", },
"app.bsky.embed.recordWithMedia" "embed": {
] "type": "union",
}, "refs": [
"createdAt": { "app.bsky.embed.images",
"type": "string", "app.bsky.embed.external",
"format": "datetime", "app.bsky.embed.record",
"description": "Client-declared timestamp when this post was originally created." "app.bsky.embed.recordWithMedia"
} ]
} },
} "createdAt": {
} "type": "string",
} "format": "datetime",
"description": "Client-declared timestamp when this post was originally created."
}
}
}
}
}
} }