-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-definitions.yaml
More file actions
1910 lines (1910 loc) · 70.9 KB
/
data-definitions.yaml
File metadata and controls
1910 lines (1910 loc) · 70.9 KB
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
-
TableName: AddressLinkTable
Fields:
-
FieldName: LinkID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3..."
Comments: "Link Identification Number, sequentially ordered"
-
FieldName: OwnerType
Type: Integer
Typical Values: "0,1,3,6"
Comments: "0 = Person (Address of Person Fact from Edit Person Window),\n1 = Family (Address of Spouse / Parents from Edit Person Window),\n3 = Source (Repository),\n6 = Task (Address or Repository)"
-
FieldName: AddressID
Type: Integer
Key/Index: Foreign Key
Typical Values: "1,2,3..."
Comments: Links to AddressID in AddressTable
-
FieldName: OwnerID
Type: Integer
Key/Index: Foreign Key
Typical Values: "1,2,3..."
Comments: "Link based on OwnerType:\n0 = PersonTable.PersonID,\n1 = FamilyTable.FamilyID,\n3 = SourceTable.SourceID,\n6 = TaskTable.TaskID"
-
FieldName: AddressNum
Type: Integer
Typical Values: 0.0
-
FieldName: Details
Type: Text
Typical Values: Blank
Comments: Not Implemented
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: AddressTable
Fields:
-
FieldName: AddressID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3..."
Comments: Address Identification Number
-
FieldName: AddressType
Type: Integer
Typical Values: "0,1"
Comments: "0 = Person or Family,\n1 = Repository"
-
FieldName: Name
Type: Text Collate RMNOCASE
Key/Index: idxAddressName
Typical Values: User Defined
Comments: "Name, from Edit Address pane or Edit Repository pane. "
-
FieldName: Street1
Type: Text
Typical Values: User Defined
Comments: "Street address [first line], from Edit Address pane or Edit Repository pane. "
-
FieldName: Street2
Type: Text
Typical Values: User Defined
Comments: "Street address [second line], from Edit Address pane or Edit Repository pane. "
-
FieldName: City
Type: Text
Typical Values: User Defined
Comments: "City, from Edit Address pane or Edit Repository pane. "
-
FieldName: State
Type: Text
Typical Values: User Defined
Comments: "State, from Edit Address pane or Edit Repository pane. "
-
FieldName: Zip
Type: Text
Typical Values: User Defined
Comments: "Postal Code, from Edit Address pane or Edit Repository pane. "
-
FieldName: Country
Type: Text
Typical Values: User Defined
Comments: "Country, from Edit Address pane or Edit Repository pane. "
-
FieldName: Phone1
Type: Text
Typical Values: User Defined
Comments: "Phone, from Edit Address pane or Edit Repository pane. "
-
FieldName: Phone2
Type: Text
Typical Values: User Defined
Comments: "Cell phone, from Edit Address pane or Edit Repository pane. "
-
FieldName: Fax
Type: Text
Typical Values: User Defined
Comments: "Fax, from Edit Address pane or Edit Repository pane. "
-
FieldName: Email
Type: Text
Typical Values: User Defined
Comments: "Email, from Edit Address pane or Edit Repository pane. "
-
FieldName: URL
Type: Text
Typical Values: User Defined
Comments: "Website, from Edit Address pane or Edit Repository pane. "
-
FieldName: Latitude
Type: Integer
Typical Values: User Defined
Comments: Not implemented
-
FieldName: Longitude
Type: Integer
Typical Values: User Defined
Comments: Not implemented
-
FieldName: Note
Type: Text
Typical Values: User Defined
Comments: "Note, from Edit Address pane or Edit Repository pane. \nUser Interface supports line breaks and formatting tags."
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: AncestryTable
Fields:
-
FieldName: LinkID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3..."
Comments: LinkID Identification Number
-
FieldName: LinkType
Type: Integer
Typical Values: "0, 4, 11"
Comments: "0 = Person, \n4 = Citation, \n11 = Media"
-
FieldName: rmID
Type: Integer
Key/Index: "Foreign Key,\nidxLinkAncestryRmID"
Typical Values: "1,2,3..."
Comments: "Link based on LinkType:\n0 = PersonTable.PersonID, \n4 = CitationTable.CitationID, \n11 = MultiMediaTable.MediaID"
-
FieldName: anID
Type: Text
Key/Index: idxLinkAncestryanID
Typical Values: Formatted string
Comments: "Person = [d]{12}:[d]{4}:[d]{9} - e.g.: 121212121212:1030:123456789,\nCitation, origin RM = [d]:9000:[d] (length varies),\nCitation, origin Ancestry = [d]:[d] \nMedia = Ancestry assigned ID (matches filename for media downloaded from Ancestry)"
-
FieldName: Modified
Type: Integer
Typical Values: "0, 1"
Comments: "For LinkType=0 (Person):\n0 = No modification detected or 'Mark as not changed' button has been selected in Treeshare,\n1 = Change identified in RM db or in Ancestry via Treeshare notification. Person’s status appears as changed in Treeshare."
-
FieldName: anVersion
Type: Text
Typical Values: Null or Hex String
Comments: "Hex code where LinkType=0 (Person), \nOtherwise NULL"
-
FieldName: anDate
Type: Float
Typical Values: 0.0
-
FieldName: Status
Type: Integer
Typical Values: 0.0
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
FieldName: TreeID
Type: Text
Typical Values: Blank
Comments: Not Implemented
-
TableName: ChildTable
Fields:
-
FieldName: RecID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3..."
Comments: Record number in childtable
-
FieldName: ChildID
Type: Integer
Key/Index: "Foreign Key,\nidxChildID"
Typical Values: "1,2,3..."
Comments: Link to PersonID in PersonTable
-
FieldName: FamilyID
Type: Integer
Key/Index: "Foreign Key,\nidxChildFamilyID"
Typical Values: "1,2,3..."
Comments: Link to FamilyID in FamilyTable
-
FieldName: RelFather
Type: Integer
Typical Values: "0,1,2,..."
Comments: "Relationship to Father as defined in Parents section of Edit Person: \n0 = Birth,\n1 = Adopted, \n2 = Step,\n3 = Foster,\n4 = Related,\n5 = Guardian,\n6 = Sealed,\n7 = Unknown"
-
FieldName: RelMother
Type: Integer
Typical Values: "0,1,2,..."
Comments: "Relationship to Mother as defined in Parents section of Edit Person: \n(Values same as RelFather)"
-
FieldName: ChildOrder
Type: Integer
Key/Index: idxChildOrder
Typical Values: "0,1,2,3,..."
Comments: "When number of Children=1:\n0 = Child added to family with Add Father or Add Mother action,\n1000 = Child added to family with Add Child action;\nElse, once number of Children >1 value matches order in Family view."
-
FieldName: IsPrivate
Type: Integer
Typical Values: 0.0
Comments: Not Implemented
-
FieldName: ProofFather
Type: Integer
Typical Values: "0,1,2,3"
Comments: "Set by Proof listbox in Parents pane of Edit Persons. \n0 - Blank, \n1 - Proven, \n2 - Disproven, \n3 - Disputed"
-
FieldName: ProofMother
Type: Integer
Typical Values: "0,1,2,3"
Comments: "Set by Proof listbox in Parents pane of Edit Persons. \n0 - Blank, \n1 - Proven, \n2 - Disproven, \n3 - Disputed"
-
FieldName: Note
Type: Text
Typical Values: Blank
Comments: Not Implemented
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: CitationLinkTable
Fields:
-
FieldName: LinkID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3,..."
Comments: Link identification number
-
FieldName: CitationID
Type: Integer
Key/Index: Foreign Key
Typical Values: "1,2,3,..."
Comments: Link to CitationTable.CitationID
-
FieldName: OwnerType
Type: Integer
Typical Values: "0,1,2,6,7,19"
Comments: " 0 = Person,\n 1 = Family,\n 2 = Event,\n 6 = Task,\n 7 = Name,\n19 = Association"
-
FieldName: OwnerID
Type: Integer
Key/Index: "Foreign Key,\nidxCitationLinkOwnerID"
Comments: "Link to Primary Key of table based on OwnerType:\n 0 = PersonTable.PersonID,\n 1 = FamilyTable.FamilyID,\n 2 = EventTable.EventID,\n 6 = TaskTable.TaskID,\n 7 = NameTable.NameID,\n 19 = FanTable.FanID"
-
FieldName: SortOrder
Type: Integer
Typical Values: "Null, or\n0"
Comments: "Not Implemented:\nNull = Legacy data,\n0 = New table entry"
-
FieldName: Quality
Type: Text
Typical Values: "[PS~]{DIN~][OX~]"
Comments: "3-Character Quality of this information:\n 1st = (Info): P = Primary, S = Secondary,~ = Don't know\n 2nd = (Evidence): D = Direct, I = Indirect, N = Negative, ~ = Don't know\n 3rd = (Source): O = Original, X = Derivative, ~ = Don't know"
-
FieldName: IsPrivate
Type: Integer
Typical Values: 0.0
Comments: Not Implemented
-
FieldName: Flags
Type: Integer
Typical Values: 0.0
Comments: Not Implemented
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: CitationTable
Fields:
-
FieldName: CitationID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3..."
Comments: Citation Identification Number
-
FieldName: SourceID
Type: Integer
Key/Index: "Foreign Key,\nidxCitationSourceID"
Typical Values: "1,2,3..."
Comments: Link to SourceID of SourceTable
-
FieldName: Comments
Type: Text
Typical Values: User Defined
Comments: Detail Comment from Edit Citation pane. User Interface supports line breaks and formatting tags.
-
FieldName: ActualText
Type: Text
Typical Values: User Defined
Comments: Research Note from Edit Citation pane. User Interface supports line breaks and formatting tags.
-
FieldName: RefNumber
Type: Text
Typical Values: User Defined
Comments: "Detail Ref# from Edit Citation pane."
-
FieldName: Footnote
Type: Text
Typical Values: User Defined
Comments: "Value from Customize Footnote window, overrides sentence template output. User Interface supports line breaks and formatting tags."
-
FieldName: ShortFootnote
Type: Text
Typical Values: User Defined
Comments: "Value from Customize Footnote window, overrides sentence template output. User Interface supports line breaks and formatting tags."
-
FieldName: Bibliography
Type: Text
Typical Values: User Defined
Comments: "Value from Customize Footnote window, overrides sentence template output. User Interface supports line breaks and formatting tags."
-
FieldName: Fields
Type: Blob
Typical Values: XML
Comments: Citation Detail field “Names” (from Source template) and “Values” (from Edit Citation pane)
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
FieldName: CitationName
Type: Text Collate RMNOCASE
Key/Index: idxCitationName
Typical Values: User Defined
Comments: "If left blank, field value is auto generated as the concatenation of all Citation Detail fields separated by semi-colons."
-
TableName: ConfigTable
Fields:
-
FieldName: RecID
Type: Integer
Key/Index: Primary Key
Typical Values: "1, 2, 3..."
Comments: Record Identification Number
-
FieldName: RecType
Type: Integer
Key/Index: idxRecType
Typical Values: "1, 2, 3..."
Comments: "Record Type:\n1 = Database Configuration settings\n3 = Custom Report settings, from Publish menu\n4 = \n5 = Standard Report settings, from Publish menu\n6 = HTML Website settings, from Publish menu\n7 = Problem Options, from General Settings menu or Problem Search\n9 = Book settings, from Publish menu"
-
FieldName: Title
Type: Text
Typical Values: "Built-in or\nUser Defined"
Comments: Title - See Row 5 of ConfigTable Tab
-
FieldName: DataRec
Type: Blob
Typical Values: XML code
Comments: Data Record - See Row 40 of ConfigTable Tab
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: DNATable
Fields:
-
FieldName: RecID
Type: Integer
Key/Index: Primary Key
Typical Values: "1, 2, 3…"
Comments: Record Identification Number
-
FieldName: ID1
Type: Integer
Key/Index: "idxDnaId1,\n Foreign Key"
Typical Values: "1, 2, 3…"
Comments: "Person 1, from the DNA Match view of Edit Person Window. \nLinks to PersonTable.PersonID."
-
FieldName: ID2
Type: Integer
Key/Index: "idxDnaId2,\n Foreign Key"
Typical Values: "1, 2, 3…"
Comments: "Person 2, from the DNA Match view of Edit Person Window. \nLinks to PersonTable.PersonID."
-
FieldName: Label1
Type: Text
Typical Values: User Defined
Comments: "Label 1, from the DNA Match view of Edit Person Window. \n"
-
FieldName: Label2
Type: Text
Typical Values: User Defined
Comments: "Label 2, from the DNA Match view of Edit Person Window. \n"
-
FieldName: DNAProvider
Type: Integer
Typical Values: "1-6, 998, 999"
Comments: "Provider, from the DNA Match view of Edit Person Window:\n1 = 23andMe,\n2 = Ancestry,\n3 = Family Tree DNA,\n4 = Living DNA,\n5 = My Heritage,\n6 = GEDmatch,\n998 = Unknown,\n999 = Other"
-
FieldName: SharedCM
Type: Float
Typical Values: "User Defined,\n0-4000"
Comments: "Shared Centimorgans (cM), from the DNA Match view of Edit Person Window."
-
FieldName: SharedPercent
Type: Float
Typical Values: "User Defined,\n0-100"
Comments: "Shared Percentage, from the DNA Match view of Edit Person Window."
-
FieldName: LargeSeg
Type: Float
Typical Values: "User Defined,\n0-500"
Comments: "Largest Segment (cM), from the DNA Match view of Edit Person Window."
-
FieldName: SharedSegs
Type: Integer
Typical Values: "User Defined,\n0-100"
Comments: "Shared Segments, from the DNA Match view of Edit Person Window."
-
FieldName: Date
Type: Text
Typical Values: Position coded string or free text
Comments: "[See Date sheet for additional details.]"
-
FieldName: Relate1
Type: Integer
Typical Values: 0-999
Comments: "Relate1, the number of generations between Person 1 (DNATable.ID1) and the Most Recent Common Ancestor (DNATable.CommonAnc). Relate1 and Relate2, taken together with DNATable.CommonAncType, calculate the relationship between the shared DNA Match. "
-
FieldName: Relate2
Type: Integer
Typical Values: "0,1,2,..."
Comments: "Relate2, the number of generations between Person 2 (DNATable.ID2) and the Most Recent Common Ancestor (DNATable.CommonAnc). Relate1 and Relate2, taken together with DNATable.CommonAncType, calculate the relationship between the shared DNA Match. \n"
-
FieldName: CommonAnc
Type: Integer
Key/Index: Foreign Key
Typical Values: "0,1,2,..."
Comments: "Most Recent Common Ancestor (MRCA) of Person1 and Person2 of the DNA Match. Link to Primary Key of table based on DNATable.CommonAncType: \n0 = PersonTable.PersonID,\n1 = FamilyTable.FamilyID\n\nNote: CommonAnc = 0 when both Relate1 and Relate2 = 0 (ie when no RM-defined Tree Relationship has been identified)."
-
FieldName: CommonAncType
Type: Integer
Typical Values: "0,1"
Comments: "Common Ancestor Type. When DNATable.CommonAnc > 0: \n0 = Single MRCA (ie Half Relationship) identified in RM Tree,\n1 = Couple MRCA identified in RM Tree\n\nNote: CommonAncType also = 0 when DNATable.CommonAnc=0 (ie when no RM-defined Tree Relationship has been identified)."
-
FieldName: Verified
Type: Integer
Typical Values: 0.0
Comments: Not Implemented
-
FieldName: Note
Type: Text
Typical Values: User Defined
Comments: "DNA Note, from the DNA Match view of Edit Person Window. \n User Interface supports line breaks and formatting tags."
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: EventTable
Fields:
-
FieldName: EventID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3..."
Comments: Event Identification Number
-
FieldName: EventType
Type: Integer
Key/Index: "Foreign Key,\nidxOwnerEvent"
Typical Values: "1,2,3..."
Comments: Link to FactTypeID in FactTypeTable
-
FieldName: OwnerType
Type: Integer
Typical Values: "0,1"
Comments: "0 = Person,\n1 = Family"
-
FieldName: OwnerID
Type: Integer
Key/Index: "Foreign Key,\nidxOwnerDate,\nidxOwnerEvent"
Typical Values: "1,2,3..."
Comments: "Link based on OwnerType:\n0 = PersonID in PersonTable,\n1 = FamilyID in FamilyTable"
-
FieldName: FamilyID
Type: Integer
Key/Index: Foreign Key
Typical Values: "0,1,2,..."
Comments: "Link based on OwnerType:\n0 = not applicable or not assigned to event,\nElse = FamilyID in FamilyTable (Set via Parents listbox in Edit Person Fact pane for events such as Adoption or LDS Seal to Parents)"
-
FieldName: PlaceID
Type: Integer
Key/Index: Foreign Key
Typical Values: "0,1,2,..."
Comments: "0 if no Place has been assigned to event, \nelse PlaceID in PlaceTable"
-
FieldName: SiteID
Type: Integer
Key/Index: Foreign Key
Typical Values: "0,1,2,..."
Comments: "0 if no Place Details assigned to event, \nelse PlaceID (of Place Details) in PlaceTable"
-
FieldName: Date
Type: Text
Typical Values: Position coded string or free text
Comments: "[See Date sheet for additional details.]"
-
FieldName: SortDate
Type: BigInt
Key/Index: idxOwnerDate
Typical Values: 18 digits
Comments: Number representing a user entered date that forces an event into a position relative to other events in lists sorted on the Date field.
-
FieldName: IsPrimary
Type: Integer
Typical Values: "0,1"
Comments: "Primary checkbox in Edit Person Fact pane:\n0 = Not checked (default),\n1 = Checked. (Used to suppress from reports other conflicting facts of the same type.)"
-
FieldName: IsPrivate
Type: Integer
Typical Values: "0,1"
Comments: "Private checkbox in Edit Person Fact pane:\n0 = Not checked (default),\n1 = Checked. (Used to optionally suppress from reports events that are considered “private”.)"
-
FieldName: Proof
Type: Integer
Typical Values: "0,1,2,3"
Comments: "Proof listbox in Edit Person Fact pane:\n0 = Blank, \n1 = Proven, \n2 = Proven False, \n3 = Disputed"
-
FieldName: Status
Type: Integer
Typical Values: 0-12
Comments: "0 (default),\nElse = status of LDS events: e.g. 1-Submitted, 8-DNS, 12-Cleared"
-
FieldName: Sentence
Type: Text
Typical Values: Sentence Template Language
Comments: "Customised sentence for this event. \nUser Interface supports line breaks and formatting tags."
-
FieldName: Details
Type: Text
Typical Values: User Defined
Comments: Content of Description field in Edit Person Fact pane
-
FieldName: Note
Type: Text
Typical Values: User Defined
Comments: "Content of Note in Edit Person Fact Pane. \nUser Interface supports line breaks and formatting tags."
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: ExclusionTable
Fields:
-
FieldName: RecID
Type: Integer
Key/Index: Primary Key
Typical Values: "1, 2, 3..."
Comments: Record Identification Number
-
FieldName: ExclusionType
Type: Integer
Key/Index: idxExclusionIndex
Typical Values: "1,2"
Comments: "Exclusion Type:\n1 = Person member of \"Not a duplicate list\", from Merge Duplicates tool,\n2 = Person member of \"Not a problem list\", from Problem List tool"
-
FieldName: ID1
Type: Integer
Key/Index: "Foreign Key,\nidxExclusionIndex"
Typical Values: "1, 2, 3..."
Comments: "Identification Number 1, based on ExclusionType:\n1 = PersonTable.PersonID of Person 1 from potential merge,\n2 = PersonTable.PersonID of person marked in \"Not a problem list\""
-
FieldName: ID2
Type: Integer
Key/Index: "Foreign Key,\nidxExclusionIndex"
Typical Values: Built in
Comments: "Identification Number 2, based on ExclusionType:\n1 = PersonTable.PersonID of Person 2 from potential merge, \n2 = Problem filter matched ("
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: FANTable
Fields:
-
FieldName: FanID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3,..."
Comments: "RecordID for Friends, Associations, Neighbours links in support of the Association fact type. "
-
FieldName: ID1
Type: Integer
Key/Index: "Foreign Key,\nidxFanId1"
Typical Values: "1,2,3,..."
Comments: Link to PersonTable.PersonID for node1 of association
-
FieldName: ID2
Type: Integer
Key/Index: "Foreign Key,\nidxFanId2"
Typical Values: "1,2,3,..."
Comments: Link to PersonTable.PersonID for node2 of association
-
FieldName: FanTypeID
Type: Integer
Key/Index: Foreign Key
Typical Values: "1,2,3,..."
Comments: Link to FANTypeTable.FanTypeID
-
FieldName: PlaceID
Type: Integer
Key/Index: Foreign Key
Typical Values: "0,1,2,3,..."
Comments: "0 = Place Blank,\nElse, link to PlaceTable.PlaceID for PlaceType=0"
-
FieldName: SiteID
Type: Integer
Key/Index: Foreign Key
Typical Values: "0,1,2,3,..."
Comments: "0 = Place Blank,\nElse, link to PlaceTable.PlaceID for PlaceType=2"
-
FieldName: Date
Type: Text
Typical Values: Position coded string or free text
Comments: "Date, from Associations. [See Date sheet for additional details.]"
-
FieldName: SortDate
Type: BigInT
Typical Values: 18 digits
Comments: Number representing a user entered date that forces an event into a position relative to other events in lists sorted on the Date field.
-
FieldName: Description
Type: Text
Typical Values: User Defined
Comments: "Description, from Association pane of Edit Person window. "
-
FieldName: Note
Type: Text
Typical Values: User Defined
Comments: "Note, from Association pane of Edit Person window. User Interface supports line breaks and formatting tags."
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: FANTypeTable
Fields:
-
FieldName: FANTypeID
Type: Integer
Key/Index: Primary Key
Typical Values: "1-15, 999"
Comments: " Association ID"
-
FieldName: Name
Type: Text Collate RMNOCASE
Key/Index: idxFANTypeName
Typical Values: "1-15, 999"
Comments: "Association Type, based on FANTypeID:\n1 = Friends\n2 = Neighbors \n3 = Employment \n4 = Education \n5 = Enslavement \n6 = Household \n7 = Classmates \n8 = Coworkers \n9 = Apprenticeship \n10 = Godparent \n11 = Relative \n12 = DNA Match \n13 = Medical \n14 = Grave neighbors \n15 = Rental \n999 = Associates"
-
FieldName: Role1
Type: Text
Typical Values: "1-15, 999"
Comments: "Role 1 and Role2 Names, based on FANTypeID:\n1 = Friend / Friend \n2 = Neighbor / Neighbor \n3 = Employer / Employee \n4 = Teacher / Student \n5 = Enslaver / Enslaved person \n6 = Household member / Household member \n7 = Classmate / Classmate \n8 = Coworker / Coworker \n9 = Master / Apprentice \n10 = Godparent / Godchild \n11 = Relative / Relative \n12 = DNA match / DNA match \n13 = Doctor / Patient \n14 = Burial / Burial \n15 = Landlord / Tenant \n999 = Associate / Associate"
-
FieldName: Role2
Type: Text
Typical Values: "1-15, 999"
Comments: Role2 name (see FANTableType.Role1 above)
-
FieldName: Sentence1
Type: Text
Typical Values: Sentence Template Language
Comments: Template for Role1
-
FieldName: Sentence2
Type: Text
Typical Values: Sentence Template Language
Comments: Template for Role2
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: FactTypeTable
Fields:
-
FieldName: FactTypeID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3..."
Comments: "Fact Type Identification Number:\nBuilt-in < 1000, \nUser-defined > = 1000"
-
FieldName: OwnerType
Type: Integer
Typical Values: "0,1"
Comments: "Owner Type:\n0 = Individual,\n1 = Family"
-
FieldName: Name
Type: Text Collate RMNOCASE
Key/Index: idxFactTypeName
Typical Values: "Built-in or\nUser Defined"
Comments: "Name, from Edit Fact Type window"
-
FieldName: Abbrev
Type: Text
Key/Index: idxFactTypeAbbrev
Typical Values: "Built-in or\nUser Defined"
Comments: "Abbreviation, from Edit Fact Type window"
-
FieldName: GedcomTag
Type: Text
Key/Index: idxFactType
Typical Values: Character string
Comments: "GEDCOM Tag = \"EVEN\" for some built-in and all user defined Fact Types "
-
FieldName: UseValue
Type: Integer
Typical Values: "0,1"
Comments: "\"Use description field\" checkbox, from Edit Fact Type window:\n0 = No (unchecked)\n1 = Yes (checked)"
-
FieldName: UseDate
Type: Integer
Typical Values: "0,1"
Comments: "\"Use date field\" checkbox, from Edit Fact Type window:\n0 = No (unchecked)\n1 = Yes (checked)"
-
FieldName: UsePlace
Type: Integer
Typical Values: "0,1"
Comments: "\"Use place field\" checkbox, from Edit Fact Type window:\n0 = No (unchecked)\n1 = Yes (checked)"
-
FieldName: Sentence
Type: Text
Typical Values: Sentence Template Language
Comments: "Sentence template for this role, from Edit Role Type window for Role name of Principal. User Interface supports line breaks and formatting tags."
-
FieldName: Flags
Type: Integer
Typical Values: -1 to -63
Comments: 6-bit position-coded number for Include settings for Fact Type.
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: FamilySearchTable
Fields:
-
FieldName: LinkID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3..."
Comments: LinkID Identification Number
-
FieldName: LinkType
Type: Integer
Typical Values: 0.0
Comments: 0 = Person
-
FieldName: rmID
Type: Integer
Key/Index: "Foreign Key,\nidxLinkRmId"
Typical Values: "1,2,3..."
Comments: "Link based on LinkType:\n0 = PersonTable.PersonID"
-
FieldName: fsID
Type: Text
Key/Index: idxLinkfsID
Typical Values: "1,2,3..."
Comments: FamilySearch ID from FamilySearch Family Tree connection
-
FieldName: Modified
Type: Integer
Typical Values: "0,1"
Comments: "0 = Default,\n1 = Mismatch exists between FamilySearch and RM record details (Event date, place, etc)\nNote: Modified flag resets to \"0\" after any data for this person is shared via the FS API, even if data mismatches still exist."
-
FieldName: fsVersion
Type: Text
Typical Values: "18 digit integer, \n40-45 char hexadecimal + '-GZIP'"
Comments: FamilySearch Version
-
FieldName: fsDate
Type: Float
Typical Values: 0.0
-
FieldName: Status
Type: Integer
Typical Values: "0,4"
Comments: "0 = Default, Person Record initially created in RM db\n4 = Person Record initially imported from FamilySearch"
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
FieldName: TreeID
Type: Text
Typical Values: Blank
Comments: Not Implemented
-
TableName: FamilyTable
Fields:
-
FieldName: FamilyID
Type: Integer
Key/Index: Primary Key
Typical Values: "1, 2, 3..."
Comments: Family Identification Number
-
FieldName: FatherID
Type: Integer
Key/Index: "Foreign Key,\nidxFamilyFatherID"
Typical Values: "1, 2, 3..."
Comments: Links to PersonID in the PersonTable
-
FieldName: MotherID
Type: Integer
Key/Index: "Foreign Key,\nidxFamilyMotherID"
Typical Values: "1, 2, 3..."
Comments: Links to PersonID in the PersonTable
-
FieldName: ChildID
Type: Integer
Key/Index: Foreign Key
Typical Values: "0, 1, 2,..."
Comments: "Links to PersonTable.PersonID of Child last active as the root person in Pedigree view,\n0 = No Children in family or no child displayed as root in Pedigree view."
-
FieldName: HusbOrder
Type: Integer
Typical Values: "0, 1, 2,..."
Comments: "Husband Order, from People View, Edit Menu, Rearrange Spouses:\n0 if never rearranged"
-
FieldName: WifeOrder
Type: Integer
Typical Values: "0, 1, 2,..."
Comments: "Wife Order, from People View, Edit Menu, Rearrange Spouses:\n0 if never rearranged"
-
FieldName: IsPrivate
Type: Integer
Typical Values: 0.0
Comments: Not Implemented
-
FieldName: Proof
Type: Integer
Typical Values: "0, 1, 2, 3"
Comments: "Proof, from Spouse Fact in Edit Person window:\n0 = [blank], \n1 = Proven, \n2 = Disproven, \n3 = Disputed"
-
FieldName: SpouseLabel
Type: Integer
Typical Values: 0.0
Comments: Not Implemented
-
FieldName: FatherLabel
Type: Integer
Typical Values: "0, 1, 2, 99"
Comments: "Father Label, from Spouse Fact in Edit Person window:\n0 = Father\n1 = Husband\n2 = Partner\n99 = Other"
-
FieldName: MotherLabel
Type: Integer
Typical Values: "0, 1, 2, 99"
Comments: "Mother Label, from Spouse Fact in Edit Person window:\n0 = Mother\n1 = Wife\n2 = Partner\n99 = Other"
-
FieldName: SpouseLabelStr
Type: Text
Comments: Not Implemented
-
FieldName: FatherLabelStr
Type: Text
Typical Values: User Defined
Comments: "Spouse Fact, from Edit Person window:\nUser defined text when FatherLabel=99"
-
FieldName: MotherLabelStr
Type: Text
Typical Values: User Defined
Comments: "Spouse Fact, from Edit Person window:\nUser defined text when MotherLabel=99"
-
FieldName: Note
Type: Text
Typical Values: User Defined
Comments: "Note for Spouse Fact, from Edit Person window:\nUser Interface supports line breaks and formatting tags."
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: GroupTable
Fields:
-
FieldName: RecID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3,..."
Comments: Record Identification Number
-
FieldName: GroupID
Type: Integer
Typical Values: "1,2, 1001,1002,1003,..."
Comments: "1 = Results of Person Search from Search menu,\n2 = Results of Person Search - Advanced from Search menu,\n>1000 = Group (Simple or Rules based)\nNote: a temporary group is created whenever the basic or advanced Person Search options are run from the Search Menu. The group is automatically deleted when the search results are cleared or a subsequent search is run."
-
FieldName: StartID
Type: Integer
Key/Index: Foreign Key
Typical Values: "1,2,3,..."
Comments: "Links to PersonTable.PersonID,\nStarting Number of consecutively-numbered PersonIDs"
-
FieldName: EndID
Type: Integer
Key/Index: Foreign Key
Typical Values: "1,2,3,..."
Comments: "Links to PersonTable.PersonID,\nEnding Number of consecutively-numbered PersonIDs"
-
FieldName: UTCModDate
Type: Float
Typical Values: "Null"
Comments: Not implemented
-
TableName: HealthTable
Fields:
-
FieldName: RecID
Type: Integer
Key/Index: Primary Key
Typical Values: "1,2,3,…"
Comments: Record Identification Number
-
FieldName: OwnerID
Type: Integer
Key/Index: "idxHealthOwnerId, \n Foreign Key"
Typical Values: "1,2,3,…"
Comments: Links to PersonID in the PersonTable
-
FieldName: Condition
Type: Integer
Typical Values: "1-20, 999"
Comments: "Condition, from the Health Condition view of the Edit Person window:\n1= Infectious and parasitic disease,\n2 = Respiratory diseases,\n3 = Reproductive health and childbirth,\n4 = Nutritional deficiency,\n5 = Cancer,\n6 = Endocrine, blood, and immune disorders,\n7 = Diabetes,\n8 = Mental health,\n9 = Neurological,\n10 = Eye condition,\n11 = Ear condition,\n12 = Cardiovascular,\n13 = Digestive diseases,\n14 = Renal and Urogenital,\n15 = Skin disease,\n16 = Musculoskeletal diseases,\n17 = Congenital anomalies,\n18 = Oral disease,\n19 = Sexual health,\n20 = Injuries and accidents,\n999 = Other"
-
FieldName: SubCondition
Type: Text
Typical Values: User Defined
Comments: "Details, from the Health Condition view of the Edit Person window."
-
FieldName: Date
Type: Float
Typical Values: Position coded string or free text
Comments: "[See Date sheet for additional details.]"
-
FieldName: Note
Type: Text
Typical Values: User Defined
Comments: "Health Note, from the Health Condition view of the Edit Person window.\nUser Interface supports line breaks and formatting tags"
-
FieldName: UTCModDate
Type: Float
Typical Values: "[d]{5}.[d]{10}\ne.g.: 44993.9143704283"
Comments: "Coordinated Universal Time from system, modified: \nSELECT julianday('now') - 2415018.5"
-
TableName: MediaLinkTable
Fields:
-
FieldName: LinkID
Type: Integer