chore: initialisation du template-webapp

This commit is contained in:
2026-01-27 19:54:16 +01:00
parent ef1f69b328
commit c4fd1e880a
40 changed files with 196 additions and 0 deletions

0
contracts/data_model.md Normal file
View File

0
contracts/errors.md Normal file
View File

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
}
}
}
}
}

0
contracts/openapi.yaml Normal file
View File

0
contracts/pagination.md Normal file
View File