familysearch-gedcomx 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/familysearch/gedcomx/data_model.rb +3 -17
- data/lib/familysearch/gedcomx/version.rb +1 -1
- data/spec/familysearch/gedcomx/atom_spec.rb +3 -3
- data/spec/familysearch/gedcomx/fact_spec.rb +5 -5
- data/spec/familysearch/gedcomx/familysearch_spec.rb +0 -6
- data/spec/familysearch/gedcomx/fixtures/ancestry-query.json +86 -35
- data/spec/familysearch/gedcomx/fixtures/person-with-relationships-father.json +728 -216
- data/spec/familysearch/gedcomx/fixtures/person-with-relationships-mother.json +734 -217
- data/spec/familysearch/gedcomx/fixtures/person-with-relationships.json +412 -89
- data/spec/familysearch/gedcomx/fixtures/person.json +81 -58
- data/spec/familysearch/gedcomx/fixtures/search.json +5056 -139
- data/spec/familysearch/gedcomx/person_spec.rb +1 -1
- metadata +11 -27
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e753f4711cd846b887f935ebdec2db384514dee5
|
4
|
+
data.tar.gz: 27b12564cde6ebbcf555f79f5de308467659837c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b1606e7e456c26c332871eb75e6f28b3d8edaafd4565e8f459e9fd0e670b53aed10074fd196ff543b06e0fa85cb94679f8b6f8bf6d7dd7bf779827f9cbc703d5
|
7
|
+
data.tar.gz: 58d9ce77a3752ba33c08ac5a5c7b7dd1f79eeb3f0bb19eb5c8a6de9686a84dff0aabfbc71784d475e98f0b8d40203c80d42091836066448a7957479d58996f7a
|
@@ -136,8 +136,8 @@ module FamilySearch
|
|
136
136
|
property :field
|
137
137
|
property :original
|
138
138
|
coerce_key :field, EvidenceReference
|
139
|
-
# Not part of the GedcomX spec, but used for convenience.
|
140
139
|
property :normalized
|
140
|
+
coerce_key :normalized, [TextValue]
|
141
141
|
end
|
142
142
|
|
143
143
|
class Date < ExtensibleData
|
@@ -279,7 +279,7 @@ module FamilySearch
|
|
279
279
|
|
280
280
|
coerce_key :evidence, [EvidenceReference]
|
281
281
|
coerce_key :media, [SourceReference]
|
282
|
-
coerce_key :identifiers, [Identifier]
|
282
|
+
# coerce_key :identifiers, [Identifier]
|
283
283
|
end
|
284
284
|
|
285
285
|
class EventRole < Conclusion
|
@@ -612,24 +612,10 @@ module FamilySearch
|
|
612
612
|
|
613
613
|
def initialize(args)
|
614
614
|
super(args)
|
615
|
-
inject_places_into_people()
|
616
615
|
end
|
617
616
|
|
618
617
|
private
|
619
|
-
|
620
|
-
def inject_places_into_people()
|
621
|
-
if self.places
|
622
|
-
place_references = find_place_references(self)
|
623
|
-
place_references.each do |pr|
|
624
|
-
if pr.description
|
625
|
-
id = pr.description.gsub("#","")
|
626
|
-
place = self.places.find{|pd|pd.id == id}
|
627
|
-
pr.normalized = place
|
628
|
-
end
|
629
|
-
end
|
630
|
-
end
|
631
|
-
end
|
632
|
-
|
618
|
+
|
633
619
|
def find_place_references(hash_obj)
|
634
620
|
place_references = []
|
635
621
|
hash_obj.each do |k,v|
|
@@ -11,14 +11,14 @@ describe FamilySearch::Gedcomx::AtomFeed do
|
|
11
11
|
person_json = File.read 'spec/familysearch/gedcomx/fixtures/search.json'
|
12
12
|
search_hash = JSON.parse person_json
|
13
13
|
atom = FamilySearch::Gedcomx::AtomFeed.new search_hash
|
14
|
-
atom.links['next'].href.should == 'https://
|
15
|
-
atom.results.should ==
|
14
|
+
atom.links['next'].href.should == 'https://familysearch.org/platform/tree/search?context=AQATNTkyODE4NTI0Mzc0ODEyODY4MwAAAAlSRSUSAFHXqwA%3D&start=15'
|
15
|
+
atom.results.should == 4200
|
16
16
|
atom.entries[0].should be_instance_of FamilySearch::Gedcomx::AtomEntry
|
17
17
|
atom.entries[0].content.should be_instance_of FamilySearch::Gedcomx::AtomContent
|
18
18
|
atom.entries[0].content.gedcomx.persons[0].should be_instance_of FamilySearch::Gedcomx::Person
|
19
19
|
atom.entries[0].content.gedcomx.persons[0].full_name.should == 'John Smith'
|
20
20
|
atom.entries[0].confidence.should == 5
|
21
|
-
atom.entries[0].score.should ==
|
21
|
+
atom.entries[0].score.should == 509.92
|
22
22
|
end
|
23
23
|
|
24
24
|
end
|
@@ -11,11 +11,11 @@ describe FamilySearch::Gedcomx::Fact do
|
|
11
11
|
end
|
12
12
|
|
13
13
|
it "should have a #normalized method" do
|
14
|
-
subject.date.normalized[0].value.should == "June 1834"
|
14
|
+
subject.date.normalized[0].value.should == "20 June 1834"
|
15
15
|
end
|
16
16
|
|
17
17
|
it "should have an #original method" do
|
18
|
-
subject.date.original.should == "Jun 1834"
|
18
|
+
subject.date.original.should == "20 Jun 1834"
|
19
19
|
end
|
20
20
|
end
|
21
21
|
|
@@ -25,15 +25,15 @@ describe FamilySearch::Gedcomx::Fact do
|
|
25
25
|
end
|
26
26
|
|
27
27
|
it "should have a #normalized method" do
|
28
|
-
subject.place.normalized.should be_instance_of(FamilySearch::Gedcomx::
|
28
|
+
subject.place.normalized[0].should be_instance_of(FamilySearch::Gedcomx::TextValue)
|
29
29
|
end
|
30
30
|
|
31
31
|
it "should have a #normalized.value convenience method" do
|
32
|
-
subject.place.normalized.value.should == "Middlesex, Massachusetts, United States"
|
32
|
+
subject.place.normalized[0].value.should == "Lowell, Middlesex, Massachusetts, United States"
|
33
33
|
end
|
34
34
|
|
35
35
|
it "should have an #original method" do
|
36
|
-
subject.place.original.should == "
|
36
|
+
subject.place.original.should == "Lowell,Middlx,Mass"
|
37
37
|
end
|
38
38
|
end
|
39
39
|
end
|
@@ -4,10 +4,4 @@ require 'json'
|
|
4
4
|
describe FamilySearch::Gedcomx::Fact do
|
5
5
|
subject { FamilySearch::Gedcomx::FamilySearch.new(JSON.parse(File.read('spec/familysearch/gedcomx/fixtures/person.json'))) }
|
6
6
|
|
7
|
-
describe "distributing place details to the place objects" do
|
8
|
-
it 'should have a #normalized on the PlaceReference objects' do
|
9
|
-
subject.persons[0].birth.place.normalized.should be_instance_of(FamilySearch::Gedcomx::PlaceDescription)
|
10
|
-
end
|
11
|
-
|
12
|
-
end
|
13
7
|
end
|
@@ -1,4 +1,10 @@
|
|
1
1
|
{
|
2
|
+
"links" : {
|
3
|
+
"collection" : {
|
4
|
+
"href" : "https://familysearch.org/platform/collections/tree",
|
5
|
+
"title" : "Collection"
|
6
|
+
}
|
7
|
+
},
|
2
8
|
"persons" : [ {
|
3
9
|
"id" : "LH1M-4WY",
|
4
10
|
"links" : {
|
@@ -6,6 +12,10 @@
|
|
6
12
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=LH1M-4WY",
|
7
13
|
"title" : "Ancestry"
|
8
14
|
},
|
15
|
+
"person" : {
|
16
|
+
"href" : "https://familysearch.org/platform/tree/persons/LH1M-4WY",
|
17
|
+
"title" : "Person"
|
18
|
+
},
|
9
19
|
"descendancy" : {
|
10
20
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=LH1M-4WY",
|
11
21
|
"title" : "Descendancy"
|
@@ -16,7 +26,7 @@
|
|
16
26
|
},
|
17
27
|
"child-relationships" : {
|
18
28
|
"href" : "https://familysearch.org/platform/tree/persons/LH1M-4WY/child-relationships",
|
19
|
-
"title" : "Person Relationships"
|
29
|
+
"title" : "Person Child Relationships"
|
20
30
|
}
|
21
31
|
},
|
22
32
|
"living" : false,
|
@@ -25,7 +35,6 @@
|
|
25
35
|
},
|
26
36
|
"names" : [ {
|
27
37
|
"nameForms" : [ {
|
28
|
-
"lang" : "i-default",
|
29
38
|
"fullText" : "Johannes (John) Zimmermen",
|
30
39
|
"parts" : [ {
|
31
40
|
"type" : "http://gedcomx.org/Given",
|
@@ -49,6 +58,10 @@
|
|
49
58
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=KN3V-9RN",
|
50
59
|
"title" : "Ancestry"
|
51
60
|
},
|
61
|
+
"person" : {
|
62
|
+
"href" : "https://familysearch.org/platform/tree/persons/KN3V-9RN",
|
63
|
+
"title" : "Person"
|
64
|
+
},
|
52
65
|
"descendancy" : {
|
53
66
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=KN3V-9RN",
|
54
67
|
"title" : "Descendancy"
|
@@ -59,7 +72,7 @@
|
|
59
72
|
},
|
60
73
|
"child-relationships" : {
|
61
74
|
"href" : "https://familysearch.org/platform/tree/persons/KN3V-9RN/child-relationships",
|
62
|
-
"title" : "Person Relationships"
|
75
|
+
"title" : "Person Child Relationships"
|
63
76
|
}
|
64
77
|
},
|
65
78
|
"living" : false,
|
@@ -68,7 +81,6 @@
|
|
68
81
|
},
|
69
82
|
"names" : [ {
|
70
83
|
"nameForms" : [ {
|
71
|
-
"lang" : "i-default",
|
72
84
|
"fullText" : "Elisabeth Wenger",
|
73
85
|
"parts" : [ {
|
74
86
|
"type" : "http://gedcomx.org/Given",
|
@@ -92,13 +104,17 @@
|
|
92
104
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=KN1H-HBK",
|
93
105
|
"title" : "Ancestry"
|
94
106
|
},
|
107
|
+
"person" : {
|
108
|
+
"href" : "https://familysearch.org/platform/tree/persons/KN1H-HBK",
|
109
|
+
"title" : "Person"
|
110
|
+
},
|
95
111
|
"descendancy" : {
|
96
112
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=KN1H-HBK",
|
97
113
|
"title" : "Descendancy"
|
98
114
|
},
|
99
115
|
"additional-spouse-relationships" : {
|
100
116
|
"href" : "https://familysearch.org/platform/tree/persons/KN1H-HBK/spouse-relationships",
|
101
|
-
"title" : "Person Relationships"
|
117
|
+
"title" : "Person Spouse Relationships"
|
102
118
|
},
|
103
119
|
"self" : {
|
104
120
|
"href" : "https://familysearch.org/platform/tree/persons/KN1H-HBK",
|
@@ -106,7 +122,7 @@
|
|
106
122
|
},
|
107
123
|
"child-relationships" : {
|
108
124
|
"href" : "https://familysearch.org/platform/tree/persons/KN1H-HBK/child-relationships",
|
109
|
-
"title" : "Person Relationships"
|
125
|
+
"title" : "Person Child Relationships"
|
110
126
|
}
|
111
127
|
},
|
112
128
|
"living" : false,
|
@@ -115,7 +131,6 @@
|
|
115
131
|
},
|
116
132
|
"names" : [ {
|
117
133
|
"nameForms" : [ {
|
118
|
-
"lang" : "i-default",
|
119
134
|
"fullText" : "John S. Zimmerman",
|
120
135
|
"parts" : [ {
|
121
136
|
"type" : "http://gedcomx.org/Given",
|
@@ -139,6 +154,10 @@
|
|
139
154
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=L7LL-2P8",
|
140
155
|
"title" : "Ancestry"
|
141
156
|
},
|
157
|
+
"person" : {
|
158
|
+
"href" : "https://familysearch.org/platform/tree/persons/L7LL-2P8",
|
159
|
+
"title" : "Person"
|
160
|
+
},
|
142
161
|
"descendancy" : {
|
143
162
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=L7LL-2P8",
|
144
163
|
"title" : "Descendancy"
|
@@ -149,7 +168,7 @@
|
|
149
168
|
},
|
150
169
|
"child-relationships" : {
|
151
170
|
"href" : "https://familysearch.org/platform/tree/persons/L7LL-2P8/child-relationships",
|
152
|
-
"title" : "Person Relationships"
|
171
|
+
"title" : "Person Child Relationships"
|
153
172
|
}
|
154
173
|
},
|
155
174
|
"living" : false,
|
@@ -158,7 +177,6 @@
|
|
158
177
|
},
|
159
178
|
"names" : [ {
|
160
179
|
"nameForms" : [ {
|
161
|
-
"lang" : "i-default",
|
162
180
|
"fullText" : "Christian Zimmerman",
|
163
181
|
"parts" : [ {
|
164
182
|
"type" : "http://gedcomx.org/Given",
|
@@ -182,6 +200,10 @@
|
|
182
200
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=L7LL-25C",
|
183
201
|
"title" : "Ancestry"
|
184
202
|
},
|
203
|
+
"person" : {
|
204
|
+
"href" : "https://familysearch.org/platform/tree/persons/L7LL-25C",
|
205
|
+
"title" : "Person"
|
206
|
+
},
|
185
207
|
"descendancy" : {
|
186
208
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=L7LL-25C",
|
187
209
|
"title" : "Descendancy"
|
@@ -192,7 +214,7 @@
|
|
192
214
|
},
|
193
215
|
"child-relationships" : {
|
194
216
|
"href" : "https://familysearch.org/platform/tree/persons/L7LL-25C/child-relationships",
|
195
|
-
"title" : "Person Relationships"
|
217
|
+
"title" : "Person Child Relationships"
|
196
218
|
}
|
197
219
|
},
|
198
220
|
"living" : false,
|
@@ -201,7 +223,6 @@
|
|
201
223
|
},
|
202
224
|
"names" : [ {
|
203
225
|
"nameForms" : [ {
|
204
|
-
"lang" : "i-default",
|
205
226
|
"fullText" : "Magdalena Wieland",
|
206
227
|
"parts" : [ {
|
207
228
|
"type" : "http://gedcomx.org/Given",
|
@@ -225,6 +246,10 @@
|
|
225
246
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=L4NG-MNV",
|
226
247
|
"title" : "Ancestry"
|
227
248
|
},
|
249
|
+
"person" : {
|
250
|
+
"href" : "https://familysearch.org/platform/tree/persons/L4NG-MNV",
|
251
|
+
"title" : "Person"
|
252
|
+
},
|
228
253
|
"descendancy" : {
|
229
254
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=L4NG-MNV",
|
230
255
|
"title" : "Descendancy"
|
@@ -235,7 +260,7 @@
|
|
235
260
|
},
|
236
261
|
"child-relationships" : {
|
237
262
|
"href" : "https://familysearch.org/platform/tree/persons/L4NG-MNV/child-relationships",
|
238
|
-
"title" : "Person Relationships"
|
263
|
+
"title" : "Person Child Relationships"
|
239
264
|
}
|
240
265
|
},
|
241
266
|
"living" : false,
|
@@ -244,7 +269,6 @@
|
|
244
269
|
},
|
245
270
|
"names" : [ {
|
246
271
|
"nameForms" : [ {
|
247
|
-
"lang" : "i-default",
|
248
272
|
"fullText" : "Anna Magdalina Zimmerman",
|
249
273
|
"parts" : [ {
|
250
274
|
"type" : "http://gedcomx.org/Given",
|
@@ -268,6 +292,10 @@
|
|
268
292
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=KW8W-RFD",
|
269
293
|
"title" : "Ancestry"
|
270
294
|
},
|
295
|
+
"person" : {
|
296
|
+
"href" : "https://familysearch.org/platform/tree/persons/KW8W-RFD",
|
297
|
+
"title" : "Person"
|
298
|
+
},
|
271
299
|
"descendancy" : {
|
272
300
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=KW8W-RFD",
|
273
301
|
"title" : "Descendancy"
|
@@ -278,7 +306,7 @@
|
|
278
306
|
},
|
279
307
|
"child-relationships" : {
|
280
308
|
"href" : "https://familysearch.org/platform/tree/persons/KW8W-RFD/child-relationships",
|
281
|
-
"title" : "Person Relationships"
|
309
|
+
"title" : "Person Child Relationships"
|
282
310
|
}
|
283
311
|
},
|
284
312
|
"living" : false,
|
@@ -287,7 +315,6 @@
|
|
287
315
|
},
|
288
316
|
"names" : [ {
|
289
317
|
"nameForms" : [ {
|
290
|
-
"lang" : "i-default",
|
291
318
|
"fullText" : "Charles Zimmerman",
|
292
319
|
"parts" : [ {
|
293
320
|
"type" : "http://gedcomx.org/Given",
|
@@ -311,13 +338,17 @@
|
|
311
338
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=L78M-RLN",
|
312
339
|
"title" : "Ancestry"
|
313
340
|
},
|
341
|
+
"person" : {
|
342
|
+
"href" : "https://familysearch.org/platform/tree/persons/L78M-RLN",
|
343
|
+
"title" : "Person"
|
344
|
+
},
|
314
345
|
"descendancy" : {
|
315
346
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=L78M-RLN",
|
316
347
|
"title" : "Descendancy"
|
317
348
|
},
|
318
349
|
"additional-spouse-relationships" : {
|
319
350
|
"href" : "https://familysearch.org/platform/tree/persons/L78M-RLN/spouse-relationships",
|
320
|
-
"title" : "Person Relationships"
|
351
|
+
"title" : "Person Spouse Relationships"
|
321
352
|
},
|
322
353
|
"self" : {
|
323
354
|
"href" : "https://familysearch.org/platform/tree/persons/L78M-RLN",
|
@@ -325,7 +356,7 @@
|
|
325
356
|
},
|
326
357
|
"child-relationships" : {
|
327
358
|
"href" : "https://familysearch.org/platform/tree/persons/L78M-RLN/child-relationships",
|
328
|
-
"title" : "Person Relationships"
|
359
|
+
"title" : "Person Child Relationships"
|
329
360
|
}
|
330
361
|
},
|
331
362
|
"living" : false,
|
@@ -334,7 +365,6 @@
|
|
334
365
|
},
|
335
366
|
"names" : [ {
|
336
367
|
"nameForms" : [ {
|
337
|
-
"lang" : "i-default",
|
338
368
|
"fullText" : "Parker Felch",
|
339
369
|
"parts" : [ {
|
340
370
|
"type" : "http://gedcomx.org/Given",
|
@@ -358,6 +388,10 @@
|
|
358
388
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=L78M-TD6",
|
359
389
|
"title" : "Ancestry"
|
360
390
|
},
|
391
|
+
"person" : {
|
392
|
+
"href" : "https://familysearch.org/platform/tree/persons/L78M-TD6",
|
393
|
+
"title" : "Person"
|
394
|
+
},
|
361
395
|
"descendancy" : {
|
362
396
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=L78M-TD6",
|
363
397
|
"title" : "Descendancy"
|
@@ -368,7 +402,7 @@
|
|
368
402
|
},
|
369
403
|
"child-relationships" : {
|
370
404
|
"href" : "https://familysearch.org/platform/tree/persons/L78M-TD6/child-relationships",
|
371
|
-
"title" : "Person Relationships"
|
405
|
+
"title" : "Person Child Relationships"
|
372
406
|
}
|
373
407
|
},
|
374
408
|
"living" : false,
|
@@ -377,7 +411,6 @@
|
|
377
411
|
},
|
378
412
|
"names" : [ {
|
379
413
|
"nameForms" : [ {
|
380
|
-
"lang" : "i-default",
|
381
414
|
"fullText" : "Hannah Gould",
|
382
415
|
"parts" : [ {
|
383
416
|
"type" : "http://gedcomx.org/Given",
|
@@ -401,13 +434,17 @@
|
|
401
434
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=L7PD-KY3",
|
402
435
|
"title" : "Ancestry"
|
403
436
|
},
|
437
|
+
"person" : {
|
438
|
+
"href" : "https://familysearch.org/platform/tree/persons/L7PD-KY3",
|
439
|
+
"title" : "Person"
|
440
|
+
},
|
404
441
|
"descendancy" : {
|
405
442
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=L7PD-KY3",
|
406
443
|
"title" : "Descendancy"
|
407
444
|
},
|
408
445
|
"additional-spouse-relationships" : {
|
409
446
|
"href" : "https://familysearch.org/platform/tree/persons/L7PD-KY3/spouse-relationships",
|
410
|
-
"title" : "Person Relationships"
|
447
|
+
"title" : "Person Spouse Relationships"
|
411
448
|
},
|
412
449
|
"self" : {
|
413
450
|
"href" : "https://familysearch.org/platform/tree/persons/L7PD-KY3",
|
@@ -415,7 +452,7 @@
|
|
415
452
|
},
|
416
453
|
"child-relationships" : {
|
417
454
|
"href" : "https://familysearch.org/platform/tree/persons/L7PD-KY3/child-relationships",
|
418
|
-
"title" : "Person Relationships"
|
455
|
+
"title" : "Person Child Relationships"
|
419
456
|
}
|
420
457
|
},
|
421
458
|
"living" : false,
|
@@ -424,7 +461,6 @@
|
|
424
461
|
},
|
425
462
|
"names" : [ {
|
426
463
|
"nameForms" : [ {
|
427
|
-
"lang" : "i-default",
|
428
464
|
"fullText" : "Marshall P Felch",
|
429
465
|
"parts" : [ {
|
430
466
|
"type" : "http://gedcomx.org/Given",
|
@@ -448,13 +484,17 @@
|
|
448
484
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=K29J-9BD",
|
449
485
|
"title" : "Ancestry"
|
450
486
|
},
|
487
|
+
"person" : {
|
488
|
+
"href" : "https://familysearch.org/platform/tree/persons/K29J-9BD",
|
489
|
+
"title" : "Person"
|
490
|
+
},
|
451
491
|
"descendancy" : {
|
452
492
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=K29J-9BD",
|
453
493
|
"title" : "Descendancy"
|
454
494
|
},
|
455
495
|
"additional-spouse-relationships" : {
|
456
496
|
"href" : "https://familysearch.org/platform/tree/persons/K29J-9BD/spouse-relationships",
|
457
|
-
"title" : "Person Relationships"
|
497
|
+
"title" : "Person Spouse Relationships"
|
458
498
|
},
|
459
499
|
"self" : {
|
460
500
|
"href" : "https://familysearch.org/platform/tree/persons/K29J-9BD",
|
@@ -462,7 +502,7 @@
|
|
462
502
|
},
|
463
503
|
"child-relationships" : {
|
464
504
|
"href" : "https://familysearch.org/platform/tree/persons/K29J-9BD/child-relationships",
|
465
|
-
"title" : "Person Relationships"
|
505
|
+
"title" : "Person Child Relationships"
|
466
506
|
},
|
467
507
|
"additional-parent-relationships" : {
|
468
508
|
"href" : "https://familysearch.org/platform/tree/persons/K29J-9BD/fs-parent-relationships",
|
@@ -475,7 +515,6 @@
|
|
475
515
|
},
|
476
516
|
"names" : [ {
|
477
517
|
"nameForms" : [ {
|
478
|
-
"lang" : "i-default",
|
479
518
|
"fullText" : "Ira Colburn",
|
480
519
|
"parts" : [ {
|
481
520
|
"type" : "http://gedcomx.org/Given",
|
@@ -499,6 +538,10 @@
|
|
499
538
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=KCFB-WTR",
|
500
539
|
"title" : "Ancestry"
|
501
540
|
},
|
541
|
+
"person" : {
|
542
|
+
"href" : "https://familysearch.org/platform/tree/persons/KCFB-WTR",
|
543
|
+
"title" : "Person"
|
544
|
+
},
|
502
545
|
"descendancy" : {
|
503
546
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=KCFB-WTR",
|
504
547
|
"title" : "Descendancy"
|
@@ -509,7 +552,7 @@
|
|
509
552
|
},
|
510
553
|
"child-relationships" : {
|
511
554
|
"href" : "https://familysearch.org/platform/tree/persons/KCFB-WTR/child-relationships",
|
512
|
-
"title" : "Person Relationships"
|
555
|
+
"title" : "Person Child Relationships"
|
513
556
|
}
|
514
557
|
},
|
515
558
|
"living" : false,
|
@@ -518,7 +561,6 @@
|
|
518
561
|
},
|
519
562
|
"names" : [ {
|
520
563
|
"nameForms" : [ {
|
521
|
-
"lang" : "i-default",
|
522
564
|
"fullText" : "Celena Cisco",
|
523
565
|
"parts" : [ {
|
524
566
|
"type" : "http://gedcomx.org/Given",
|
@@ -542,13 +584,17 @@
|
|
542
584
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=279W-NDV",
|
543
585
|
"title" : "Ancestry"
|
544
586
|
},
|
587
|
+
"person" : {
|
588
|
+
"href" : "https://familysearch.org/platform/tree/persons/279W-NDV",
|
589
|
+
"title" : "Person"
|
590
|
+
},
|
545
591
|
"descendancy" : {
|
546
592
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=279W-NDV",
|
547
593
|
"title" : "Descendancy"
|
548
594
|
},
|
549
595
|
"additional-spouse-relationships" : {
|
550
596
|
"href" : "https://familysearch.org/platform/tree/persons/279W-NDV/spouse-relationships",
|
551
|
-
"title" : "Person Relationships"
|
597
|
+
"title" : "Person Spouse Relationships"
|
552
598
|
},
|
553
599
|
"self" : {
|
554
600
|
"href" : "https://familysearch.org/platform/tree/persons/279W-NDV",
|
@@ -556,7 +602,7 @@
|
|
556
602
|
},
|
557
603
|
"child-relationships" : {
|
558
604
|
"href" : "https://familysearch.org/platform/tree/persons/279W-NDV/child-relationships",
|
559
|
-
"title" : "Person Relationships"
|
605
|
+
"title" : "Person Child Relationships"
|
560
606
|
}
|
561
607
|
},
|
562
608
|
"living" : false,
|
@@ -565,7 +611,6 @@
|
|
565
611
|
},
|
566
612
|
"names" : [ {
|
567
613
|
"nameForms" : [ {
|
568
|
-
"lang" : "i-default",
|
569
614
|
"fullText" : "Amanda Matilda Colburn",
|
570
615
|
"parts" : [ {
|
571
616
|
"type" : "http://gedcomx.org/Given",
|
@@ -589,6 +634,10 @@
|
|
589
634
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=KW8W-RF8",
|
590
635
|
"title" : "Ancestry"
|
591
636
|
},
|
637
|
+
"person" : {
|
638
|
+
"href" : "https://familysearch.org/platform/tree/persons/KW8W-RF8",
|
639
|
+
"title" : "Person"
|
640
|
+
},
|
592
641
|
"descendancy" : {
|
593
642
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=KW8W-RF8",
|
594
643
|
"title" : "Descendancy"
|
@@ -599,7 +648,7 @@
|
|
599
648
|
},
|
600
649
|
"child-relationships" : {
|
601
650
|
"href" : "https://familysearch.org/platform/tree/persons/KW8W-RF8/child-relationships",
|
602
|
-
"title" : "Person Relationships"
|
651
|
+
"title" : "Person Child Relationships"
|
603
652
|
}
|
604
653
|
},
|
605
654
|
"living" : false,
|
@@ -608,7 +657,6 @@
|
|
608
657
|
},
|
609
658
|
"names" : [ {
|
610
659
|
"nameForms" : [ {
|
611
|
-
"lang" : "i-default",
|
612
660
|
"fullText" : "Sarah Ellen Felch",
|
613
661
|
"parts" : [ {
|
614
662
|
"type" : "http://gedcomx.org/Given",
|
@@ -632,6 +680,10 @@
|
|
632
680
|
"href" : "https://familysearch.org/platform/tree/ancestry?person=KWZF-CFW",
|
633
681
|
"title" : "Ancestry"
|
634
682
|
},
|
683
|
+
"person" : {
|
684
|
+
"href" : "https://familysearch.org/platform/tree/persons/KWZF-CFW",
|
685
|
+
"title" : "Person"
|
686
|
+
},
|
635
687
|
"descendancy" : {
|
636
688
|
"href" : "https://familysearch.org/platform/tree/descendancy?person=KWZF-CFW",
|
637
689
|
"title" : "Descendancy"
|
@@ -642,7 +694,7 @@
|
|
642
694
|
},
|
643
695
|
"child-relationships" : {
|
644
696
|
"href" : "https://familysearch.org/platform/tree/persons/KWZF-CFW/child-relationships",
|
645
|
-
"title" : "Person Relationships"
|
697
|
+
"title" : "Person Child Relationships"
|
646
698
|
},
|
647
699
|
"additional-parent-relationships" : {
|
648
700
|
"href" : "https://familysearch.org/platform/tree/persons/KWZF-CFW/fs-parent-relationships",
|
@@ -655,7 +707,6 @@
|
|
655
707
|
},
|
656
708
|
"names" : [ {
|
657
709
|
"nameForms" : [ {
|
658
|
-
"lang" : "i-default",
|
659
710
|
"fullText" : "Francis Moroni Zimmerman",
|
660
711
|
"parts" : [ {
|
661
712
|
"type" : "http://gedcomx.org/Given",
|