Initial commit

This commit is contained in:
2026-01-27 20:43:47 +01:00
commit f9b1d43c81
45 changed files with 1066 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Import Item",
"type": "object",
"required": ["source", "item"],
"properties": {
"source": {
"type": "object",
"properties": {
"name": {"type": "string"},
"imported_at": {"type": "string", "format": "date-time"}
}
},
"item": {
"type": "object",
"required": ["name", "domain"],
"properties": {
"name": {"type": "string"},
"domain": {"type": "string"},
"description": {"type": "string"},
"specs": {
"type": "object",
"additionalProperties": true
}
}
}
}
}