-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_content.json
More file actions
66 lines (66 loc) · 1.71 KB
/
Copy pathexample_content.json
File metadata and controls
66 lines (66 loc) · 1.71 KB
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
{
"pages": [
{
"local_id": "page_intro",
"title": "Welcome to the Course",
"body": "<p>This page was created automatically from JSON.</p>",
"published": true
}
],
"assignments": [
{
"local_id": "assign_hw1",
"name": "Homework 1",
"description": "<p>Complete problems 1-10.</p>",
"points_possible": 100,
"due_at": "2026-07-28T23:59:00Z",
"submission_types": ["online_text_entry"],
"published": true
}
],
"discussions": [
{
"local_id": "discuss_week1",
"title": "Week 1 Discussion Board",
"message": "<p>Introduce yourself and share one thing you hope to learn this term.</p>",
"points_possible": 10,
"due_at": "2026-07-28T23:59:00Z",
"published": true
}
],
"quizzes": [
{
"local_id": "quiz_1",
"title": "Chapter 1 Quiz",
"instructions": "<p>Answer all questions.</p>",
"points_possible": 10,
"due_at": "2026-07-28T23:59:00Z",
"items": [
{
"item_type": "choice",
"question_text": "What is 2 + 2?",
"points_possible": 10,
"answers": [
{ "text": "3", "correct": false },
{ "text": "4", "correct": true },
{ "text": "5", "correct": false }
]
}
],
"published": true
}
],
"modules": [
{
"name": "Week 1",
"position": 1,
"published": true,
"items": [
{ "type": "Page", "ref": "page_intro", "indent": 0 },
{ "type": "Discussion", "ref": "discuss_week1", "indent": 0 },
{ "type": "Assignment", "ref": "assign_hw1", "indent": 0 },
{ "type": "Quiz", "ref": "quiz_1", "indent": 0 }
]
}
]
}