2023-06-01 16:11:03 +02:00
|
|
|
# ju_learn
|
|
|
|
|
2023-06-01 16:16:35 +02:00
|
|
|
Import json Files and start:
|
|
|
|
Schema:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"name": "some name",
|
|
|
|
"questions": [
|
|
|
|
{
|
|
|
|
"quest": "Some Question",
|
|
|
|
"answers": [
|
|
|
|
"Some possible answer",
|
|
|
|
// or mode
|
|
|
|
],
|
|
|
|
"correct": 0, // index of correct answer
|
|
|
|
"explanation": "Some extra Text"
|
|
|
|
},
|
|
|
|
],
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
```
|