action monarchinitiative_get_pedigree { label: "Returns list of matches" provider: monarchinitiative method: GET path: "/individual/pedigree/{id}" encoding: json output: { type: "array" items: { type: "object" required: ["id", "object", "relation", "subject"] properties: { evidence_graph: { description: "An indirect association is a join between two or more direct assocations, e.g. gene to disease via ortholog. We record the full set of associations as a graph object" type: "object" } evidence_types: { type: "array" description: "Evidence types (ECO classes)" items: { type: "object" properties: { id: { type: "string" description: "ID or CURIE e.g. MGI:1201606" } label: { type: "string" description: "RDFS Label" } } } } id: { type: "string" description: "Association/annotation unique ID" } negated: { type: "boolean" description: "True if association is negated" } object: { description: "Object (sensu RDF), aka target, e.g. HP:0000448, MP:0002109, DOID:14330" type: "object" } object_eq: { type: "array" description: "Equivalent identifiers to object node" items: { type: "string" } } object_extensions: { type: "array" items: { description: "Additional properties of the object in the context of this association. See http://www.biomedcentral.com/1471-2105/15/155" type: "object" } } provided_by: { type: "array" description: "Provider of association, e.g. Orphanet, ClinVar" items: { type: "string" } } publications: { type: "array" description: "Publications supporting association, extracted from evidence graph" items: { type: "object" properties: { id: { type: "string" description: "ID or CURIE e.g. MGI:1201606" } label: { type: "string" description: "RDFS Label" } } } } qualifiers: { type: "array" description: "Qualifier on the association" items: { type: "string" } } relation: { description: "Relationship type connecting subject and object" type: "object" } slim: { type: "array" description: "Objects mapped to a slim" items: { type: "string" } } subject: { description: "Subject of association (what it is about), e.g. ClinVar:nnn, MGI:1201606" type: "object" } subject_eq: { type: "array" description: "Equivalent identifiers to subject node" items: { type: "string" } } subject_extensions: { type: "array" items: { description: "Additional properties of the subject in the context of this association." type: "object" } } type: { type: "string" description: "Type of association, e.g. gene-phenotype" } } } } }