workstations and light theme

This commit is contained in:
2026-04-16 16:33:48 +03:00
parent 555e920c18
commit bbfaf5ccc5
37 changed files with 1015 additions and 106 deletions
+47
View File
@@ -0,0 +1,47 @@
{
"$id": "https://scuroneko.dev/schemas/projects.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"items": {
"additionalProperties": false,
"properties": {
"description": {
"minLength": 1,
"type": "string"
},
"key": {
"minLength": 1,
"type": "string"
},
"links": {
"additionalProperties": {
"format": "uri",
"type": "string"
},
"type": "object"
},
"name": {
"minLength": 1,
"type": "string"
},
"stack": {
"items": {
"minLength": 1,
"type": "string"
},
"type": "array",
"uniqueItems": true
},
"status": {
"enum": ["active", "archive", "wip", "paused"],
"type": "string"
},
"tone": {
"$ref": "./shared.schema.json#/$defs/tone"
}
},
"required": ["key", "name", "description", "stack", "status", "tone"],
"type": "object"
},
"title": "Projects",
"type": "array"
}