initial commit

This commit is contained in:
2022-12-20 21:26:47 +01:00
commit 2962a6db69
722 changed files with 63886 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"page": {
"type": "integer",
"minimum": 0,
"maximum": 12
},
"id": {
"type": "integer",
"minimum": 0,
"maximum": 254
},
"obj": {
"type": "string"
}
},
"required": [
"id"
]
}
]
}
}