action monarchinitiative_get_associations_between { label: "Returns associations connecting two entities" description: "Given two entities (e.g. a particular gene and a particular disease), if these two entities\nare connected (directly or indirectly), then return the association objects describing\nthe connection." provider: monarchinitiative method: GET path: "/association/between/{subject}/{object}" encoding: json input: { type: "object" properties: { evidence: { type: "string" } exclude_automatic_assertions: { type: "boolean" } rows: { type: "integer" } start: { type: "integer" } unselect_evidence: { type: "boolean" } use_compact_associations: { type: "boolean" } } additionalProperties: false } output: { type: "array" items: { type: "object" } } }