action opentargets_get_evidence_filter { label: "Filter available evidence" description: "The filter method allows to retrieve the specific data that supports a connection between targets and diseases.\nFilters can be used to restrict the results by source and type of data,\nor limit results to targets which are part of a particular pathway.\nMinimum and maximum scores can be specified as well as the type of evidence linking target and disease.\n**Note** that multiple genes and diseases can be specified in the same request.\n" provider: opentargets method: GET path: "/platform/public/evidence/filter" encoding: json input: { type: "object" properties: { "data source": { type: "string" } datastructure: { type: "string" } datatype: { type: "string" } disease: { type: "string" } fields: { type: "string" } format: { type: "string" } from: { type: "number" format: "integer" } pathway: { type: "string" } scorevalue_max: { type: "number" format: "float" } scorevalue_min: { type: "number" format: "float" } size: { type: "number" format: "integer" } sort: { type: "string" } target: { type: "string" } uniprotkw: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }