Initial import

This commit is contained in:
Andraxion 2026-06-26 18:18:14 -04:00
commit ab891a315c
773 changed files with 257255 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "World Bookmarks",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "worldId", "bookmarks"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"worldId": {
"type": "string",
"minLength": 1
},
"bookmarks": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "label", "x", "y"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"label": {
"type": "string",
"minLength": 1
},
"x": {
"type": "integer"
},
"y": {
"type": "integer"
}
}
}
}
}
}