Add versioned design profile releases

This commit is contained in:
DCCONSTRUCTIONS
2026-07-11 22:34:01 +03:00
parent 50718a33a1
commit 1f2dffc031
8 changed files with 473 additions and 17 deletions
@@ -23,10 +23,11 @@
"designProfile": {
"type": "object",
"additionalProperties": false,
"required": ["id", "version", "theme"],
"required": ["id", "version", "status", "theme"],
"properties": {
"id": { "type": "string", "minLength": 1 },
"version": { "type": "string", "minLength": 1 },
"status": { "enum": ["draft", "published"] },
"theme": { "enum": ["dark", "light"] }
}
},