docs: reorganize and archive documentation for improved structure
Moved outdated files to the `_archive` folder and reorganized infrastructure-related documentation into the `07_Infrastructure` directory. Improved clarity and ensured logical grouping of files.
This commit is contained in:
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"$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"
|
||||
}
|
||||
},
|
||||
"bc": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"members",
|
||||
"horses",
|
||||
"events",
|
||||
"masterdata",
|
||||
"infrastructure"
|
||||
]
|
||||
},
|
||||
"doc_type": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"how-to",
|
||||
"readme",
|
||||
"adr-link",
|
||||
"runbook",
|
||||
"api"
|
||||
]
|
||||
}
|
||||
},
|
||||
"additionalProperties": true
|
||||
}
|
||||
Reference in New Issue
Block a user