action bridgedb_get_organism_search_query { label: "get_organism_search_query" description: "Returns a list of xrefs with identifiers that contain the query string for a given organism. Results are not restricted to exact matches. Optionally limit results to a specified number per data source." provider: bridgedb method: GET path: "/{organism}/search/{query}" encoding: json input: { type: "object" properties: { limit: { type: "string" } organism: { type: "string" } query: { type: "string" } } required: ["organism", "query"] additionalProperties: false } output: { type: "object" additionalProperties: true } }