-
Notifications
You must be signed in to change notification settings - Fork 6
/
puritan_catechism.json
1432 lines (1432 loc) · 56.7 KB
/
puritan_catechism.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Metadata": {
"Title": "Puritan Catechism",
"AlternativeTitles": [],
"Year": "1855",
"Authors": [
"Charles Spurgeon"
],
"Location": "London, England",
"OriginalLanguage": "English",
"OriginStory": "",
"SourceUrl": "https://www.blueletterbible.org/study/ccc/chs_puritancatechism.cfm",
"SourceAttribution": "Public Domain",
"CreedFormat": "Catechism"
},
"Data": [
{
"Number": 1,
"Question": "What is the chief end of man?",
"Answer": "Man's chief end is to glorify God, and to enjoy him for ever",
"AnswerWithProofs": "Man's chief end is to glorify God, [1] and to enjoy him for ever [2]",
"Proofs": [
{
"Id": 1,
"References": ["1Cor.10.31"]
},
{
"Id": 2,
"References": ["Ps.73.25-Ps.73.26"]
}
]
},
{
"Number": 2,
"Question": "What rule has God given to direct us how we may glorify him?",
"Answer": "The Word of God which is contained in the Scriptures of the Old and New Testaments is the only rule to direct us how we may glorify God and enjoy him.",
"AnswerWithProofs": "The Word of God which is contained in the Scriptures of the Old and New Testaments [1] is the only rule to direct us how we may glorify God and enjoy him [2].",
"Proofs": [
{
"Id": 1,
"References": ["Eph.2.20", "2Tim.3.16"]
},
{
"Id": 2,
"References": ["1John.1.3"]
}
]
},
{
"Number": 3,
"Question": "What do the Scriptures principally teach?",
"Answer": "The Scriptures principally teach what man is to believe concerning God, and what duty God requires of man.",
"AnswerWithProofs": "The Scriptures principally teach what man is to believe concerning God, and what duty God requires of man [1].",
"Proofs": [
{
"Id": 1,
"References": ["2Tim.1.13", "Eccl.12.13"]
}
]
},
{
"Number": 4,
"Question": "What is God?",
"Answer": "God is Spirit, infinite, eternal, and unchangeable, in his being, wisdom, power, holiness, justice, goodness and truth.",
"AnswerWithProofs": "God is Spirit [1], infinite [2], eternal [3], and unchangeable [4], in his being, [5], wisdom, power [6], holiness [7], justice, goodness and truth [8].",
"Proofs": [
{
"Id": 1,
"References": ["John.4.24"]
},
{
"Id": 2,
"References": ["Job.11.7"]
},
{
"Id": 3,
"References": ["Ps.90.2", "1Tim.1.17"]
},
{
"Id": 4,
"References": ["Jas.1.17"]
},
{
"Id": 5,
"References": ["Exod.3.14"]
},
{
"Id": 6,
"References": ["Ps.147.5"]
},
{
"Id": 7,
"References": ["Rev.4.8"]
},
{
"Id": 8,
"References": ["Exod.34.6-Exod.34.7"]
}
]
},
{
"Number": 5,
"Question": "Are there more Gods than one?",
"Answer": "There is but one only, the living and true God.",
"AnswerWithProofs": "There is but one only [1], the living and true God [2].",
"Proofs": [
{
"Id": 1,
"References": ["Deut.6.4"]
},
{
"Id": 2,
"References": ["Jer.10.10"]
}
]
},
{
"Number": 6,
"Question": "How many persons are there in the Godhead?",
"Answer": "There are three persons in the Godhead, the Father, the Son, and the Holy Spirit, and these three are one God, the same in essence, equal in power and glory.",
"AnswerWithProofs": "There are three persons in the Godhead, the Father, the Son, and the Holy Spirit, and these three are one God, the same in essence, equal in power and glory [1].",
"Proofs": [
{
"Id": 1,
"References": ["1John.5.7", "Matt.28.19"]
}
]
},
{
"Number": 7,
"Question": "What are the decrees of God?",
"Answer": "The decrees of God are his eternal purpose according to the counsel of his own will, whereby for his own glory he has foreordained whatever comes to pass.",
"AnswerWithProofs": "The decrees of God are his eternal purpose according to the counsel of his own will, whereby for his own glory he has foreordained whatever comes to pass [1].",
"Proofs": [
{
"Id": 1,
"References": ["Eph.1.11-Eph.1.12"]
}
]
},
{
"Number": 8,
"Question": "How does God execute his decrees?",
"Answer": "God executes his decrees in the works of creation, and providence.",
"AnswerWithProofs": "God executes his decrees in the works of creation [1], and providence [2].",
"Proofs": [
{
"Id": 1,
"References": ["Rev.4.11"]
},
{
"Id": 2,
"References": ["Dan.4.35"]
}
]
},
{
"Number": 9,
"Question": "What is the work of creation?",
"Answer": "The work of creation is God's making all things of nothing, by the Word of his power, in six normal consecutive days, and all very good.",
"AnswerWithProofs": "The work of creation is God's making all things [1] of nothing, by the Word of his power [2], in six normal consecutive days [3], and all very good [4].",
"Proofs": [
{
"Id": 1,
"References": ["Gen.1.1"]
},
{
"Id": 2,
"References": ["Heb.11.3"]
},
{
"Id": 3,
"References": ["Exod.20.11"]
},
{
"Id": 4,
"References": ["Gen.1.31"]
}
]
},
{
"Number": 10,
"Question": "How did God create man?",
"Answer": "God created man, male and female, after his own image, in knowledge, righteousness, and holiness with dominion over the creatures.",
"AnswerWithProofs": "God created man, male and female, after his own image [1], in knowledge, righteousness, and holiness [2] with dominion over the creatures [3].",
"Proofs": [
{
"Id": 1,
"References": ["Gen.1.27"]
},
{
"Id": 2,
"References": ["Col.3.10", "Eph.4.24"]
},
{
"Id": 3,
"References": ["Gen.1.28"]
}
]
},
{
"Number": 11,
"Question": "What are God's works of providence?",
"Answer": "God's works of providence are his most holy, wise, and powerful preserving and governing all his creatures, and all their actions.",
"AnswerWithProofs": "God's works of providence are his most holy [1], wise [2], and powerful [3] preserving and governing all his creatures, and all their actions [4].",
"Proofs": [
{
"Id": 1,
"References": ["Ps.145.17"]
},
{
"Id": 2,
"References": ["Isa.28.29"]
},
{
"Id": 3,
"References": ["Heb.1.3"]
},
{
"Id": 4,
"References": ["Ps.103.19", "Matt.10.29"]
}
]
},
{
"Number": 12,
"Question": "What special act of providence did God exercise toward man in the state wherein he was created?",
"Answer": "When God had created man, he entered into a covenant of life with him, upon condition of perfect obedience, forbidding him to eat of the tree of the knowledge of good and evil, upon pain of death.",
"AnswerWithProofs": "When God had created man, he entered into a covenant of life with him, upon condition of perfect obedience [1], forbidding him to eat of the tree of the knowledge of good and evil, upon pain of death [2].",
"Proofs": [
{
"Id": 1,
"References": ["Gal.3.12"]
},
{
"Id": 2,
"References": ["Gen.2.17"]
}
]
},
{
"Number": 13,
"Question": "Did our first parents continue in the state wherein they were created?",
"Answer": "Our first parents being left to the freedom of their own will, fell from the state wherein they were created, by sinning against God by eating the forbidden fruit.",
"AnswerWithProofs": "Our first parents being left to the freedom of their own will, fell from the state wherein they were created, by sinning against God [1] by eating the forbidden fruit [2].",
"Proofs": [
{
"Id": 1,
"References": ["Eccl.7.29"]
},
{
"Id": 2,
"References": ["Gen.3.6-Gen.3.8"]
}
]
},
{
"Number": 14,
"Question": "What is sin?",
"Answer": "Sin is any want of conformity to, or transgression of the law of God.",
"AnswerWithProofs": "Sin is any want of conformity to, or transgression of the law of God [1].",
"Proofs": [
{
"Id": 1,
"References": ["1John.3.4"]
}
]
},
{
"Number": 15,
"Question": "Did all mankind fall in Adam's first transgression?",
"Answer": "The covenant being made with Adam, not only for himself but for his posterity, all mankind descending from him by ordinary generation, sinned in him, and fell with him in his first transgression.",
"AnswerWithProofs": "The covenant being made with Adam, not only for himself but for his posterity, all mankind descending from him by ordinary generation, sinned in him, and fell with him in his first transgression [1].",
"Proofs": [
{
"Id": 1,
"References": ["1Cor.15.22", "Rom.5.12"]
}
]
},
{
"Number": 16,
"Question": "Into what estate did the fall bring mankind?",
"Answer": "The fall brought mankind into a state of sin and misery.",
"AnswerWithProofs": "The fall brought mankind into a state of sin and misery [1].",
"Proofs": [
{
"Id": 1,
"References": ["Rom.5.18"]
}
]
},
{
"Number": 17,
"Question": "Wherein consists the sinfulness of that state whereinto man fell?",
"Answer": "The sinfulness of that state whereinto man fell, consists in the guilt of Adam's first sin, the want of original righteousness, and the corruption of his whole nature, which is commonly called original sin, together with all actual transgressions which proceed from it.",
"AnswerWithProofs": "The sinfulness of that state whereinto man fell, consists in the guilt of Adam's first sin [1], the want of original righteousness [2], and the corruption of his whole nature, which is commonly called original sin [3], together with all actual transgressions which proceed from it [4].",
"Proofs": [
{
"Id": 1,
"References": ["Rom.5.19"]
},
{
"Id": 2,
"References": ["Rom.3.10"]
},
{
"Id": 3,
"References": ["Eph.2.1", "Ps.51.5"]
},
{
"Id": 4,
"References": ["Matt.15.19"]
}
]
},
{
"Number": 18,
"Question": "What is the misery of that state whereinto man fell?",
"Answer": "All mankind, by their fall, lost communion with God, are under his wrath and curse, and so made liable to all the miseries in this life, to death itself, and to the pains of hell for ever.",
"AnswerWithProofs": "All mankind, by their fall, lost communion with God [1], are under his wrath and curse [2], and so made liable to all the miseries in this life, to death itself, and to the pains of hell for ever [3].",
"Proofs": [
{
"Id": 1,
"References": ["Gen.3.8,Gen.3.24"]
},
{
"Id": 2,
"References": ["Eph.2.3", "Gal.3.10"]
},
{
"Id": 3,
"References": ["Rom.6.23", "Matt.25.41"]
}
]
},
{
"Number": 19,
"Question": "Did God leave all mankind to perish in the state of sin and misery?",
"Answer": "God having, out of his good pleasure from all eternity, elected some to everlasting life did enter into a covenant of grace to deliver them out of the state of sin and misery, and to bring them into a state of salvation by a Redeemer.",
"AnswerWithProofs": "God having, out of his good pleasure from all eternity, elected some to everlasting life [1] did enter into a covenant of grace to deliver them out of the state of sin and misery, and to bring them into a state of salvation by a Redeemer [2].",
"Proofs": [
{
"Id": 1,
"References": ["2Thess.2.13"]
},
{
"Id": 2,
"References": ["Rom.5.21"]
}
]
},
{
"Number": 20,
"Question": "Who is the Redeemer of God's elect?",
"Answer": "The only Redeemer of God's elect is the Lord Jesus Christ, who being the eternal Son of God, became man and so was and continues to be God and man, in two distinct natures and one person for ever.",
"AnswerWithProofs": "The only Redeemer of God's elect is the Lord Jesus Christ [1], who being the eternal Son of God, became man [2] and so was and continues to be God and man, in two distinct natures and one person for ever [3].",
"Proofs": [
{
"Id": 1,
"References": ["1Tim.2.5"]
},
{
"Id": 2,
"References": ["John.1.14"]
},
{
"Id": 3,
"References": ["1Tim.3.16", "Col.2.9"]
}
]
},
{
"Number": 21,
"Question": "How did Christ, being the Son of God, become man?",
"Answer": "Christ, the son of God, became man by taking to himself a true body and a reasonable soul, being conceived by the power of the Holy Spirit in the Virgin Mary, and born of her yet without sin.",
"AnswerWithProofs": "Christ, the son of God, became man by taking to himself a true body [1] and a reasonable soul [2], being conceived by the power of the Holy Spirit in the Virgin Mary, and born of her [3] yet without sin [4].",
"Proofs": [
{
"Id": 1,
"References": ["Heb.2.14"]
},
{
"Id": 2,
"References": ["Matt.26.38", "Heb.4.15"]
},
{
"Id": 3,
"References": ["Luke.1.31,Luke.1.35"]
},
{
"Id": 4,
"References": ["Heb.7.26"]
}
]
},
{
"Number": 22,
"Question": "What offices does Christ execute as our Redeemer?",
"Answer": "Christ as our Redeemer executes the offices of a prophet, of a priest, and of a king, both in his state of humiliation and exaltation.",
"AnswerWithProofs": "Christ as our Redeemer executes the offices of a prophet [1], of a priest [2], and of a king [3], both in his state of humiliation and exaltation.",
"Proofs": [
{
"Id": 1,
"References": ["Acts.3.22"]
},
{
"Id": 2,
"References": ["Heb.5.6"]
},
{
"Id": 3,
"References": ["Ps.2.6"]
}
]
},
{
"Number": 23,
"Question": "How does Christ execute the office of a prophet?",
"Answer": "Christ executes the office of a prophet, in revealing to us, by his Word, and Spirit, the will of God for our salvation.",
"AnswerWithProofs": "Christ executes the office of a prophet, in revealing to us [1], by his Word [2], and Spirit [3], the will of God for our salvation.",
"Proofs": [
{
"Id": 1,
"References": ["John.1.18"]
},
{
"Id": 2,
"References": ["John.20.31"]
},
{
"Id": 3,
"References": ["John.14.26"]
}
]
},
{
"Number": 24,
"Question": "How does Christ execute the office of a priest?",
"Answer": "Christ executes the office of a priest, in his once offering up himself a sacrifice to satisfy divine justice, and to reconcile us to God and in making continual intercession for us.",
"AnswerWithProofs": "Christ executes the office of a priest, in his once offering up himself a sacrifice to satisfy divine justice [1], and to reconcile us to God [2] and in making continual intercession for us [3].",
"Proofs": [
{
"Id": 1,
"References": ["Heb.9.28"]
},
{
"Id": 2,
"References": ["Heb.2.17"]
},
{
"Id": 3,
"References": ["Heb.7.25"]
}
]
},
{
"Number": 25,
"Question": "How does Christ execute the office of a king?",
"Answer": "Christ executes the office of a king in subduing us to himself, in ruling and defending us and in restraining and conquering all his and our enemies.",
"AnswerWithProofs": "Christ executes the office of a king in subduing us to himself [1], in ruling and defending us [2] and in restraining and conquering all his and our enemies.",
"Proofs": [
{
"Id": 1,
"References": ["Ps.110.3"]
},
{
"Id": 2,
"References": ["Matt.2.6", "1Cor.15.25"]
}
]
},
{
"Number": 26,
"Question": "Wherein did Christ's humiliation consist?",
"Answer": "Christ's humiliation consisted in his being born, and that in a low condition made under the law, undergoing the miseries of this life, the wrath of God, and the cursed death of the cross; in being buried, and continuing under the power of death for a time.",
"AnswerWithProofs": "Christ's humiliation consisted in his being born, and that in a low condition [1] made under the law [2], undergoing the miseries of this life [3], the wrath of God [4], and the cursed death of the cross [5]; in being buried, and continuing under the power of death for a time [6].",
"Proofs": [
{
"Id": 1,
"References": ["Luke.2.7"]
},
{
"Id": 2,
"References": ["Gal.4.4"]
},
{
"Id": 3,
"References": ["Isa.53.3"]
},
{
"Id": 4,
"References": ["Matt.27.46"]
},
{
"Id": 5,
"References": ["Phil.2.8"]
},
{
"Id": 6,
"References": ["Matt.12.40"]
}
]
},
{
"Number": 27,
"Question": "Wherein consists Christ's exaltation?",
"Answer": "Christ's exaltation consists in his rising again from the dead on the third day, in ascending up into heaven, and sitting at the right hand of God the Father, and in coming to judge the world at the last day.",
"AnswerWithProofs": "Christ's exaltation consists in his rising again from the dead on the third day [1], in ascending up into heaven, and sitting at the right hand of God the Father [2], and in coming to judge the world at the last day [3].",
"Proofs": [
{
"Id": 1,
"References": ["1Cor.15.4"]
},
{
"Id": 2,
"References": ["Mark.16.19"]
},
{
"Id": 3,
"References": ["Acts.17.31"]
}
]
},
{
"Number": 28,
"Question": "How are we made partakers of the redemption purchased by Christ?",
"Answer": "We are made partakers of the redemption purchased by Christ, by the effectual application of it to us by his Holy Spirit.",
"AnswerWithProofs": "We are made partakers of the redemption purchased by Christ, by the effectual application of it to us [1] by his Holy Spirit [2].",
"Proofs": [
{
"Id": 1,
"References": ["John.1.12"]
},
{
"Id": 2,
"References": ["Titus.3.5-Titus.3.6"]
}
]
},
{
"Number": 29,
"Question": "How does the Spirit apply to us the redemption purchased by Christ?",
"Answer": "The Spirit applies to us the redemption purchased by Christ, by working faith in us and by it uniting us to Christ in our effectual calling.",
"AnswerWithProofs": "The Spirit applies to us the redemption purchased by Christ, by working faith in us [1] and by it uniting us to Christ in our effectual calling [2].",
"Proofs": [
{
"Id": 1,
"References": ["Eph.2.8"]
},
{
"Id": 2,
"References": ["Eph.3.17"]
}
]
},
{
"Number": 30,
"Question": "What is effectual calling?",
"Answer": "Effectual calling is the work of God's Spirit whereby, convincing us of our sin and misery, enlightening our minds in the knowledge of Christ, and renewing our wills, he does persuade and enable us to embrace Jesus Christ freely offered to us in the gospel.",
"AnswerWithProofs": "Effectual calling is the work of God's Spirit [1] whereby, convincing us of our sin and misery [2], enlightening our minds in the knowledge of Christ [3], and renewing our wills [4], he does persuade and enable us to embrace Jesus Christ freely offered to us in the gospel [5].",
"Proofs": [
{
"Id": 1,
"References": ["2Tim.1.9"]
},
{
"Id": 2,
"References": ["Acts.2.37"]
},
{
"Id": 3,
"References": ["Acts.26.18"]
},
{
"Id": 4,
"References": ["Ezek.36.26"]
},
{
"Id": 5,
"References": ["John.6.44-John.6.45"]
}
]
},
{
"Number": 31,
"Question": "What benefits do they who are effectually called, partake of in this life?",
"Answer": "They who are effectually called, do in this life partake of justification, adoption, sanctification, and the various benefits which in this life do either accompany, or flow from them.",
"AnswerWithProofs": "They who are effectually called, do in this life partake of justification, [1], adoption [2], sanctification, and the various benefits which in this life do either accompany, or flow from them [3].",
"Proofs": [
{
"Id": 1,
"References": ["Rom.8.30"]
},
{
"Id": 2,
"References": ["Eph.1.5"]
},
{
"Id": 3,
"References": ["1Cor.1.30"]
}
]
},
{
"Number": 32,
"Question": "What is justification?",
"Answer": "Justification is an act of God's free grace, wherein he pardons all our sins, and accepts us as righteous in his sight only for the righteousness of Christ imputed to us, and received by faith alone.",
"AnswerWithProofs": "Justification is an act of God's free grace, wherein he pardons all our sins [1], and accepts us as righteous in his sight [2] only for the righteousness of Christ imputed to us [3], and received by faith alone [4].",
"Proofs": [
{
"Id": 1,
"References": ["Rom.3.24", "Eph.1.7"]
},
{
"Id": 2,
"References": ["2Cor.5.21"]
},
{
"Id": 3,
"References": ["Rom.5.19"]
},
{
"Id": 4,
"References": ["Gal.2.16", "Phil.3.9"]
}
]
},
{
"Number": 33,
"Question": "What is adoption?",
"Answer": "Adoption is an act of God's free grace whereby we are received into the number, and have a right to all the privileges of the sons of God.",
"AnswerWithProofs": "Adoption is an act of God's free grace [1] whereby we are received into the number, and have a right to all the privileges of the sons of God [2].",
"Proofs": [
{
"Id": 1,
"References": ["1John.3.1"]
},
{
"Id": 2,
"References": ["John.1.12", "Rom.8.17"]
}
]
},
{
"Number": 34,
"Question": "What is sanctification?",
"Answer": "Sanctification is the work of God's Spirit whereby we are renewed in the whole man after the image of God and are enabled more and more to die to sin, and live to righteousness.",
"AnswerWithProofs": "Sanctification is the work of God's Spirit [1] whereby we are renewed in the whole man after the image of God [2] and are enabled more and more to die to sin, and live to righteousness [3].",
"Proofs": [
{
"Id": 1,
"References": ["2Thess.2.13"]
},
{
"Id": 2,
"References": ["Eph.4.24"]
},
{
"Id": 3,
"References": ["Rom.6.11"]
}
]
},
{
"Number": 35,
"Question": "What are the benefits which in this life do either accompany or flow from justification, adoption, and sanctification?",
"Answer": "The benefits which in this life do accompany or flow from justification, are assurance of God's love, peace of conscience, joy in the Holy Spirit, increase of grace, perseverance in it to the end.",
"AnswerWithProofs": "The benefits which in this life do accompany or flow from justification [1], are assurance of God's love, peace of conscience, joy in the Holy Spirit [2], increase of grace, perseverance in it to the end [3].",
"Proofs": [
{
"Id": 1,
"References": ["Rom.5.1-Rom.5.2,Rom.5.5"]
},
{
"Id": 2,
"References": ["Rom.14.17"]
},
{
"Id": 3,
"References": ["Prov.4.18", "1John.5.13", "1Pet.1.5"]
}
]
},
{
"Number": 36,
"Question": "What benefits do believers receive from Christ at their death?",
"Answer": "The souls of believers are at their death made perfect in holiness and do immediately pass into glory, and their bodies, being still united to Christ do rest in their graves till the resurrection.",
"AnswerWithProofs": "The souls of believers are at their death made perfect in holiness [1] and do immediately pass into glory [2], and their bodies, being still united to Christ [3] do rest in their graves [4] till the resurrection [5].",
"Proofs": [
{
"Id": 1,
"References": ["Heb.12.23"]
},
{
"Id": 2,
"References": ["Phil.1.23", "2Cor.5.8", "Luke.23.43"]
},
{
"Id": 3,
"References": ["1Thess.4.14"]
},
{
"Id": 4,
"References": ["Isa.57.2"]
},
{
"Id": 5,
"References": ["Job.19.26"]
}
]
},
{
"Number": 37,
"Question": "What benefits do believers receive from Christ at the resurrection?",
"Answer": "At the resurrection, believers being raised up in glory, shall be openly acknowledged and acquitted in the day of judgment, and made perfectly blessed both in soul and body in the full enjoying of God to all eternity.",
"AnswerWithProofs": "At the resurrection, believers being raised up in glory [1], shall be openly acknowledged and acquitted in the day of judgment [2], and made perfectly blessed both in soul and body in the full enjoying of God [3] to all eternity [4].",
"Proofs": [
{
"Id": 1,
"References": ["1Cor.15.43"]
},
{
"Id": 2,
"References": ["Matt.10.32"]
},
{
"Id": 3,
"References": ["1John.3.2"]
},
{
"Id": 4,
"References": ["1Thess.4.17"]
}
]
},
{
"Number": 38,
"Question": "What shall be done to the wicked at their death?",
"Answer": "The souls of the wicked shall at their death be cast into the torments of hell, and their bodies lie in their graves till the resurrection and judgment of the great day.",
"AnswerWithProofs": "The souls of the wicked shall at their death be cast into the torments of hell [1], and their bodies lie in their graves till the resurrection and judgment of the great day [2].",
"Proofs": [
{
"Id": 1,
"References": ["Luke.16.22-Luke.16.24"]
},
{
"Id": 2,
"References": ["Ps.49.14"]
}
]
},
{
"Number": 39,
"Question": "What shall be done to the wicked at the day of judgment?",
"Answer": "At the day of judgment the bodies of the wicked being raised out of their graves, shall be sentenced, together with their souls, to unspeakable torments with the devil and his angels for ever.",
"AnswerWithProofs": "At the day of judgment the bodies of the wicked being raised out of their graves, shall be sentenced, together with their souls, to unspeakable torments with the devil and his angels for ever [1].",
"Proofs": [
{
"Id": 1,
"References": ["Dan.12.2", "John.5.28-John.5.29", "2Thess.1.9", "Matt.25.41"]
}
]
},
{
"Number": 40,
"Question": "What did God reveal to man for the rule of his obedience?",
"Answer": "The rule which God first revealed to man for his obedience is the moral law which is summarised in the ten commandments.",
"AnswerWithProofs": "The rule which God first revealed to man for his obedience is the moral law [1] which is summarised in the ten commandments.",
"Proofs": [
{
"Id": 1,
"References": ["Deut.10.4", "Matt.19.17"]
}
]
},
{
"Number": 41,
"Question": "What is the sum of the ten commandments?",
"Answer": "The sum of the ten commandments is to love the Lord our God with all our heart, with all our soul, with all our strength, and with all our mind; and our neighbour as ourselves.",
"AnswerWithProofs": "The sum of the ten commandments is to love the Lord our God with all our heart, with all our soul, with all our strength, and with all our mind; and our neighbour as ourselves [1].",
"Proofs": [
{
"Id": 1,
"References": ["Matt.22.37-Matt.22.40"]
}
]
},
{
"Number": 42,
"Question": "Which is the first commandment?",
"Answer": "The first commandment is, Thou shalt have no other gods before me."
},
{
"Number": 43,
"Question": "What is required in the first commandment?",
"Answer": "The first commandment requires us to know, and acknowledge God to be the only true God, and our God, and to worship and glorify him accordingly.",
"AnswerWithProofs": "The first commandment requires us to know [1], and acknowledge God to be the only true God, and our God [2], and to worship and glorify him accordingly [3].",
"Proofs": [
{
"Id": 1,
"References": ["1Chr.28.9"]
},
{
"Id": 2,
"References": ["Deut.26.17"]
},
{
"Id": 3,
"References": ["Matt.4.10"]
}
]
},
{
"Number": 44,
"Question": "Which is the second commandment?",
"Answer": "The second commandment is, \"Thou shalt not make unto thee any graven image, or any likeness of any thing that is in heaven above, or that is in the earth beneath, or that is in the water under the earth: Thou shalt not bow down thyself to them, nor serve them: for I the Lord thy God am a jealous God, visiting the iniquity of the fathers upon the children unto the third and fourth generation of them that hate me; and shewing mercy unto thousands of them that love me, and keep my commandments.\""
},
{
"Number": 45,
"Question": "What is required in the second commandment?",
"Answer": "The second commandment requires the receiving, observing, and keeping pure and entire all such religious worship and ordinances as God has appointed in his Word.",
"AnswerWithProofs": "The second commandment requires the receiving, observing [1], and keeping pure and entire all such religious worship and ordinances as God has appointed in his Word [2].",
"Proofs": [
{
"Id": 1,
"References": ["Deut.32.46", "Matt.28.20"]
},
{
"Id": 2,
"References": ["Deut.12.32"]
}
]
},
{
"Number": 46,
"Question": "What is forbidden in the second commandment?",
"Answer": "The second commandment forbids the worshipping of God by images. or any other way not appointed in his Word.",
"AnswerWithProofs": "The second commandment forbids the worshipping of God by images [1]. or any other way not appointed in his Word [2].",
"Proofs": [
{
"Id": 1,
"References": ["Deut.4.15-Deut.4.16"]
},
{
"Id": 2,
"References": ["Col.2.18"]
}
]
},
{
"Number": 47,
"Question": "Which is the third commandment?",
"Answer": "The third commandment is, Thou shalt not take the name of the Lord thy God in vain; for the Lord will not hold him guiltless that takes his name in vain."
},
{
"Number": 48,
"Question": "What is required in the third commandment?",
"Answer": "The third commandment requires the holy and reverent use of God's names, titles, attributes, ordinances, Word, and works.",
"AnswerWithProofs": "The third commandment requires the holy and reverent use of God's names [1], titles, attributes [2], ordinances [3], Word [4], and works [5].",
"Proofs": [
{
"Id": 1,
"References": ["Ps.29.2"]
},
{
"Id": 2,
"References": ["Rev.15.3-Rev.15.4"]
},
{
"Id": 3,
"References": ["Eccl.5.1"]
},
{
"Id": 4,
"References": ["Ps.138.2"]
},
{
"Id": 5,
"References": ["Job.36.24", "Deut.28.58-Deut.28.59"]
}
]
},
{
"Number": 49,
"Question": "Which is the fourth commandment?",
"Answer": "The fourth commandment is, Remember the Sabbath day, to keep it holy. Six days shalt thou labour, and do all thy work: but the seventh day is the Sabbath of the Lord thy God: in it thou shalt not do any work, thou, nor thy son, nor thy daughter, thy manservant, nor thy maidservant, nor they cattle, nor thy stranger that is within thy gates. For in six days the Lord made heaven and earth, the sea, and all that in them is, and rested the seventh day: wherefore the Lord blessed the Sabbath day and hallowed it."
},
{
"Number": 50,
"Question": "What is required in the fourth commandment?",
"Answer": "The fourth commandment requires the keeping holy to God such set times as he has appointed in his Word, expressly one whole day in seven, to be a holy Sabbath to himself.",
"AnswerWithProofs": "The fourth commandment requires the keeping holy to God such set times as he has appointed in his Word, expressly one whole day in seven, to be a holy Sabbath to himself [1].",
"Proofs": [
{
"Id": 1,
"References": ["Lev.19.30", "Deut.5.12"]
}
]
},
{
"Number": 51,
"Question": "How is the Sabbath to be sanctified?",
"Answer": "The Sabbath is to be sanctified by a holy resting all that day, even from such worldly employments and recreations as are lawful on other days, and spending the whole time in the public and private exercises of God's worship, except so much as is taken up in the works of necessity and mercy.",
"AnswerWithProofs": "The Sabbath is to be sanctified by a holy resting all that day, even from such worldly employments and recreations as are lawful on other days [1], and spending the whole time in the public and private exercises of God's worship [2], except so much as is taken up in the works of necessity and mercy [3].",
"Proofs": [
{
"Id": 1,
"References": ["Lev.23.3"]
},
{
"Id": 2,
"References": ["Ps.92.1-Ps.92.2", "Isa.58.13-Isa.58.14"]
},
{
"Id": 3,
"References": ["Matt.12.11-Matt.12.12"]
}
]
},
{
"Number": 52,
"Question": "Which is the fifth commandment?",
"Answer": "The fifth commandment is, Honour thy father and thy mother: that thy days may be long upon the land which the Lord thy God giveth thee."
},
{
"Number": 53,
"Question": "What is required in the fifth commandment?",
"Answer": "The fifth commandment requires the preserving the honour, and performing the duties belonging to every one in their various positions and relationships as superiors, inferiors, or equals.",
"AnswerWithProofs": "The fifth commandment requires the preserving the honour, and performing the duties belonging to every one in their various positions and relationships as superiors [1], inferiors [2], or equals [3].",
"Proofs": [
{
"Id": 1,
"References": ["Eph.5.21-Eph.5.22", "Eph.6.1,Eph.6.5,Rom.13.1"]
},
{
"Id": 2,
"References": ["Eph.6.9"]
},
{
"Id": 3,
"References": ["Rom.12.10"]
}
]
},
{
"Number": 54,
"Question": "What is the reason annexed to the fifth commandment?",
"Answer": "The reason annexed to the fifth commandment is, a promise of long life and prosperity -- as far as it shall serve for God's glory, and their own good -- to all such as keep this commandment.",
"AnswerWithProofs": "The reason annexed to the fifth commandment is, a promise of long life and prosperity -- as far as it shall serve for God's glory, and their own good -- to all such as keep this commandment [1].",
"Proofs": [
{
"Id": 1,
"References": ["Eph.6.2-Eph.6.3"]
}
]
},
{
"Number": 55,
"Question": "Which is the sixth commandment?",
"Answer": "The sixth commandment is, Thou shalt not kill."
},
{
"Number": 56,
"Question": "What is forbidden in the sixth commandment?",
"Answer": "The sixth commandment forbids the taking away of our own life, or the life of our neighbour unjustly, or whatever tends to it.",
"AnswerWithProofs": "The sixth commandment forbids the taking away of our own life [1], or the life of our neighbour unjustly [2], or whatever tends to it [3].",
"Proofs": [
{
"Id": 1,
"References": ["Acts.16.28"]
},
{
"Id": 2,
"References": ["Gen.9.6"]
},
{
"Id": 3,
"References": ["Prov.24.11-Prov.24.12"]
}
]
},
{
"Number": 57,
"Question": "Which is the seventh commandment?",
"Answer": "The seventh commandment is, Thou shalt not commit adultery."
},
{
"Number": 58,
"Question": "What is forbidden in the seventh commandment?",
"Answer": "The seventh commandment forbids all unchaste thoughts, words, and actions.",
"AnswerWithProofs": "The seventh commandment forbids all unchaste thoughts [1], words [2], and actions [3].",
"Proofs": [
{
"Id": 1,
"References": ["Matt.5.28", "Col.4.6"]
},
{
"Id": 2,
"References": ["Eph.5.4", "2Tim.2.22"]