docs(ci): Front-Matter + CI-Docs + YT-Sync vorbereitet (MP-7)

This commit is contained in:
2025-10-22 11:11:10 +02:00
parent 79c9d4a71a
commit 1bdd5c38aa
13 changed files with 310 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": ["status", "summary"],
"properties": {
"modul": {"type": "string"},
"status": {"type": "string", "enum": ["active", "draft", "deprecated"]},
"summary": {"type": "string"},
"last_reviewed": {"type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}$"},
"review_cycle": {"type": "string", "pattern": "^\\d+d$"},
"yt_epic": {"type": "string", "pattern": "^[A-Z]+-\\d+$"},
"yt_issues": {"type": "array", "items": {"type": "string", "pattern": "^[A-Z]+-\\d+$"}},
"tags": {"type": "array", "items": {"type": "string"}}
},
"additionalProperties": true
}