From the Family Trees dashboard, choose Import Tree and upload a .json file. The file must be under 5 MB and use the Family Chart format: a top-level array of people, where each person has an id, a data object, and a rels object.
In plain English, a JSON file is a structured text file that apps use to pass information around. For Hmong Family Tree, it is just a file that lists people and how they are connected, so the app can rebuild the tree without you typing every person by hand.
[
{
"id": "father",
"data": {
"gender": "M",
"first name": "Chue",
"last name": "Yang",
"birth year": 1962
},
"rels": {
"parents": [],
"spouses": ["mother"],
"children": ["daughter"]
}
},
{
"id": "mother",
"data": {
"gender": "F",
"first name": "Mai",
"last name": "Yang",
"birth year": 1965
},
"rels": {
"parents": [],
"spouses": ["father"],
"children": ["daughter"]
}
},
{
"id": "daughter",
"data": {
"gender": "F",
"first name": "Nia",
"last name": "Yang",
"birth year": 1992
},
"rels": {
"parents": ["father", "mother"],
"spouses": [],
"children": []
}
}
]