summaryrefslogtreecommitdiff
path: root/src/main/resources/treeNodes.json
blob: d1fdb0a9cdb402ef7d547c1fe1039c3858ccb292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[
    {
        "nodeId": "node1",
        "label": "Node 1",
        "content": "Content node 1",
        "relation": "",
        "exercises": [
            {
                "questionId": "question1.1",
                "question": "Test Question 1",
                "options": {
                    "A": "Node 1 Choice A",
                    "C": "Node 2 Choice C"
                },
                "answer": "A"
            }
        ]
    },
    {
        "nodeId": "node2",
        "label": "Node 2",
        "content": "Content node 2",
        "relation": "Son",
        "fatherId": "node1",
        "exercises": [
            {
                "questionId": "question2.1",
                "question": "Test Question 2",
                "options": {
                    "A": "Node 2 Choice A",
                    "B": "Node 2 Choice B"
                },
                "answer": "A"
            }
        ]
    },
    {
        "nodeId": "node3",
        "label": "Node 3",
        "content": "Content node 3",
        "relation": "Sonson",
        "fatherId": "node2",
        "exercises": [
            {
                "questionId": "question3.1",
                "question": "Test Question 3",
                "options": {
                    "A": "Node 3 Choice A",
                    "D": "Node 3 Choice D"
                },
                "answer": "A"
            }
        ]
    },
    {
        "nodeId": "node4",
        "label": "Node 4",
        "content": "Content node 4",
        "relation": "Sonsonson",
        "fatherId": "node2",
        "exercises": [
            {
                "questionId": "question4.1",
                "question": "Test Question 4",
                "options": {
                    "A": "Node 4 Choice A",
                    "B": "Node 4 Choice B"
                },
                "answer": "A"
            }
        ]
    }
]