-
Notifications
You must be signed in to change notification settings - Fork 0
/
hostage_graph.json
1010 lines (1010 loc) · 36.1 KB
/
hostage_graph.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
{
"directed": true,
"multigraph": true,
"graph": {},
"nodes": [
{
"id": "d1e13573",
"type": "SourceNote",
"sources": "Close Rolls v.2 (1231-1234) p.312-13",
"sourceDate": "1233-06-10",
"label": "Hostages taken from major marchers to secure a ``firm peace`` in England",
"comments": "why are some granted to those who themselves give up hostages.; look into Brian de Brompton's family: frequent witness in LNW charters; see intros to Curia Regis rolls Meekings, CAF",
"abstract": "Die Lune proxima post festum Sancti Barnabe Apostoli apud Wigorniam Coram rege anno etc. xvii., presentibus dominis Wintoniensi et Cycestrensi, S. de Sedgrave justiciario Anglie, comite Ricardo, W. comite Albem', Thoma comite War', Philippo de Albiniaco, Petro de Malo Lacu, Pagano de Chaurces, Andrea de Canceaus, P. de Rivall' tunc thesaurario, Willelmo filio Warini, Hugone Dispensatore, radulfo filio Nicholai, Liberaverunt subscripti barones de Marchia obsides suos domino regi de fideli servicio, quousque regnum sit ita securatum quod firma pax sit in regno Anglie.; Walterus de Lascy liberavit Johannem filium Rogeri Pichard in obsidem pro eo, quousque regnum fuerit securatum quod firma pax sit. Et dominus rex tradidit eum custodiendum Engelardo de Cygoiny.; Henry Audley gave Ranulf his son who was turned over to Hugh Dispenser; Thomas Corbet gave Reginald, son of Richard Corbet who was turned over to Walter de Lacy (d. 1241); Hervicus de Stafford gave John his son who was turned over to Ralph fitz Nicholas; Ralph Mortimer gave Henry, son of Brian de Brompton who was turned over to William de Stutevill; William de Stutevill gave Osmund his son et dominus rex liberavit eum to Stephen Sedgrave (custodiendum).; Willelmus de Gamages gave Henry his son who was turned over to Walter de Beauchamp; Walter de Beauchamp gave his son Jacob who was turned over to Peter fitz Herbert; Thomas earl of Warwick gave the castle of Warewick 'ut dominus rex securus sit quod nullum dampnum per eum eveniet.' custody granted to John de Lodbroc and John Durvassal; John Durvassal gave his son 'in obsidem de fideli sevicio, sicut predictum est'.; John de Lodbroc gave Philip fitz William Sampson his nephew who was turned over to Stephen de Sedgave",
"uri": "http://my.sourcenotes.org/2006/04/sourcenotes/SourceNote#d1e13573",
"keywords": "familia, hostages, marcher_party, toCheck_date",
"people": "Andrea_de_Canceaus, Aubiniaco_Philip_de, Audley_Henry_de, Beauchamp_Walter_de, Brompton_Brian_de_1215-1277, Brompton_Henry_de, Corbet_Reginald, Corbet_Thomas, Henry_de_Gamages, Hervicus_de_Stafford, Hugh_Despenser, Jacob_de_Beauchamp, John_Durvassal, John_de_Lodbroc, John_de_Stafford, Lacy_Walter_de_d_1241, Maulay_Peter_de_d_1279, Mortimer_Ralph_d_1247, Pagano_de_Chaurces, Peter_de_Rivaux, Philip_fitz_William_Sampson, Picard_Roger, Ralph_fitz_Nicholas, Ranulf_de_Aldithele, Richard_Corbet, Segrave_Stephen_d_1241, Stutevill_Osmund_de, Stutevill_William_de, Thomas_earl_of_Warwick_d_1242, W_earl_Aubermarle, Wiliam_de_Gamages, William_fitz_Warin",
"witnesses": "Nevill_Ralph_de, Peter_de_Rivaux, William_fitz_Warin, Hugh_Despenser, Ralph_fitz_Nicholas, Segrave_Stephen_d_1241, Richard_earl_of_Cornwall, William_de_Fortibus_count_of_Aumâle, Thomas_earl_of_Warwick_d_1242, Albiniaco_Philip_de, Maulay_Peter_de_d_1279, Pagano_de_Chaurces, Andrea_de_Canceaus",
"places": "Worcester"
},
{
"isDiscussedIn": "R. C. Stacey <cite>Finance and Politics in the reign of Henry III</cite>",
"date": "1233-06-10",
"attestedIn": "d1e13573",
"type": "Event",
"label": "1233 hostages: Walter de Lacy gives John fitz Roger Picard to Engelard de Cigogn\u00e9",
"id": "hostage_exchange_1233e"
},
{
"label": "1233 hostages: Herv\u00e9 de Stafford gives his son John to Ralph fitz Nicholas",
"attestedIn": "d1e13573",
"isDiscussedIn": "R. C. Stacey <cite>Finance and Politics in the reign of Henry III</cite>",
"date": "1233-06-10",
"type": "Event",
"id": "hostage_exchange_1233h"
},
{
"label": "Audley, Henry de",
"type": "Person",
"id": "Audley_Henry_de"
},
{
"label": "Segrave, Stephen de d.1241",
"type": "Person",
"id": "Segrave_Stephen_d_1241"
},
{
"type": "Person",
"label": "Andrea de Canceaus",
"id": "Andrea_de_Canceaus"
},
{
"label": "Engelard de Cigogn\u00e9",
"type": "Person",
"id": "Engelard_de_Cigogn\u00e9"
},
{
"type": "Person",
"label": "Henry (son of Brian) de Brompton",
"name": "Henry de Brompton",
"id": "Henry_de_Brompton"
},
{
"date": "1233-06-10",
"isDiscussedIn": "R. C. Stacey <cite>Finance and Politics in the reign of Henry III</cite>",
"label": "1233 hostages: William de Gamages gives son Henry to Walter de Beauchamp",
"type": "Event",
"attestedIn": "d1e13573",
"id": "hostage_exchange_1233c"
},
{
"type": "Person",
"label": "Philip fitz William Sampson",
"id": "Philip_fitz_William_Sampson"
},
{
"label": "A son of John Durvassal",
"type": "Person",
"id": "A_son_of_John_Durvassal"
},
{
"date": "1233-06-10",
"type": "Event",
"isDiscussedIn": "R. C. Stacey <cite>Finance and Politics in the reign of Henry III</cite>",
"label": "1233 hostages: Thomas Corbet gives Reginald Corbet to Walter de Lacy",
"attestedIn": "d1e13573",
"id": "hostage_exchange_1233g"
},
{
"label": "Ferri\u00e8res, Isabella de",
"type": "Person",
"id": "Ferri\u00e8res_Isabella_de"
},
{
"type": "Person",
"label": "Peter de Rivaux",
"id": "Peter_de_Rivaux"
},
{
"date": "1233-06-10",
"type": "Event",
"isDiscussedIn": "R. C. Stacey <cite>Finance and Politics in the reign of Henry III</cite>",
"attestedIn": "d1e13573",
"label": "1233 hostages: Walter de Beauchamp gives son Jacob to Peter fitz Herbert",
"id": "hostage_exchange_1233d"
},
{
"type": "Baron",
"label": "Corbet, Thomas",
"id": "Corbet_Thomas"
},
{
"label": "Jacob de Beauchamp",
"type": "Person",
"id": "Jacob_de_Beauchamp"
},
{
"type": "Person",
"label": "Peter de Maulay d. 1279",
"id": "Maulay_Peter_de_d_1279"
},
{
"label": "Hugh Despenser",
"type": "Person",
"id": "Hugh_Despenser"
},
{
"type": "Person",
"label": "John Durvassal",
"id": "John_Durvassal"
},
{
"label": "Hervicus de Stafford",
"type": "Person",
"id": "Hervicus_de_Stafford"
},
{
"type": "Person",
"label": "John fitz Roger Picard",
"id": "John_Picard"
},
{
"name": "Brian de Brompton",
"type": "Person",
"label": "Brompton, Brian de (1215-1277)",
"id": "Brompton_Brian_de_1215-1277"
},
{
"type": "Person",
"label": "Pagano de Chaurces",
"id": "Pagano_de_Chaurces"
},
{
"label": "Stutevill, Osmund de",
"type": "Person",
"id": "Stutevill_Osmund_de"
},
{
"attestedIn": "d1e13573",
"label": "1233 hostages: John Durvassal gives his son to the king \"in obsidem de fideli sevicio, sicut predictum est\"",
"date": "1233-06-10",
"type": "Event",
"id": "hostage_exchange_1233j"
},
{
"label": "Warwick Castle",
"type": "Place",
"id": "Warwick_Castle",
"latLong": [52.279668,-1.5874167]
},
{
"label": "Ralph de Nevill, bp. Chichester, Chancellor",
"type": "Person",
"id": "Nevill_Ralph_de"
},
{
"label": "Mortimer, Ralph (d.1247)",
"type": "Person",
"id": "Mortimer_Ralph_d_1247",
"latLong": [52.317639,-2.8706951]
},
{
"label": "William de Fortibus, earl Aubermarle",
"comment": "\"Soon after the death of Baldwin (October 13, 1213), William de Fortibus, Hawise's son by her second husband, was established by King John in the territories of the Countship of Albemarle, and in 1215 the whole of his mother's estates were formally confirmed to him. He is described by Bishop Stubbs as \"a feudal adventurer of the worst type,\" and for some time was actively engaged in the struggles of the Norman barons against both John and Henry III.\nHe was one of the twenty-five executors of the Great Charter; but in the war that followed sided with John, subsequently changing sides as often as it suited his policy. His object was to revive the independent power of the feudal barons, and he co-operated to this end with Falkes de Breaut and other foreign adventurers established in the country by John. This brought him into conflict with the great justiciar, Hubert de Burgh, and in 1219 he was declared a rebel and excommunicated for attending a forbidden tournament. In 1220 matters were brought to a crisis by his refusal to surrender the two royal castles of Rockingham and Sauvey of which he had been made constable in 1216. Henry III marched against them in person, the garrisons fled, and they fell without a blow. In the following year, however, Albemarle, in face of further efforts to reduce his power, rose in revolt.\nHe was now again excommunicated by the legate Pandulph at a solemn council held in St Paul's, and the whole force of the kingdom was set in motion against him, a special scutage\u2014the scutagium de Bihan\u2014being voted for this purpose by the Great Council. The capture of his Castle of Bytham broke his power; he sought sanctuary and, at Pandulph's intercession, was pardoned on condition of going for six years to the Holy Land. He remained in England, however, and in 1223 was once more in revolt with Falkes de Breaute, the Earl of Chester and other turbulent spirits. A reconciliation was once more patched up; but it was not until the fall of Falkes de Breaute that Albemarle finally settled down as an English noble.\nIn 1225 he witnessed Henry's third re-issue of the Great Charter; in 1227 he went as, ambassador, to Antwerp; and in 1230 he accompanied Henry on his expedition to Brittany. In 1241 he set out for the Holy Land, but died at sea, on his way there, on March 26 1242.\" wikipedia",
"type": "Person",
"id": "W_earl_Aubermarle"
},
{
"label": "Mortimer, Roger (d.1214)",
"type": "Person",
"id": "Mortimer_Roger_d_1214"
},
{
"label": "1233 hostages: John de Lodbroc gives his nephew Philip fitz William Sampson to Stephen Segrave\"",
"type": "Event",
"date": "1233-06-10",
"attestedIn": "d1e13573",
"id": "hostage_exchange_1233k"
},
{
"label": "Richard Corbet",
"type": "Person",
"id": "Richard_Corbet"
},
{
"type": "Person",
"label": "Ranulf de Aldithele",
"id": "Ranulf_de_Aldithele"
},
{
"type": "Person",
"label": "Roger Picard",
"id": "Roger_Picard"
},
{
"label": "Ferri\u00e8res, Walcheline de (d 1201)",
"type": "Person",
"id": "Ferri\u00e8res_Walcheline_de_d_1201"
},
{
"type": "Person",
"label": "Beauchamp, Walter de",
"id": "Beauchamp_Walter_de"
},
{
"label": "John de Lodbroc",
"type": "Person",
"id": "John_de_Lodbroc"
},
{
"type": "Event",
"attestedIn": "d1e13573",
"date": "1233-06-10",
"isDiscussedIn": "R. C. Stacey <cite>Finance and Politics in the reign of Henry III</cite>",
"label": "1233 hostages: William de Stutevill gives son Osmund de Stutevill to Stephen Segrave",
"id": "hostage_exchange_1233b"
},
{
"label": "Corbet, Reginald",
"type": "Person",
"id": "Corbet_Reginald"
},
{
"label": "William de Gamages",
"type": "Person",
"id": "William_de_Gamages"
},
{
"type": "Person",
"label": "Llywelyn ab Iorwerth",
"id": "Llywelyn_ab_Iorwerth"
},
{
"type": "Person",
"label": "Walter de Lacy, d1241",
"id": "Lacy_Walter_de_d_1241"
},
{
"type": "Person",
"label": "Henry de Gamages",
"id": "Henry_de_Gamages"
},
{
"label": "William Sampson",
"type": "Person",
"id": "Sampson_William"
},
{
"type": "Person",
"label": "Ralph fitz Nicholas",
"id": "Ralph_fitz_Nicholas"
},
{
"name": "William de Stutevill",
"type": "Person",
"label": "Stutevill de, William",
"id": "William_de_Stutevill"
},
{
"type": "Event",
"attestedIn": "d1e13573",
"date": "1233-06-10",
"isDiscussedIn": "R. C. Stacey <cite>Finance and Politics in the reign of Henry III</cite>",
"label": "1233 hostages: Henry Audley gives Ranulf his son to Hugh Despenser",
"id": "hostage_exchange_1233f"
},
{
"type": "Person",
"label": "Peter fitz Herbert",
"id": "Peter_fitz_Herbert"
},
{
"type": "Person",
"label": "John de Stafford",
"id": "John_de_Stafford"
},
{
"label": "Phillippa Basset (d 1265)",
"type": "Person",
"id": "Phillippa_Basset_d_1265"
},
{
"comment": " March connection: \"Thomas de Newburgh, son of Henry Earl of Warwick, the conqueror of Gower, parted with the lordship to the crown. King John, in the fourth year of his reign\" (www.gutenberg.org/files/12576/12576-h/12576-h.htm Title\tThe Mirror of Literature, Amusement, and Instruction Volume 17, No. 478, February 26, 1831 Language\tEnglish EText-No.\t12576 Release Date\t2004-06-01 Copyright Status\tNot copyrighted in the United States. If you live elsewhere check the laws of your country before downloading this ebook. Base Directory\t/files/12576/ Dates are funny here, but the narrative seems to be Newburg conquerors of Gower -- Gower to John -- Gower to William de Braose -- need to verify this stuff, but Thomas clearly a marcher in 1233, explaining why Henry was unsure of him.",
"label": "Thomas earl of Warwick",
"type": "Person",
"id": "Thomas_earl_of_Warwick_d_1242"
},
{
"label": "Henry, earl of Warwick (d 1229)",
"id": "Henry_earl_of_Warwick_d_1229"
},
{
"isDiscussedIn": "Rolls.CR-1940",
"attestedIn": "d1e13573",
"date": "1233-06-10",
"label": "1233 hostages: Thomas earl of Warwick gave the castle of Warewick \"ut dominus rex securus sit quod nullum dampnum per eum eveniet.\" and its custody was granted to John de Lodbroc and John Durvassal",
"type": "Event",
"id": "hostage_exchange_1233i"
},
{
"type": "Person",
"label": "Henry III",
"id": "Henry_III"
},
{
"label": "Gwladys_Ddu",
"type": "Person",
"id": "Gwladys_Ddu"
},
{
"date": "1233-06-10",
"isDiscussedIn": "R. C. Stacey <cite>Finance and Politics in the reign of Henry III</cite>",
"type": "Event",
"label": "1233 hostages: Ralph Mortimer gives Henry de Brompton to William de Stutevill",
"comment": "Complex hostage exchange involving nearly 30 people, intimates of the crown as well as marcher lords. Each ternary relation (guarantor, hostage, captor) is recorded in a separate resource.",
"attestedIn": "d1e13573",
"id": "hostage_exchange_1233a"
},
{
"id": "Church"
},
{
"id": "random text literal"
},
{
"id": "n83-148645.html"
}
],
"links": [
{
"source": "hostage_exchange_1233e",
"target": "Engelard_de_Cigogn\u00e9",
"type": "hostageHolder"
},
{
"source": "hostage_exchange_1233e",
"target": "John_Picard",
"type": "hostage"
},
{
"source": "hostage_exchange_1233e",
"target": "Lacy_Walter_de_d_1241",
"type": "hostageGiver"
},
{
"source": "hostage_exchange_1233h",
"target": "John_de_Stafford",
"type": "hostage"
},
{
"source": "hostage_exchange_1233h",
"target": "Hervicus_de_Stafford",
"type": "hostageGiver"
},
{
"source": "hostage_exchange_1233h",
"target": "Ralph_fitz_Nicholas",
"type": "hostageHolder"
},
{
"source": "Audley_Henry_de",
"target": "Hugh_Despenser",
"type": "gives_hostage_to"
},
{
"source": "Audley_Henry_de",
"target": "hostage_exchange_1233f",
"type": "participated_in"
},
{
"source": "Segrave_Stephen_d_1241",
"target": "Stutevill_Osmund_de",
"type": "holds_as_hostage"
},
{
"source": "Segrave_Stephen_d_1241",
"target": "hostage_exchange_1233k",
"type": "participated_in"
},
{
"source": "Segrave_Stephen_d_1241",
"target": "Philip_fitz_William_Sampson",
"type": "holds_as_hostage"
},
{
"source": "Segrave_Stephen_d_1241",
"target": "hostage_exchange_1233b",
"type": "participated_in"
},
{
"source": "Engelard_de_Cigogn\u00e9",
"target": "hostage_exchange_1233e",
"type": "participated_in"
},
{
"source": "Engelard_de_Cigogn\u00e9",
"target": "John_Picard",
"type": "holds_as_hostage"
},
{
"source": "Henry_de_Brompton",
"target": "Brompton_Brian_de_1215-1277",
"type": "childOf"
},
{
"source": "Henry_de_Brompton",
"target": "hostage_exchange_1233a",
"type": "participated_in"
},
{
"source": "Henry_de_Brompton",
"target": "Mortimer_Ralph_d_1247",
"type": "is_hostage_for"
},
{
"source": "hostage_exchange_1233c",
"target": "Henry_de_Gamages",
"type": "hostage"
},
{
"source": "hostage_exchange_1233c",
"target": "Beauchamp_Walter_de",
"type": "hostageHolder"
},
{
"source": "hostage_exchange_1233c",
"target": "William_de_Gamages",
"type": "hostageGiver"
},
{
"source": "Philip_fitz_William_Sampson",
"target": "Sampson_William",
"type": "childOf"
},
{
"source": "Philip_fitz_William_Sampson",
"target": "hostage_exchange_1233k",
"type": "participated_in"
},
{
"source": "Philip_fitz_William_Sampson",
"target": "John_de_Lodbroc",
"type": "is_hostage_for"
},
{
"source": "A_son_of_John_Durvassal",
"target": "John_Durvassal",
"type": "childOf"
},
{
"source": "A_son_of_John_Durvassal",
"target": "John_Durvassal",
"type": "is_hostage_for"
},
{
"source": "A_son_of_John_Durvassal",
"target": "hostage_exchange_1233j",
"type": "participated_in"
},
{
"source": "hostage_exchange_1233g",
"target": "Corbet_Thomas",
"type": "hostageGiver"
},
{
"source": "hostage_exchange_1233g",
"target": "Lacy_Walter_de_d_1241",
"type": "hostageHolder"
},
{
"source": "hostage_exchange_1233g",
"target": "Corbet_Reginald",
"type": "hostage"
},
{
"source": "Ferri\u00e8res_Isabella_de",
"target": "Ferri\u00e8res_Walcheline_de_d_1201",
"type": "childOf"
},
{
"source": "Ferri\u00e8res_Isabella_de",
"target": "Mortimer_Roger_d_1214",
"type": "spouseOf"
},
{
"source": "hostage_exchange_1233d",
"target": "Peter_fitz_Herbert",
"type": "hostageHolder"
},
{
"source": "hostage_exchange_1233d",
"target": "Jacob_de_Beauchamp",
"type": "hostage"
},
{
"source": "hostage_exchange_1233d",
"target": "Beauchamp_Walter_de",
"type": "hostageGiver"
},
{
"source": "Corbet_Thomas",
"target": "hostage_exchange_1233g",
"type": "participated_in"
},
{
"source": "Corbet_Thomas",
"target": "Lacy_Walter_de_d_1241",
"type": "gives_hostage_to"
},
{
"source": "Jacob_de_Beauchamp",
"target": "hostage_exchange_1233d",
"type": "participated_in"
},
{
"source": "Jacob_de_Beauchamp",
"target": "Beauchamp_Walter_de",
"type": "childOf"
},
{
"source": "Jacob_de_Beauchamp",
"target": "Beauchamp_Walter_de",
"type": "is_hostage_for"
},
{
"source": "Hugh_Despenser",
"target": "Ranulf_de_Aldithele",
"type": "holds_as_hostage"
},
{
"source": "Hugh_Despenser",
"target": "hostage_exchange_1233f",
"type": "participated_in"
},
{
"source": "John_Durvassal",
"target": "hostage_exchange_1233i",
"type": "participated_in"
},
{
"source": "John_Durvassal",
"target": "Henry_III",
"type": "gives_hostage_to"
},
{
"source": "John_Durvassal",
"target": "hostage_exchange_1233j",
"type": "participated_in"
},
{
"source": "Hervicus_de_Stafford",
"target": "hostage_exchange_1233h",
"type": "participated_in"
},
{
"source": "Hervicus_de_Stafford",
"target": "John_de_Stafford",
"type": "parentOf"
},
{
"source": "Hervicus_de_Stafford",
"target": "Ralph_fitz_Nicholas",
"type": "gives_hostage_to"
},
{
"source": "John_Picard",
"target": "hostage_exchange_1233e",
"type": "participated_in"
},
{
"source": "John_Picard",
"target": "Lacy_Walter_de_d_1241",
"type": "is_hostage_for"
},
{
"source": "Brompton_Brian_de_1215-1277",
"target": "Mortimer_Ralph_d_1247",
"type": "serves"
},
{
"source": "Brompton_Brian_de_1215-1277",
"target": "Henry_de_Brompton",
"type": "parentOf"
},
{
"source": "Stutevill_Osmund_de",
"target": "hostage_exchange_1233b",
"type": "participated_in"
},
{
"source": "Stutevill_Osmund_de",
"target": "William_de_Stutevill",
"type": "childOf"
},
{
"source": "Stutevill_Osmund_de",
"target": "William_de_Stutevill",
"type": "is_hostage_for"
},
{
"source": "hostage_exchange_1233j",
"target": "A_son_of_John_Durvassal",
"type": "hostage"
},
{
"source": "hostage_exchange_1233j",
"target": "Henry_III",
"type": "hostageHolder"
},
{
"source": "hostage_exchange_1233j",
"target": "John_Durvassal",
"type": "hostageGiver"
},
{
"source": "Warwick_Castle",
"target": "hostage_exchange_1233i",
"type": "participated_in"
},
{
"source": "Nevill_Ralph_de",
"target": "Church",
"type": "serves"
},
{
"source": "Nevill_Ralph_de",
"target": "Henry_III",
"type": "serves"
},
{
"source": "Mortimer_Ralph_d_1247",
"target": "William_de_Stutevill",
"type": "gives_hostage_to"
},
{
"source": "Mortimer_Ralph_d_1247",
"target": "Gwladys_Ddu",
"type": "spouseOf"
},
{
"source": "Mortimer_Ralph_d_1247",
"target": "Brompton_Brian_de_1215-1277",
"type": "lordOf"
},
{
"source": "Mortimer_Ralph_d_1247",
"target": "Mortimer_Roger_d_1214",
"type": "childOf"
},
{
"source": "Mortimer_Ralph_d_1247",
"target": "hostage_exchange_1233a",
"type": "participated_in"
},
{
"source": "Mortimer_Ralph_d_1247",
"target": "Ferri\u00e8res_Isabella_de",
"type": "childOf"
},
{
"source": "Mortimer_Roger_d_1214",
"target": "Ferri\u00e8res_Isabella_de",
"type": "spouseOf"
},
{
"source": "Mortimer_Roger_d_1214",
"target": "Mortimer_Ralph_d_1247",
"type": "parentOf"
},
{
"source": "hostage_exchange_1233k",
"target": "Philip_fitz_William_Sampson",
"type": "hostage"
},
{
"source": "hostage_exchange_1233k",
"target": "John_de_Lodbroc",
"type": "hostageGiver"
},
{
"source": "hostage_exchange_1233k",
"target": "Segrave_Stephen_d_1241",
"type": "hostageHolder"
},
{
"source": "Richard_Corbet",
"target": "Corbet_Reginald",
"type": "parentOf"
},
{
"source": "Ranulf_de_Aldithele",
"target": "Audley_Henry_de",
"type": "is_hostage_for"
},
{
"source": "Ranulf_de_Aldithele",
"target": "hostage_exchange_1233f",
"type": "participated_in"
},
{
"source": "Roger_Picard",
"target": "John_Picard",
"type": "parentOf"
},
{
"source": "Beauchamp_Walter_de",
"target": "Jacob_de_Beauchamp",
"type": "parentOf"
},
{
"source": "Beauchamp_Walter_de",
"target": "hostage_exchange_1233d",
"type": "participated_in"
},
{
"source": "Beauchamp_Walter_de",
"target": "Peter_fitz_Herbert",
"type": "gives_hostage_to"
},
{
"source": "Beauchamp_Walter_de",
"target": "Henry_de_Gamages",
"type": "holds_as_hostage"
},
{
"source": "Beauchamp_Walter_de",
"target": "hostage_exchange_1233c",
"type": "participated_in"
},
{
"source": "John_de_Lodbroc",
"target": "hostage_exchange_1233k",
"type": "participated_in"
},
{
"source": "John_de_Lodbroc",
"target": "hostage_exchange_1233i",
"type": "participated_in"
},
{
"source": "John_de_Lodbroc",
"target": "Segrave_Stephen_d_1241",
"type": "gives_hostage_to"
},
{
"source": "hostage_exchange_1233b",
"target": "William_de_Stutevill",
"type": "hostageGiver"
},
{
"source": "hostage_exchange_1233b",
"target": "Segrave_Stephen_d_1241",
"type": "hostageHolder"
},
{
"source": "hostage_exchange_1233b",
"target": "Stutevill_Osmund_de",
"type": "hostage"
},
{
"source": "Corbet_Reginald",
"target": "Richard_Corbet",
"type": "childOf"
},
{
"source": "Corbet_Reginald",
"target": "hostage_exchange_1233g",
"type": "participated_in"
},
{
"source": "Corbet_Reginald",
"target": "Corbet_Thomas",
"type": "is_hostage_for"
},
{
"source": "William_de_Gamages",
"target": "Beauchamp_Walter_de",
"type": "gives_hostage_to"
},
{
"source": "William_de_Gamages",
"target": "Henry_de_Gamages",
"type": "parentOf"
},
{
"source": "William_de_Gamages",
"target": "hostage_exchange_1233c",
"type": "participated_in"
},
{
"source": "Lacy_Walter_de_d_1241",
"target": "hostage_exchange_1233e",
"type": "participated_in"
},
{
"source": "Lacy_Walter_de_d_1241",
"target": "hostage_exchange_1233g",
"type": "participated_in"
},
{
"source": "Lacy_Walter_de_d_1241",
"target": "Engelard_de_Cigogn\u00e9",
"type": "gives_hostage_to"
},
{
"source": "Lacy_Walter_de_d_1241",
"target": "Corbet_Reginald",
"type": "holds_as_hostage"
},
{
"source": "Henry_de_Gamages",
"target": "hostage_exchange_1233c",
"type": "participated_in"
},
{
"source": "Henry_de_Gamages",
"target": "William_de_Gamages",
"type": "is_hostage_for"
},
{
"source": "Henry_de_Gamages",
"target": "William_de_Gamages",
"type": "childOf"
},
{
"source": "Sampson_William",
"target": "Philip_fitz_William_Sampson",
"type": "parentOf"
},
{
"source": "Sampson_William",
"target": "hostage_exchange_1233k",
"type": "participated_in"
},
{
"source": "Ralph_fitz_Nicholas",
"target": "Henry_III",
"type": "serves"
},
{
"source": "Ralph_fitz_Nicholas",
"target": "John_de_Stafford",
"type": "holds_as_hostage"
},
{
"source": "Ralph_fitz_Nicholas",
"target": "hostage_exchange_1233h",
"type": "participated_in"
},
{
"source": "William_de_Stutevill",
"target": "hostage_exchange_1233b",
"type": "participated_in"
},
{
"source": "William_de_Stutevill",
"target": "Henry_de_Brompton",
"type": "holds_as_hostage"
},
{
"source": "William_de_Stutevill",
"target": "random text literal",
"type": "property"
},
{
"source": "William_de_Stutevill",
"target": "Segrave_Stephen_d_1241",
"type": "gives_hostage_to"
},
{
"source": "William_de_Stutevill",
"target": "hostage_exchange_1233a",
"type": "participated_in"
},
{
"source": "William_de_Stutevill",
"target": "Stutevill_Osmund_de",
"type": "parentOf"
},
{
"source": "hostage_exchange_1233f",
"target": "Hugh_Despenser",
"type": "hostageHolder"
},
{
"source": "hostage_exchange_1233f",
"target": "Audley_Henry_de",
"type": "hostageGiver"
},
{
"source": "hostage_exchange_1233f",
"target": "Ranulf_de_Aldithele",
"type": "hostage"
},
{
"source": "Peter_fitz_Herbert",
"target": "hostage_exchange_1233d",
"type": "participated_in"
},
{
"source": "Peter_fitz_Herbert",
"target": "Jacob_de_Beauchamp",
"type": "holds_as_hostage"
},
{
"source": "John_de_Stafford",
"target": "hostage_exchange_1233h",
"type": "participated_in"
},
{
"source": "John_de_Stafford",
"target": "Hervicus_de_Stafford",
"type": "is_hostage_for"
},
{
"source": "John_de_Stafford",
"target": "Hervicus_de_Stafford",
"type": "childOf"
},
{
"source": "Thomas_earl_of_Warwick_d_1242",
"target": "Phillippa_Basset_d_1265",
"type": "childOf"
},
{
"source": "Thomas_earl_of_Warwick_d_1242",
"target": "Henry_earl_of_Warwick_d_1229",
"type": "childOf"
},
{
"source": "Thomas_earl_of_Warwick_d_1242",
"target": "hostage_exchange_1233i",
"type": "participated_in"
},
{
"source": "hostage_exchange_1233i",
"target": "John_de_Lodbroc",
"type": "custodyHolder"
},
{
"source": "hostage_exchange_1233i",
"target": "Warwick_Castle",
"type": "pledge"
},
{
"source": "hostage_exchange_1233i",
"target": "Thomas_earl_of_Warwick_d_1242",
"type": "pledgeGiver"
},
{
"source": "hostage_exchange_1233i",
"target": "John_Durvassal",
"type": "custodyHolder"
},
{
"source": "Henry_III",
"target": "n83-148645.html",
"type": "sameAs"
},
{
"source": "Henry_III",
"target": "hostage_exchange_1233j",
"type": "participated_in"
},
{
"source": "Henry_III",
"target": "A_son_of_John_Durvassal",
"type": "holds_as_hostage"
},
{
"source": "Gwladys_Ddu",
"target": "Llywelyn_ab_Iorwerth",
"type": "childOf"
},
{
"source": "hostage_exchange_1233a",
"target": "Henry_de_Brompton",
"type": "hostage"
},
{
"source": "hostage_exchange_1233a",