-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock-religions.js
43 lines (43 loc) · 1.35 KB
/
mock-religions.js
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
exports.mockReligions =
[
{
"id": "1111111",
"name": "Buddhism",
"historicalRoots": "Roots B",
"basicBeliefs": "Eight-Fold Path",
"practices": "meditation on citta",
"organization": "Dhamma",
"books": ["The Dhammapada"],
"created": 1470016976609
},
{
"id": "2222222",
"name": "Christianity",
"historicalRoots": "Root C",
"basicBeliefs": "Christ as Messiah",
"practices": "prayer to Christ",
"organization": "Church",
"books": ["The Holy Bible"],
"created": 1470012976609
},
{
"id": "333333",
"name": "Islam",
"historicalRoots": "Root I",
"basicBeliefs": "Muhammad as Allah's prophet",
"practices": "prayer to Allah",
"organization": "Mosque",
"books": ["The Quran"],
"created": 1470011976609
},
{
"id": "4444444",
"name": "Judaism",
"historicalRoots": "Root J",
"basicBeliefs": "The Shema Yisrael",
"practices": "prayer to Adonai",
"organization": "Synagogue",
"books": ["The Torah"],
"created": 1470009976609
}
];