diff options
author | Mole Shang <[email protected]> | 2024-12-15 00:00:13 +0800 |
---|---|---|
committer | Mole Shang <[email protected]> | 2024-12-15 00:02:19 +0800 |
commit | d3f77ea51dd72b055307ac259c3caf8091307aa6 (patch) | |
tree | ba5e10e04d1c6e4ce281f7cf6e43abad407eac65 /src/main/resources/treeNodes.json | |
download | se-intro-d3f77ea51dd72b055307ac259c3caf8091307aa6.tar.gz se-intro-d3f77ea51dd72b055307ac259c3caf8091307aa6.tar.bz2 se-intro-d3f77ea51dd72b055307ac259c3caf8091307aa6.zip |
Diffstat (limited to 'src/main/resources/treeNodes.json')
-rw-r--r-- | src/main/resources/treeNodes.json | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/main/resources/treeNodes.json b/src/main/resources/treeNodes.json new file mode 100644 index 0000000..d1fdb0a --- /dev/null +++ b/src/main/resources/treeNodes.json @@ -0,0 +1,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" + } + ] + } +] |