Adds goals-hierarchy.jsonc with 1 Fernziel + 3 Grobziele matching the existing markdown blocks. Required by FeinzielEditorRenderer which uses CrossChapterDataResolver.resolveGrobziele(). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
// Goal hierarchy (long-term and mid-term goals)
|
|
{
|
|
"id": "goals-hierarchy",
|
|
"type": "goals",
|
|
"title": "Zielhierarchie",
|
|
"hint": "Definieren Sie ein Fernziel (Teilhabe-orientiert) und funktionale Grobziele (konkrete Meilensteine). Unterscheiden Sie zwischen Bildungs- und Unterstützungszielen auf Grobzielebene.",
|
|
"goals": [
|
|
{
|
|
"id": "g1",
|
|
"type": "long-term",
|
|
"title": "Fernziel",
|
|
"description": "",
|
|
"status": "draft",
|
|
"category": "education"
|
|
},
|
|
{
|
|
"id": "g2",
|
|
"type": "mid-term",
|
|
"parentId": "g1",
|
|
"category": "education",
|
|
"title": "Grobziel 1 [BZ]",
|
|
"description": "",
|
|
"status": "draft"
|
|
},
|
|
{
|
|
"id": "g3",
|
|
"type": "mid-term",
|
|
"parentId": "g1",
|
|
"category": "support",
|
|
"title": "Grobziel 2 [UZ]",
|
|
"description": "",
|
|
"status": "draft"
|
|
},
|
|
{
|
|
"id": "g4",
|
|
"type": "mid-term",
|
|
"parentId": "g1",
|
|
"title": "Grobziel 3",
|
|
"description": "",
|
|
"status": "draft"
|
|
}
|
|
]
|
|
}
|