get-ancestors
Retrieve ancestral lineage for a specific person by providing their ID and specifying the number of generations to explore, up to a maximum of 8.
Instructions
Get ancestors of a specific person
Input Schema
Name | Required | Description | Default |
---|---|---|---|
generations | No | Number of generations (default: 4, max: 8) | |
personId | Yes | Person ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"generations": {
"description": "Number of generations (default: 4, max: 8)",
"type": "number"
},
"personId": {
"description": "Person ID",
"type": "string"
}
},
"required": [
"personId"
],
"type": "object"
}