chore: track site sources + ignore local env/backups

This commit is contained in:
2026-01-19 11:46:39 +01:00
parent aece8c5526
commit 5eb23a3de4
50 changed files with 3158 additions and 38 deletions

View File

@@ -0,0 +1,90 @@
{
"$ref": "#/definitions/atlas",
"definitions": {
"atlas": {
"type": "object",
"properties": {
"title": {
"type": "string",
"minLength": 1
},
"level": {
"type": "number",
"enum": [
1,
2,
3
],
"default": 1
},
"version": {
"type": "string",
"minLength": 1
},
"concepts": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"default": []
},
"links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"definition",
"appui",
"transposition"
]
},
"target": {
"type": "string",
"minLength": 1
},
"note": {
"type": "string"
}
},
"required": [
"type",
"target"
],
"additionalProperties": false
},
"default": []
},
"order": {
"type": "integer",
"minimum": 0
},
"summary": {
"type": "string"
},
"edition": {
"type": "string",
"const": "atlas"
},
"status": {
"type": "string",
"const": "cartographie"
},
"$schema": {
"type": "string"
}
},
"required": [
"title",
"version",
"edition",
"status"
],
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}