waha-shared 1.0.167 → 1.0.169
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data/areas/areas.schema.json +101 -0
- package/dist/data/aslTimestamps/aslTimestamps.schema.json +82 -0
- package/dist/data/bibleAudios/bibleAudios.schema.json +61 -0
- package/dist/data/bibleBooks/bibleBooks.schema.json +124 -0
- package/dist/data/bibleChaptersList/bibleChaptersList.schema.json +19 -0
- package/dist/data/bibleStatuses/bibleStatuses.json +235 -58
- package/dist/data/bibleStatuses/bibleStatuses.schema.json +58 -0
- package/dist/data/bibleTexts/bibleTexts.schema.json +74 -0
- package/dist/data/clones/clones.schema.json +75 -0
- package/dist/data/countries/countries.schema.json +109 -0
- package/dist/data/countriesAndLanguages/countriesAndLanguages.schema.json +56 -0
- package/dist/data/crowdinLanguages/crowdinLanguages.schema.json +41 -0
- package/dist/data/curriculumFoundations/curriculumFoundations.schema.json +33 -0
- package/dist/data/curriculumQuestions/curriculumQuestions.schema.json +47 -0
- package/dist/data/curriculumTopics/curriculumTopics.schema.json +33 -0
- package/dist/data/dblAudioLicenses/dblAudioLicenses.json +6409 -0
- package/dist/data/dblTextLicenses/dblTextLicenses.json +14951 -0
- package/dist/data/iosVoiceOverLanguages/iosVoiceOverLanguages.schema.json +19 -0
- package/dist/data/iso6933LanguageCodes/iso6933LanguageCodes.schema.json +19 -0
- package/dist/data/languageAssets/languageAssets.json +499305 -0
- package/dist/data/languageAssets/languageAssets.schema.json +25 -0
- package/dist/data/languages/languages.json +2 -2
- package/dist/data/languages/languages.schema.json +374 -0
- package/dist/data/mediaDurations/mediaDurations.json +32 -0
- package/dist/data/mediaDurations/mediaDurations.schema.json +27 -0
- package/dist/data/notification/notification.schema.json +121 -0
- package/dist/data/numeralMaps/numeralMaps.schema.json +80 -0
- package/dist/data/orphanedBibleTexts/orphanedBibleTexts.json +2750 -0
- package/dist/data/phoneLanguages/phoneLanguages.schema.json +48 -0
- package/dist/data/questions/questions.schema.json +52 -0
- package/dist/data/releaseNotes/releaseNotes.json +82 -2
- package/dist/data/releaseNotes/releaseNotes.schema.json +33 -0
- package/dist/data/screenshots/screenshots.schema.json +21 -0
- package/dist/data/scripts/scripts.json +20 -0
- package/dist/data/scripts/scripts.schema.json +26 -0
- package/dist/data/sets/sets.schema.json +135 -0
- package/dist/data/specialIds/specialIds.schema.json +132 -0
- package/dist/data/translationsApp/translationsApp.json +388 -0
- package/dist/data/translationsApp/translationsApp.schema.json +1602 -0
- package/dist/data/translationsFtb/translationsFtb.json +68 -0
- package/dist/data/translationsFtb/translationsFtb.schema.json +361 -0
- package/dist/data/translationsIntroduction/translationsIntroduction.schema.json +232 -0
- package/dist/data/translationsQuestion/translationsQuestion.json +32 -0
- package/dist/data/translationsQuestion/translationsQuestion.schema.json +35 -0
- package/dist/data/translationsSet/translationsSet.json +789 -0
- package/dist/data/translationsSet/translationsSet.schema.json +96 -0
- package/dist/data/translationsSolarSpeaker/translationsSolarSpeaker.schema.json +240 -0
- package/dist/data/translationsSpokenQuestion/translationsSpokenQuestion.json +32 -0
- package/dist/data/translationsSpokenQuestion/translationsSpokenQuestion.schema.json +35 -0
- package/dist/data/youtubePlaylists/youtubePlaylists.schema.json +18 -0
- package/dist/data/youtubeVideos/youtubeVideos.schema.json +18 -0
- package/package.json +1 -1
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"type": "array",
|
|
10
|
+
"items": {
|
|
11
|
+
"type": "object",
|
|
12
|
+
"additionalProperties": false,
|
|
13
|
+
"properties": {
|
|
14
|
+
"twoLetterId": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "Two-letter language code used by phone operating systems"
|
|
17
|
+
},
|
|
18
|
+
"exonym": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "English name of the language"
|
|
21
|
+
},
|
|
22
|
+
"alternatives": {
|
|
23
|
+
"type": "array",
|
|
24
|
+
"description": "Alternative language options that can be used for this phone language",
|
|
25
|
+
"items": {
|
|
26
|
+
"type": "object",
|
|
27
|
+
"additionalProperties": false,
|
|
28
|
+
"properties": {
|
|
29
|
+
"exonym": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"description": "English name of the alternative language"
|
|
32
|
+
},
|
|
33
|
+
"threeLetterId": {
|
|
34
|
+
"type": "string",
|
|
35
|
+
"description": "Three-letter ISO 639-3 language code"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"required": ["exonym", "threeLetterId"]
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"required": ["twoLetterId", "exonym", "alternatives"]
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"required": ["data"],
|
|
47
|
+
"description": "Mapping of phone language codes to alternative language options"
|
|
48
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"items": {
|
|
10
|
+
"properties": {
|
|
11
|
+
"questionId": {
|
|
12
|
+
"type": "string"
|
|
13
|
+
},
|
|
14
|
+
"name": {
|
|
15
|
+
"description": "A shorthand name for the question so the question can be identified more easily.",
|
|
16
|
+
"type": "string"
|
|
17
|
+
},
|
|
18
|
+
"comment": {
|
|
19
|
+
"type": "string"
|
|
20
|
+
},
|
|
21
|
+
"hasBeep": {
|
|
22
|
+
"description": "Whether or not the question should have a beep after, which indicates whether or not the group should pause and discuss.",
|
|
23
|
+
"type": "boolean"
|
|
24
|
+
},
|
|
25
|
+
"music": {
|
|
26
|
+
"description": "The type of music used for the question. All types use the same music file. This determines where the music will be in the question and for how long.",
|
|
27
|
+
"enum": [
|
|
28
|
+
"outroLong",
|
|
29
|
+
"outroShort",
|
|
30
|
+
"intro"
|
|
31
|
+
],
|
|
32
|
+
"type": [
|
|
33
|
+
"string"
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"required": [
|
|
38
|
+
"questionId",
|
|
39
|
+
"name",
|
|
40
|
+
"comment",
|
|
41
|
+
"hasBeep"
|
|
42
|
+
],
|
|
43
|
+
"type": "object"
|
|
44
|
+
},
|
|
45
|
+
"type": "array"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"required": [
|
|
49
|
+
"$schema",
|
|
50
|
+
"data"
|
|
51
|
+
]
|
|
52
|
+
}
|
|
@@ -2,8 +2,87 @@
|
|
|
2
2
|
"$schema": "./releaseNotes.schema.json",
|
|
3
3
|
"data": [
|
|
4
4
|
{
|
|
5
|
-
"version": "6.
|
|
5
|
+
"version": "6.6.1",
|
|
6
6
|
"showInApp": false,
|
|
7
|
+
"notes": {
|
|
8
|
+
"eng": "Beta testing Bangla, India",
|
|
9
|
+
"ara": "اختبار تجريبي بنغالي، الهند",
|
|
10
|
+
"aze": "Benqal dili beta sınağı, Hindistan",
|
|
11
|
+
"ceb": "Beta testing sa Bangla, India",
|
|
12
|
+
"cmn": "孟加拉语(印度)Beta 测试",
|
|
13
|
+
"deu": "Beta-Test Bangla, Indien",
|
|
14
|
+
"esp": "Pruebas beta en bangla, India",
|
|
15
|
+
"fra": "Test bêta en bangla, Inde",
|
|
16
|
+
"hau": "Gwajin beta na Bangla, Indiya",
|
|
17
|
+
"hin": "बांग्ला (भारत) बीटा परीक्षण",
|
|
18
|
+
"hun": "Bangla (India) béta tesztelés",
|
|
19
|
+
"ind": "Uji beta Bangla, India",
|
|
20
|
+
"jpn": "ベータテスト:ベンガル語(インド)",
|
|
21
|
+
"khm": "ការធ្វើតេស្តបេតា ភាសាបង់ក្លា ប្រទេសឥណ្ឌា",
|
|
22
|
+
"kor": "벵골어(인도) 베타 테스트",
|
|
23
|
+
"mar": "बांग्ला (भारत) बीटा चाचणी",
|
|
24
|
+
"mya": "ဘင်္ဂါလီ (အိန္ဒိယ) ဘီတာ စမ်းသပ်မှု",
|
|
25
|
+
"npi": "बाङ्ला (भारत) बीटा परीक्षण",
|
|
26
|
+
"pes": "آزمایش بتا بنگالی، هند",
|
|
27
|
+
"por": "Teste beta em bangla, Índia",
|
|
28
|
+
"ron": "Testare beta în bangla, India",
|
|
29
|
+
"rus": "Бета-тестирование: бенгальский (Индия)",
|
|
30
|
+
"spa": "Pruebas beta en bangla, India",
|
|
31
|
+
"swe": "Betatest: bangla, Indien",
|
|
32
|
+
"swz": "Kuhlolwa kwe-beta ngeBangla, eNdiya",
|
|
33
|
+
"tel": "బాంగ్లా (భారత్) బీటా పరీక్ష",
|
|
34
|
+
"tgl": "Beta testing sa Bangla, India",
|
|
35
|
+
"tha": "การทดสอบเบต้า: ภาษาเบงกาลี (อินเดีย)",
|
|
36
|
+
"tur": "Bangla (Hindistan) beta testi",
|
|
37
|
+
"uig": "بېتا سىناش: بېنگالچە (ھىندىستان)",
|
|
38
|
+
"ukr": "Бета-тестування: бенгальська (Індія)",
|
|
39
|
+
"urd": "بنگلہ (بھارت) بیٹا ٹیسٹنگ",
|
|
40
|
+
"vie": "Thử nghiệm beta: tiếng Bangla (Ấn Độ)",
|
|
41
|
+
"zsm": "Ujian beta Bangla, India"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"version": "6.6.0",
|
|
46
|
+
"notes": {
|
|
47
|
+
"eng": "Added the ability to easily donate to Waha.",
|
|
48
|
+
"ara": "تمت إضافة إمكانية التبرع بسهولة لـ واحة.",
|
|
49
|
+
"aze": "Waha-ya asanlıqla ianə etmək imkanı əlavə edildi.",
|
|
50
|
+
"ceb": "Gidugang ang abilidad sa sayon nga pagdonar ngadto sa Waha.",
|
|
51
|
+
"cmn": "新增了便捷向 Waha 捐款的功能。",
|
|
52
|
+
"deu": "Die Möglichkeit, einfach an Waha zu spenden, wurde hinzugefügt.",
|
|
53
|
+
"esp": "Se añadió la posibilidad de donar fácilmente a Waha.",
|
|
54
|
+
"fra": "Ajout de la possibilité de faire facilement un don à Waha.",
|
|
55
|
+
"hau": "An ƙara damar bayar da gudummawa cikin sauƙi ga Waha.",
|
|
56
|
+
"hin": "Waha को आसानी से दान करने की सुविधा जोड़ी गई।",
|
|
57
|
+
"hun": "Hozzáadtuk a Waha számára történő egyszerű adományozás lehetőségét.",
|
|
58
|
+
"ind": "Menambahkan kemampuan untuk berdonasi dengan mudah ke Waha.",
|
|
59
|
+
"jpn": "Waha に簡単に寄付できる機能を追加しました。",
|
|
60
|
+
"khm": "បានបន្ថែមមុខងារដើម្បីអាចបរិច្ចាគទៅកាន់ Waha បានយ៉ាងងាយស្រួល។",
|
|
61
|
+
"kor": "Waha에 쉽게 기부할 수 있는 기능을 추가했습니다.",
|
|
62
|
+
"mar": "Waha ला सहजपणे देणगी देण्याची सुविधा जोडली.",
|
|
63
|
+
"mya": "Waha သို့ လွယ်ကူစွာ လှူဒါန်းနိုင်သော လုပ်ဆောင်ချက်ကို ထည့်သွင်းခဲ့သည်။",
|
|
64
|
+
"npi": "Waha लाई सजिलै दान गर्न सक्ने सुविधा थपियो।",
|
|
65
|
+
"pes": "امکان کمک مالی آسان به Waha اضافه شد.",
|
|
66
|
+
"por": "Adicionada a possibilidade de doar facilmente para a Waha.",
|
|
67
|
+
"ron": "A fost adăugată posibilitatea de a dona cu ușurință către Waha.",
|
|
68
|
+
"rus": "Добавлена возможность легко делать пожертвования в Waha.",
|
|
69
|
+
"spa": "Se añadió la posibilidad de donar fácilmente a Waha.",
|
|
70
|
+
"swe": "Möjligheten att enkelt donera till Waha har lagts till.",
|
|
71
|
+
"swz": "Kwengetwe likhono lekupha kalula ku-Waha.",
|
|
72
|
+
"tel": "Waha కు సులభంగా విరాళం ఇవ్వగల సామర్థ్యాన్ని జోడించారు.",
|
|
73
|
+
"tgl": "Idinagdag ang kakayahang madaling makapag-donate sa Waha.",
|
|
74
|
+
"tha": "เพิ่มความสามารถในการบริจาคให้ Waha ได้อย่างง่ายดาย",
|
|
75
|
+
"tur": "Waha'ya kolayca bağış yapma özelliği eklendi.",
|
|
76
|
+
"uig": "Waha غا ئاسانلا ئىئانە قىلىش ئىقتىدارى قوشۇلدى.",
|
|
77
|
+
"ukr": "Додано можливість легко робити пожертви для Waha.",
|
|
78
|
+
"urd": "Waha کو آسانی سے عطیہ کرنے کی سہولت شامل کر دی گئی۔",
|
|
79
|
+
"vie": "Đã thêm khả năng quyên góp dễ dàng cho Waha.",
|
|
80
|
+
"zsm": "Menambah keupayaan untuk menderma dengan mudah kepada Waha."
|
|
81
|
+
},
|
|
82
|
+
"showInApp": false
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"version": "6.5.1",
|
|
7
86
|
"notes": {
|
|
8
87
|
"eng": "Korean beta",
|
|
9
88
|
"ara": "بيتا كورية",
|
|
@@ -39,7 +118,8 @@
|
|
|
39
118
|
"urd": "کوریائی بیٹا",
|
|
40
119
|
"vie": "Bản beta tiếng Hàn",
|
|
41
120
|
"zsm": "Beta Korea"
|
|
42
|
-
}
|
|
121
|
+
},
|
|
122
|
+
"showInApp": false
|
|
43
123
|
},
|
|
44
124
|
{
|
|
45
125
|
"version": "6.5.0",
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"items": {
|
|
10
|
+
"properties": {
|
|
11
|
+
"version": {
|
|
12
|
+
"description": "The semver version of this release.",
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"notes": {
|
|
16
|
+
"additionalProperties": {
|
|
17
|
+
"type": "string"
|
|
18
|
+
},
|
|
19
|
+
"type": "object"
|
|
20
|
+
},
|
|
21
|
+
"showInApp": {
|
|
22
|
+
"description": "If true, these release notes will pop up in a modal when the user updates to the newest version.",
|
|
23
|
+
"type": "boolean"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"required": ["notes", "showInApp", "version"],
|
|
27
|
+
"type": "object"
|
|
28
|
+
},
|
|
29
|
+
"type": "array"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"required": ["$schema", "data"]
|
|
33
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"additionalProperties": false,
|
|
10
|
+
"properties": {
|
|
11
|
+
"screenshotMode": {
|
|
12
|
+
"description": "Whether or not to make the app in screenshot mode. This disables several parts of the app and sets it up to be remotely controlled via the leviathan/take_store_screenshots.py script.",
|
|
13
|
+
"type": "boolean"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"required": ["screenshotMode"],
|
|
17
|
+
"type": "object"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"required": ["$schema", "data"]
|
|
21
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./scripts.schema.json",
|
|
3
|
+
"data": [
|
|
4
|
+
{ "name": "arabic", "fontFamily": "IBMPlexSansArabic" },
|
|
5
|
+
{ "name": "cyrillic", "fontFamily": "NotoSans" },
|
|
6
|
+
{ "name": "chinese", "fontFamily": "NotoSansSC" },
|
|
7
|
+
{ "name": "devanagari", "fontFamily": "NotoSansDevanagari" },
|
|
8
|
+
{ "name": "latin", "fontFamily": "EudoxusSans" },
|
|
9
|
+
{ "name": "japanese", "fontFamily": "NotoSansJP" },
|
|
10
|
+
{ "name": "thai", "fontFamily": "NotoSansThai" },
|
|
11
|
+
{ "name": "khmer", "fontFamily": "KhmerOSContent" },
|
|
12
|
+
{ "name": "telugu", "fontFamily": "AnekTelugu" },
|
|
13
|
+
{ "name": "burmese", "fontFamily": "Padauk" },
|
|
14
|
+
{ "name": "uyghur", "fontFamily": "UKIJTuz" },
|
|
15
|
+
{ "name": "bengali", "fontFamily": "NotoSansBengali" },
|
|
16
|
+
{ "name": "korean", "fontFamily": "NotoSansKR" },
|
|
17
|
+
{ "name": "tamil", "fontFamily": "NotoSansTamil" },
|
|
18
|
+
{ "name": "georgian", "fontFamily": "NotoSansGeorgian" }
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"type": "array",
|
|
10
|
+
"items": {
|
|
11
|
+
"additionalProperties": false,
|
|
12
|
+
"properties": {
|
|
13
|
+
"name": {
|
|
14
|
+
"type": "string"
|
|
15
|
+
},
|
|
16
|
+
"fontFamily": {
|
|
17
|
+
"type": "string"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"required": ["name", "fontFamily"],
|
|
21
|
+
"type": "object"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"required": ["$schema", "data"]
|
|
26
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"items": {
|
|
10
|
+
"properties": {
|
|
11
|
+
"setId": {
|
|
12
|
+
"description": "A unique identifier for this set. This is used to identify the set in the curriculum.",
|
|
13
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}$",
|
|
14
|
+
"type": "string"
|
|
15
|
+
},
|
|
16
|
+
"name": {
|
|
17
|
+
"description": "The English name for the set. This is just for identifying the name in the backend but will not be used in the app.",
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"comment": {
|
|
21
|
+
"description": "A comment about the set. This is just for identifying the set in the backend but will not be used in the app.",
|
|
22
|
+
"type": "string"
|
|
23
|
+
},
|
|
24
|
+
"icon": {
|
|
25
|
+
"description": "The icon to use for this set. Icon SVGs are defined in the app.",
|
|
26
|
+
"enum": [
|
|
27
|
+
"bible",
|
|
28
|
+
"bricks",
|
|
29
|
+
"candle",
|
|
30
|
+
"city_light_hill",
|
|
31
|
+
"city",
|
|
32
|
+
"cross",
|
|
33
|
+
"dm_course",
|
|
34
|
+
"door",
|
|
35
|
+
"dove",
|
|
36
|
+
"fire",
|
|
37
|
+
"flower",
|
|
38
|
+
"fruit",
|
|
39
|
+
"globe_hand",
|
|
40
|
+
"globe",
|
|
41
|
+
"grapes",
|
|
42
|
+
"heart_person",
|
|
43
|
+
"heart_tear",
|
|
44
|
+
"heart",
|
|
45
|
+
"holding_hands",
|
|
46
|
+
"house",
|
|
47
|
+
"jug",
|
|
48
|
+
"man",
|
|
49
|
+
"money_hand",
|
|
50
|
+
"money",
|
|
51
|
+
"net",
|
|
52
|
+
"ocean",
|
|
53
|
+
"people_heart",
|
|
54
|
+
"people_holding_hands",
|
|
55
|
+
"people_multiplying",
|
|
56
|
+
"person_angry",
|
|
57
|
+
"person_crouching",
|
|
58
|
+
"person_crying",
|
|
59
|
+
"person_healed",
|
|
60
|
+
"person_heart",
|
|
61
|
+
"person_mountain",
|
|
62
|
+
"person_praying",
|
|
63
|
+
"person_rock",
|
|
64
|
+
"river",
|
|
65
|
+
"scale",
|
|
66
|
+
"sheep_goat",
|
|
67
|
+
"sprout",
|
|
68
|
+
"sun",
|
|
69
|
+
"three_wheat",
|
|
70
|
+
"tree",
|
|
71
|
+
"triangle",
|
|
72
|
+
"two_wheat",
|
|
73
|
+
"wave",
|
|
74
|
+
"woman"
|
|
75
|
+
],
|
|
76
|
+
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
"lessons": {
|
|
79
|
+
"items": {
|
|
80
|
+
"properties": {
|
|
81
|
+
"lessonId": {
|
|
82
|
+
"type": "string"
|
|
83
|
+
},
|
|
84
|
+
"a": {
|
|
85
|
+
"description": "The id for the question set to use for this lesson's application chapter. Must be defined in the questions curriculum.",
|
|
86
|
+
"type": "string"
|
|
87
|
+
},
|
|
88
|
+
"f": {
|
|
89
|
+
"description": "The id for the question set to use for this lesson's fellowship chapter. Must be defined in the questions curriculum.",
|
|
90
|
+
"type": "string"
|
|
91
|
+
},
|
|
92
|
+
"s": {
|
|
93
|
+
"description": "An array of scripture passages to use with this lesson.",
|
|
94
|
+
"items": {
|
|
95
|
+
"type": "string"
|
|
96
|
+
},
|
|
97
|
+
"type": "array"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"required": [
|
|
101
|
+
"lessonId"
|
|
102
|
+
],
|
|
103
|
+
"type": "object"
|
|
104
|
+
},
|
|
105
|
+
"type": "array"
|
|
106
|
+
},
|
|
107
|
+
"tag": {
|
|
108
|
+
"description": "If a topical set, the tag is a way to further categorize the set.",
|
|
109
|
+
"enum": [
|
|
110
|
+
"truth",
|
|
111
|
+
"challenge",
|
|
112
|
+
"money",
|
|
113
|
+
"people",
|
|
114
|
+
"god",
|
|
115
|
+
"jesus"
|
|
116
|
+
],
|
|
117
|
+
"type": "string"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"required": [
|
|
121
|
+
"setId",
|
|
122
|
+
"name",
|
|
123
|
+
"icon",
|
|
124
|
+
"lessons"
|
|
125
|
+
],
|
|
126
|
+
"type": "object"
|
|
127
|
+
},
|
|
128
|
+
"type": "array"
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"required": [
|
|
132
|
+
"$schema",
|
|
133
|
+
"data"
|
|
134
|
+
]
|
|
135
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {
|
|
11
|
+
"activationQuestions": {
|
|
12
|
+
"type": "array",
|
|
13
|
+
"items": {
|
|
14
|
+
"type": "string",
|
|
15
|
+
"pattern": "^[a-z]\\.[0-9]{3}$"
|
|
16
|
+
},
|
|
17
|
+
"description": "List of question IDs used for user activation"
|
|
18
|
+
},
|
|
19
|
+
"dmCourseImplementationLessonIds": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": {
|
|
22
|
+
"type": "string",
|
|
23
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}\\.[0-9]{3}$"
|
|
24
|
+
},
|
|
25
|
+
"description": "Lesson IDs for the implementation phase of the disciple making course"
|
|
26
|
+
},
|
|
27
|
+
"dmCourseLessonIds": {
|
|
28
|
+
"type": "array",
|
|
29
|
+
"items": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}\\.[0-9]{3}$"
|
|
32
|
+
},
|
|
33
|
+
"description": "All lesson IDs in the disciple making course"
|
|
34
|
+
},
|
|
35
|
+
"dmCourseSectionLessonIds": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"items": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}\\.[0-9]{3}$"
|
|
40
|
+
},
|
|
41
|
+
"description": "Lesson IDs that represent major sections in the disciple making course"
|
|
42
|
+
},
|
|
43
|
+
"dmCourseSetId": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}$",
|
|
46
|
+
"description": "The set ID for the disciple making course"
|
|
47
|
+
},
|
|
48
|
+
"dmCourseTrailerLessonId": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}\\.[0-9]{3}$",
|
|
51
|
+
"description": "The lesson ID for the disciple making course trailer"
|
|
52
|
+
},
|
|
53
|
+
"dmCourseVideoOnlyLessonIds": {
|
|
54
|
+
"type": "array",
|
|
55
|
+
"items": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}\\.[0-9]{3}$"
|
|
58
|
+
},
|
|
59
|
+
"description": "Lesson IDs that only contain video content"
|
|
60
|
+
},
|
|
61
|
+
"dmCourseVisionVideoLessonIds": {
|
|
62
|
+
"type": "array",
|
|
63
|
+
"items": {
|
|
64
|
+
"type": "string",
|
|
65
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}\\.[0-9]{3}$"
|
|
66
|
+
},
|
|
67
|
+
"description": "Lesson IDs for vision videos in the disciple making course"
|
|
68
|
+
},
|
|
69
|
+
"dmCourseWeek1LessonId": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}\\.[0-9]{3}$",
|
|
72
|
+
"description": "The lesson ID for week 1 of the disciple making course"
|
|
73
|
+
},
|
|
74
|
+
"dmCourseWeek2LessonId": {
|
|
75
|
+
"type": "string",
|
|
76
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}\\.[0-9]{3}$",
|
|
77
|
+
"description": "The lesson ID for week 2 of the disciple making course"
|
|
78
|
+
},
|
|
79
|
+
"evaluationQuestionLessonIds": {
|
|
80
|
+
"type": "array",
|
|
81
|
+
"items": {
|
|
82
|
+
"type": "string",
|
|
83
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}\\.[0-9]{3}$"
|
|
84
|
+
},
|
|
85
|
+
"description": "Lesson IDs that contain evaluation questions"
|
|
86
|
+
},
|
|
87
|
+
"growingAsDmcSetIds": {
|
|
88
|
+
"type": "array",
|
|
89
|
+
"items": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}$"
|
|
92
|
+
},
|
|
93
|
+
"description": "Set IDs for the growing as a disciple maker content"
|
|
94
|
+
},
|
|
95
|
+
"introductionLessonIds": {
|
|
96
|
+
"type": "array",
|
|
97
|
+
"items": {
|
|
98
|
+
"type": "string",
|
|
99
|
+
"pattern": "^[0-9]{2}\\.[0-9]{3}\\.[0-9]{3}$"
|
|
100
|
+
},
|
|
101
|
+
"description": "Lesson IDs for introductory content"
|
|
102
|
+
},
|
|
103
|
+
"previousActivationQuestions": {
|
|
104
|
+
"type": "array",
|
|
105
|
+
"items": {
|
|
106
|
+
"type": "string",
|
|
107
|
+
"pattern": "^[a-z]\\.[0-9]{3}$"
|
|
108
|
+
},
|
|
109
|
+
"description": "Previous activation question IDs (deprecated)"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"required": [
|
|
113
|
+
"activationQuestions",
|
|
114
|
+
"dmCourseImplementationLessonIds",
|
|
115
|
+
"dmCourseLessonIds",
|
|
116
|
+
"dmCourseSectionLessonIds",
|
|
117
|
+
"dmCourseSetId",
|
|
118
|
+
"dmCourseTrailerLessonId",
|
|
119
|
+
"dmCourseVideoOnlyLessonIds",
|
|
120
|
+
"dmCourseVisionVideoLessonIds",
|
|
121
|
+
"dmCourseWeek1LessonId",
|
|
122
|
+
"dmCourseWeek2LessonId",
|
|
123
|
+
"evaluationQuestionLessonIds",
|
|
124
|
+
"growingAsDmcSetIds",
|
|
125
|
+
"introductionLessonIds",
|
|
126
|
+
"previousActivationQuestions"
|
|
127
|
+
],
|
|
128
|
+
"additionalProperties": false
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"required": ["$schema", "data"]
|
|
132
|
+
}
|