action bridgedb_get_organism_attribute_search_query { label: "get_organism_attributeSearch_query" description: "Returns a list of xrefs and associated attributes 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, or by the type of attribute. See possible attribute types via /{organism}/attributeSet.\n" provider: bridgedb method: GET path: "/{organism}/attributeSearch/{query}" encoding: json input: { type: "object" properties: { attrName: { type: "string" } limit: { type: "string" } organism: { type: "string" } query: { type: "string" } } required: ["organism", "query"] additionalProperties: false } output: { type: "object" additionalProperties: true } }