-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentities-with-dates.json
19842 lines (19842 loc) · 565 KB
/
entities-with-dates.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
{
"meta": {
"dateCreated": "2024-10-15T13:52:21.776Z"
},
"data": [
{
"type": "place",
"id": "place:Iris_130",
"sortkey": "(NOCOUNTRY)-(NOREGION)-(NOSETTLEMENT)-(NOPLACENAME)-Irish Sea",
"search": "Irish Sea",
"title": "Irish Sea",
"subtype": "geo",
"region": "Europe",
"settlement": "",
"pages": {
"book_one": [
15,
17,
19
]
},
"books": [
"book_one"
]
},
{
"type": "person",
"id": "ppl:ha1",
"sortkey": "Ableson-Hannah-",
"search": "Ableson Hannah Hannah Ableson ",
"title": "Hannah Ableson (n. d.)",
"bio": "Hannah Ableson was a servant in the Thornton household from at least 1666. In 1667 she accompanied Nally and Katherine Thornton to York, where they were at school. She witnessed the wedding of Nally and Thomas Comber in November 1668. We have not been able to trace her further.",
"pages": {
"book_of_remembrances": [
107,
122
],
"book_one": [
219,
224,
225,
249,
250,
251,
252,
257
],
"book_three": [
78,
86,
96,
151,
163,
190,
203
]
},
"books": [
"book_of_remembrances",
"book_one",
"book_three"
]
},
{
"type": "event",
"id": "aow1_1595_child_accident",
"sortkey": "Accident/danger: Alice Wandesford saved from choking as a child",
"search": "Accident/danger Alice Wandesford saved from choking as a child",
"title": "Accident/danger: Alice Wandesford saved from choking as a child",
"cat": "Accident/danger",
"date": "1595%",
"pages": {
"book_two": [
"104-104"
]
},
"books": [
"book_two"
]
},
{
"type": "event",
"id": "cw1_1610_accident",
"sortkey": "Accident/danger: Christopher Wandesford (father) saved from drowning as a young man",
"search": "Accident/danger Christopher Wandesford (father) saved from drowning as a young man",
"title": "Accident/danger: Christopher Wandesford (father) saved from drowning as a young man",
"cat": "Accident/danger",
"date": "1608~",
"pages": {
"book_two": [
"104-104"
]
},
"books": [
"book_two"
]
},
{
"type": "event",
"id": "awt1_1638_fire",
"sortkey": "Accident/danger: Fire at Dublin Castle",
"search": "Accident/danger Fire at Dublin Castle",
"title": "Accident/danger: Fire at Dublin Castle",
"cat": "Accident/danger",
"date": "1638~",
"pages": {
"book_one": [
"291-291"
]
},
"books": [
"book_one"
]
},
{
"type": "event",
"id": "awt1_1636_fire",
"sortkey": "Accident/danger: Fire at the Wandesford house in Dublin",
"search": "Accident/danger Fire at the Wandesford house in Dublin",
"title": "Accident/danger: Fire at the Wandesford house in Dublin",
"cat": "Accident/danger",
"date": "1636/1638",
"pages": {
"book_of_remembrances": [
"21-21"
],
"book_one": [
"14-14"
],
"book_two": [
"116-116"
]
},
"books": [
"book_of_remembrances",
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "awt1_1650_promise_gw1",
"sortkey": "Accident/danger: George Wandesford promised Thornton he would not take risks on the river",
"search": "Accident/danger George Wandesford promised Thornton he would not take risks on the river",
"title": "Accident/danger: George Wandesford promised Thornton he would not take risks on the river",
"cat": "Accident/danger",
"date": "1650~",
"pages": {
"book_of_remembrances": [
"191-192"
]
},
"books": [
"book_of_remembrances"
]
},
{
"type": "event",
"id": "ktp1_1660_accident",
"sortkey": "Accident/danger: Katherine Thornton almost choked on a pin",
"search": "Accident/danger Katherine Thornton almost choked on a pin",
"title": "Accident/danger: Katherine Thornton almost choked on a pin",
"cat": "Accident/danger",
"date": "1660",
"pages": {
"book_of_remembrances": [
"113-113"
],
"book_one": [
"226-226"
],
"book_two": [
"187-188"
]
},
"books": [
"book_of_remembrances",
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "ktp1_1666_accident",
"sortkey": "Accident/danger: Katherine Thornton fell when playing in a barn",
"search": "Accident/danger Katherine Thornton fell when playing in a barn",
"title": "Accident/danger: Katherine Thornton fell when playing in a barn",
"cat": "Accident/danger",
"date": "1666~",
"pages": {
"book_of_remembrances": [
"113-114"
],
"book_one": [
"226-227"
]
},
"books": [
"book_of_remembrances",
"book_one"
]
},
{
"type": "event",
"id": "ktp1_1657_",
"sortkey": "Accident/danger: Katherine Thornton was saved from 'sucking ill mik'",
"search": "Accident/danger Katherine Thornton was saved from 'sucking ill mik'",
"title": "Accident/danger: Katherine Thornton was saved from 'sucking ill mik'",
"cat": "Accident/danger",
"date": "1657-03~",
"pages": {
"book_three": [
"25-25"
]
},
"books": [
"book_three"
]
},
{
"type": "event",
"id": "hipswell___fire",
"sortkey": "Accident/danger: Maid set the chimney on fire at Hipswell",
"search": "Accident/danger Maid set the chimney on fire at Hipswell",
"title": "Accident/danger: Maid set the chimney on fire at Hipswell",
"cat": "Accident/danger",
"date": "1651%/1660~",
"pages": {
"book_two": [
"176-176"
]
},
"books": [
"book_two"
]
},
{
"type": "event",
"id": "atc1_1667_illness_choking",
"sortkey": "Accident/danger: Nally Thornton almost choked in her sleep",
"search": "Accident/danger Nally Thornton almost choked in her sleep",
"title": "Accident/danger: Nally Thornton almost choked in her sleep",
"cat": "Accident/danger",
"date": "1667-01-18",
"pages": {
"book_of_remembrances": [
"110-110"
],
"book_one": [
"224-224"
]
},
"books": [
"book_of_remembrances",
"book_one"
]
},
{
"type": "event",
"id": "atc1_1654_accident",
"sortkey": "Accident/danger: Nally Thornton saved from suffocation by nurse",
"search": "Accident/danger Nally Thornton saved from suffocation by nurse",
"title": "Accident/danger: Nally Thornton saved from suffocation by nurse",
"cat": "Accident/danger",
"date": "1654~",
"pages": {
"book_two": [
"148-148"
]
},
"books": [
"book_two"
]
},
{
"type": "event",
"id": "atc1_1661_accident",
"sortkey": "Accident/danger: Nally Thornton wounded in the belly while playing",
"search": "Accident/danger Nally Thornton wounded in the belly while playing",
"title": "Accident/danger: Nally Thornton wounded in the belly while playing",
"cat": "Accident/danger",
"date": "1661",
"pages": {
"book_two": [
"211-211"
]
},
"books": [
"book_two"
]
},
{
"type": "event",
"id": "atc1_1655_accident",
"sortkey": "Accident/danger: Nally was saved from falling in the fire in Thornton's chamber",
"search": "Accident/danger Nally was saved from falling in the fire in Thornton's chamber",
"title": "Accident/danger: Nally was saved from falling in the fire in Thornton's chamber",
"cat": "Accident/danger",
"date": "1655-03",
"pages": {
"book_two": [
"175-176"
]
},
"books": [
"book_two"
]
},
{
"type": "event",
"id": "london_1666_fire",
"sortkey": "Accident/danger: Outbreak of the Great Fire in London",
"search": "Accident/danger Outbreak of the Great Fire in London",
"title": "Accident/danger: Outbreak of the Great Fire in London",
"cat": "Accident/danger",
"date": "1666-09-02",
"pages": {
"book_of_remembrances": [
"106-106"
],
"book_one": [
"218-218"
]
},
"books": [
"book_of_remembrances",
"book_one"
]
},
{
"type": "event",
"id": "rt2_1668_accident",
"sortkey": "Accident/danger: Robert Thornton fell when playing in a barn",
"search": "Accident/danger Robert Thornton fell when playing in a barn",
"title": "Accident/danger: Robert Thornton fell when playing in a barn",
"cat": "Accident/danger",
"date": "1668-07-25",
"pages": {
"book_of_remembrances": [
"130-130"
],
"book_one": [
"262-262"
]
},
"books": [
"book_of_remembrances",
"book_one"
]
},
{
"type": "event",
"id": "awt1_1644_accident_flood",
"sortkey": "Accident/danger: Thornton almost drowned while crossing the river near Middleham",
"search": "Accident/danger Thornton almost drowned while crossing the river near Middleham",
"title": "Accident/danger: Thornton almost drowned while crossing the river near Middleham",
"cat": "Accident/danger",
"date": "1644-08-26",
"pages": {
"book_one": [
"297-297",
"298-298"
]
},
"books": [
"book_one"
]
},
{
"type": "event",
"id": "awt1_1646_flood",
"sortkey": "Accident/danger: Thornton almost drowned while crossing the River Swale",
"search": "Accident/danger Thornton almost drowned while crossing the River Swale",
"title": "Accident/danger: Thornton almost drowned while crossing the River Swale",
"cat": "Accident/danger",
"date": "1646",
"pages": {
"book_one": [
"105-105",
"298-298"
]
},
"books": [
"book_one"
]
},
{
"type": "event",
"id": "awt1_1639_accident_storm",
"sortkey": "Accident/danger: Thornton almost fell overboard in a storm",
"search": "Accident/danger Thornton almost fell overboard in a storm",
"title": "Accident/danger: Thornton almost fell overboard in a storm",
"cat": "Accident/danger",
"date": "1639-08-22",
"pages": {
"book_of_remembrances": [
"22-22"
],
"book_one": [
"17-17"
],
"book_two": [
"114-114",
"116-116"
]
},
"books": [
"book_of_remembrances",
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "awt1_child07_pregnancy_violence",
"sortkey": "Accident/danger: Thornton and William argued over a payment and he threatened violence with a penknife",
"search": "Accident/danger Thornton and William argued over a payment and he threatened violence with a penknife",
"title": "Accident/danger: Thornton and William argued over a payment and he threatened violence with a penknife",
"cat": "Accident/danger",
"date": "1662-05",
"pages": {
"book_of_remembrances": [
"55-59"
],
"book_one": [
"202-202"
]
},
"books": [
"book_of_remembrances",
"book_one"
]
},
{
"type": "event",
"id": "oswaldkirk_1661_fire",
"sortkey": "Accident/danger: Thornton family saved from a fire at Oswaldkirk",
"search": "Accident/danger Thornton family saved from a fire at Oswaldkirk",
"title": "Accident/danger: Thornton family saved from a fire at Oswaldkirk",
"cat": "Accident/danger",
"date": "1661?",
"pages": {
"book_two": [
"223-223"
]
},
"books": [
"book_two"
]
},
{
"type": "event",
"id": "awt1_1629_accident",
"sortkey": "Accident/danger: Thornton fell and cut her head, aged 3",
"search": "Accident/danger Thornton fell and cut her head, aged 3",
"title": "Accident/danger: Thornton fell and cut her head, aged 3",
"cat": "Accident/danger",
"date": "1629~",
"pages": {
"book_of_remembrances": [
"186-186"
],
"book_one": [
"8-8",
"286-286"
],
"book_two": [
"114-114"
]
},
"books": [
"book_of_remembrances",
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "awt1_child07_pregnancy_accident",
"sortkey": "Accident/danger: Thornton fell down stairs with Celia Danby while heavily pregnant",
"search": "Accident/danger Thornton fell down stairs with Celia Danby while heavily pregnant",
"title": "Accident/danger: Thornton fell down stairs with Celia Danby while heavily pregnant",
"cat": "Accident/danger",
"date": "1662-08",
"pages": {
"book_of_remembrances": [
"68-68"
],
"book_one": [
"202-202"
],
"book_two": [
"247-247",
"268-268"
]
},
"books": [
"book_of_remembrances",
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "awt1_1636_accident",
"sortkey": "Accident/danger: Thornton fell from a coach",
"search": "Accident/danger Thornton fell from a coach",
"title": "Accident/danger: Thornton fell from a coach",
"cat": "Accident/danger",
"date": "1636-10-06",
"pages": {
"book_one": [
"287-288"
],
"book_two": [
"114-114"
]
},
"books": [
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "awt1_1637_accident",
"sortkey": "Accident/danger: Thornton fell when playing in Dublin",
"search": "Accident/danger Thornton fell when playing in Dublin",
"title": "Accident/danger: Thornton fell when playing in Dublin",
"cat": "Accident/danger",
"date": "1637",
"pages": {
"book_one": [
"289-290"
],
"book_two": [
"114-114"
]
},
"books": [
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "awt1_child05_pregnancy_accident",
"sortkey": "Accident/danger: Thornton had a fall at Hipswell when heavily pregnant",
"search": "Accident/danger Thornton had a fall at Hipswell when heavily pregnant",
"title": "Accident/danger: Thornton had a fall at Hipswell when heavily pregnant",
"cat": "Accident/danger",
"date": "1657-09-14",
"pages": {
"book_of_remembrances": [
"30-30",
"31-31"
],
"book_one": [
"149-149"
],
"book_two": [
"114-114",
"159-160"
]
},
"books": [
"book_of_remembrances",
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "awt1_1669_accident",
"sortkey": "Accident/danger: Thornton pecked in the eye by a chicken while writing 'Book 1'",
"search": "Accident/danger Thornton pecked in the eye by a chicken while writing 'Book 1'",
"title": "Accident/danger: Thornton pecked in the eye by a chicken while writing 'Book 1'",
"cat": "Accident/danger",
"date": "1669-03-25",
"pages": {
"book_three": [
"178-181"
]
},
"books": [
"book_three"
]
},
{
"type": "event",
"id": "awt1_1631_fire",
"sortkey": "Accident/danger: Thornton saved from a fire in London",
"search": "Accident/danger Thornton saved from a fire in London",
"title": "Accident/danger: Thornton saved from a fire in London",
"cat": "Accident/danger",
"date": "1631",
"pages": {
"book_of_remembrances": [
"17-17"
],
"book_one": [
"11-11"
],
"book_two": [
"116-116"
]
},
"books": [
"book_of_remembrances",
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "awt1_1643_war_chester",
"sortkey": "Accident/danger: Thornton was hit by the draft from a grenade during the Chester attack",
"search": "Accident/danger Thornton was hit by the draft from a grenade during the Chester attack",
"title": "Accident/danger: Thornton was hit by the draft from a grenade during the Chester attack",
"cat": "Accident/danger",
"date": "1643-07-18",
"pages": {
"book_one": [
"70-71",
"298-298"
],
"book_two": [
"124-125"
]
},
"books": [
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "awt1_1644_deliverance_xi1",
"sortkey": "Accident/danger: Thornton was saved from a planned abduction by Captain Innes",
"search": "Accident/danger Thornton was saved from a planned abduction by Captain Innes",
"title": "Accident/danger: Thornton was saved from a planned abduction by Captain Innes",
"cat": "Accident/danger",
"date": "1647-01?",
"pages": {
"book_of_remembrances": [
"199-199"
],
"book_one": [
"293-295",
"295-296"
]
},
"books": [
"book_of_remembrances",
"book_one"
]
},
{
"type": "event",
"id": "awt1_1644_deliverance_js1",
"sortkey": "Accident/danger: Thornton was saved from being raped by Jeremy Smithson",
"search": "Accident/danger Thornton was saved from being raped by Jeremy Smithson",
"title": "Accident/danger: Thornton was saved from being raped by Jeremy Smithson",
"cat": "Accident/danger",
"date": "1644-11-29/1651%",
"pages": {
"book_of_remembrances": [
"200-200"
],
"book_one": [
"298-298"
],
"book_two": [
"125-125"
]
},
"books": [
"book_of_remembrances",
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "wand_1639_accident_storm",
"sortkey": "Accident/danger: Wandesford family caught in a storm at sea on return to Ireland",
"search": "Accident/danger Wandesford family caught in a storm at sea on return to Ireland",
"title": "Accident/danger: Wandesford family caught in a storm at sea on return to Ireland",
"cat": "Accident/danger",
"date": "1639-08-22",
"pages": {
"book_of_remembrances": [
"22-22"
],
"book_one": [
"15-17"
]
},
"books": [
"book_of_remembrances",
"book_one"
]
},
{
"type": "event",
"id": "wand_1645_hipswell_plague",
"sortkey": "Accident/danger: Wandesford family saved from plague at Richmond",
"search": "Accident/danger Wandesford family saved from plague at Richmond",
"title": "Accident/danger: Wandesford family saved from plague at Richmond",
"cat": "Accident/danger",
"date": "1645%",
"pages": {
"book_one": [
"86-86"
],
"book_two": [
"125-125",
"130-130"
]
},
"books": [
"book_one",
"book_two"
]
},
{
"type": "event",
"id": "wt1_1664_accident",
"sortkey": "Accident/danger: Wiliam Thornton almost drowned in floods",
"search": "Accident/danger Wiliam Thornton almost drowned in floods",
"title": "Accident/danger: Wiliam Thornton almost drowned in floods",
"cat": "Accident/danger",
"date": "1664-10",
"pages": {
"book_of_remembrances": [
"89-89"
],
"book_one": [
"206-206"
]
},
"books": [
"book_of_remembrances",
"book_one"
]
},
{
"type": "person",
"id": "ppl:ra1",
"sortkey": "Adair-Robert-1583",
"search": "Adair Robert Sir Robert Adair ",
"title": "Sir Robert Adair (1583-1655)",
"bio": "Sir Robert Adair of Ballymenna and Kinhilt was born in 1583 at Ballymena, co. Antrim, to Sir William and Rosina Adair. He became heir to his family’s Scottish estates on 19 February 1629. He fled to Scotland in 1638 to avoid swearing the Black Oath under Wentworth, after which he was declared a traitor by Charles I. He became major in the Earl of Leven's Horse Regiment c.1643 and commanded a regiment at the battle of Marston Moor in July 1644. He also led the cavalry at the 1650 Battle of Dunbar. He married Jane Edmonstone and they had two sons and a daughter. He died on 1 March 1655.",
"pages": {
"book_one": [
294
]
},
"books": [
"book_one"
]
},
{
"type": "place",
"id": "place:Virg_093",
"sortkey": "America-Virginia-(NOSETTLEMENT)-(NOPLACENAME)-Virginia, America",
"search": "Virginia, America",
"title": "Virginia, America",
"subtype": "region",
"region": "Virginia",
"settlement": "",
"pages": {
"book_one": [
236
],
"book_three": [
82
]
},
"books": [
"book_one",
"book_three"
]
},
{
"type": "person",
"id": "ppl:xa2",
"sortkey": "Ande-[Unknown]-",
"search": "Ande Mr Ande ",
"title": "Mr Ande (n. d.)",
"bio": "[Mr Ande was a man living in the Ripon area in the late 1660s. He was married to Jane Wandesford, a cousin of Thornton: possibly Jane Wandesford of Pickhill, daughter of Richard and Muriel Wandesford, born 4 March 1604. She may be the ‘Jane Wand’ who married a John Watson in 1625 at All Saints’, Pickhill; but this does not preclude a later marriage as a widow. There was a John Anne of Ripon (fl. 1653) but there is no evidence which links him with this John Ande. No further information on this man.]",
"pages": {
"book_three": [
184
]
},
"books": [
"book_three"
]
},
{
"type": "person",
"id": "ppl:jw3",
"sortkey": "Ande-Jane-16040304",
"search": "Ande Wandesford Jane Jane Ande ",
"title": "Jane Ande (born 1604?)",
"bio": "[Jane Ande née Wandesford married one Mr Ande by the late 1660s. She may be Jane Wandesford of Pickhill, daughter of Richard and Muriel Wandesford, baptised 4 March 1604 at All Saints, Pickhill.]",
"pages": {
"book_three": [
184
]
},
"books": [
"book_three"
]
},
{
"type": "person",
"id": "ppl:ga1",
"sortkey": "Anderson-George-",
"search": "Anderson George George Anderson ",
"title": "George Anderson (n. d.)",
"bio": "George Anderson, a Scotsman, was a tutor to George Wandesford, in France. It is not known exactly when, but it was 'during the heat of the war' so c.1642; Wandesford had returned to Yorkshire by July 1644. We have not been able to trace him further.",
"pages": {
"book_one": [
81
],
"book_two": [
40,
51
],
"book_three": [
39
]
},
"books": [
"book_one",
"book_two",
"book_three"
]
},
{
"type": "person",
"id": "ppl:xa3",
"sortkey": "Anstruther-Philip-1630",
"search": "Anstruther Philip Sir Philip Anstruther ",
"title": "Sir Philip Anstruther (c.1630-1702)",
"bio": "[This is probably Sir Philip Anstruther, the son of Sir Robert and Mary Anstruther born c.1632. He inherited the Anstruther estate from his childless uncle John Anstruther in 1649. He was a royalist colonel during the Wars of the Three Kingdoms and was captured at the final royalist defeat at Worcester in 1651 and sequestered by Cromwell. He was reinstated under Charles II. He married Christian Lumsden and they had 7 sons and 3 daughters. He died in 1702.]",
"pages": {
"book_three": [
41
]
},
"books": [
"book_three"
]
},
{
"type": "person",
"id": "ppl:ca1",
"sortkey": "Anthony-Charles-16001106",
"search": "Anthony Charles Charles Anthony ",
"title": "Charles Anthony (1600-1685)",
"bio": "Charles Anthony was born on 6 November 1600 and was educated at Jesus College, Cambridge (BA 1624, MA 1627). He was ordained in 1636 and became vicar of St Anne’s, Catterick in 1660. He baptised Thornton's daughter, Elizabeth, in 1654, probably at the private chapel at Hipswell Hall. He died on 25 June 1685 and was buried at St Anne’s, Catterick.",
"pages": {
"book_of_remembrances": [
28
],
"book_one": [
139
],
"book_two": [
153
]
},
"books": [
"book_of_remembrances",
"book_one",
"book_two"
]
},
{
"type": "person",
"id": "ppl:cda1",
"sortkey": "Armitage-Katherine-16120227",
"search": "Armitage Danby Katherine Katherine Armitage ",
"title": "Katherine Armitage (1612-1667)",
"bio": "Katherine Armitage was baptised at St Peter's, Warmfield, on 27 February 1612, the oldest daughter and second child of Thomas and Elizabeth Danby of Farnley. She married Francis Armitage, later 1st Baronet, in 1629. They had at least 11 children, five of whom (three sons and two daughters) can be identified. A widow from 1644, she attended her sister-in-law, Katherine Danby (Thornton’s sister), on her death bed in September 1645. She was buried on 13 January 1667 at All Saints’, Wakefield.",
"pages": {
"book_one": [
87
]
},
"books": [
"book_one"
]
},
{
"type": "person",
"id": "ppl:ja1",
"sortkey": "Ashton-John-16220203",
"search": "Ashton John John Ashton ",
"title": "John Ashton (1622-1697)",
"bio": "John Ashton, son of Sir Ralph and Eleanor Ashton (née Shuttleworth) of Whalley Abbey, was baptised at St Mary and All Saints’, Whalley on 3 February 1622. He married Catherine Fletcher, who predeceased him in 1676. He fought for the parliamentarians. He became Baronet on the death of his elder brother in 1695 and died on 9 June 1697. He was buried at St Mary the Virgin’s, Gisburn.",
"pages": {
"book_one": [
79
]
},
"books": [
"book_one"
]
},
{
"type": "person",
"id": "ppl:xa1",
"sortkey": "Atie-[Unknown]-",
"search": "Atie Dr Atie ",
"title": "Dr Atie (n. d.)",
"bio": "Dr Atie was a physician active in the Hambleton area in the late 1650s, perhaps an associate of Robert Wittie. We have not been able to trace him further.",
"pages": {
"book_of_remembrances": [
40
]
},
"books": [
"book_of_remembrances"
]
},
{
"type": "person",
"id": "ppl:aa1",
"sortkey": "Ayscough-Alan-",
"search": "Ayscough Alan Alan Ayscough ",
"title": "Alan Ayscough (n. d.)",
"bio": "[Alan Ayscough was a kinsman of Thornton's alive in the late 1660s. He is perhaps the Alan Ayscough of Skewsby, Ryedale, whose will was dated January 1673. We have not been able to trace him further.]",
"pages": {
"book_three": [
139,
196
]
},
"books": [
"book_three"
]
},
{
"type": "person",
"id": "ppl:wa2",
"sortkey": "Ayscough-William-16140731",
"search": "Ayscough William Sir William Ayscough ",
"title": "Sir William Ayscough (1614-1695)",
"bio": "Sir William Ayscough of Osgoodby Grange, son and heir of William and Anne Ayscough, was born on 31 July 1614. He married Judith Burgoyne on 4 March 1641 and they had four children (two daughters and two sons). He was JP for the North Riding in 1645-9 and 1653-60 and for the East Riding in 1653-60. He was MP for Thirsk in 1645 and again in 1681. He was buried at All Saints’, Thirkleby on 12 October 1695.",
"pages": {
"book_one": [
127
]
},
"books": [
"book_one"
]
},
{
"type": "person",
"id": "ppl:wa1",
"sortkey": "Ayscough-William-16480309",
"search": "Ayscough William William Ayscough ",
"title": "William Ayscough (1648-1676)",
"bio": "William Ayscough, son of Sir William and Judith Ayscough, was born on 9 March 1648. He was one of the coffin bearers at William Thornton's funeral in September 1668. We have not been able to trace him further.",
"pages": {
"book_of_remembrances": [
154
],
"book_one": [
274
]
},
"books": [
"book_of_remembrances",
"book_one"
]
},
{
"type": "person",
"id": "ppl:al1",
"sortkey": "Barrett-Anne-1626",
"search": "Barrett Loftus Anne Anne Barrett ",
"title": "Anne Barrett (c.1626-1659)",
"bio": "Anne Barrett, daughter of Robert and Eleanor Loftus, was born c.1626. She and her parents lived in the household of Thomas Wentworth in Dublin in the late 1630s, where she kept company with a young Thornton and Wentworth's daughters, Anne and Arabella. She married Richard Lennard Barrett c.1653 and had four children (two sons and two daughters). She died on 4 April 1659.",
"pages": {
"book_one": [
289
]
},
"books": [
"book_one"
]
},
{
"type": "person",