action bridgedb_get_organism_attributes_system_code_identifier { label: "get_organism_attributes_systemCode_identifier" description: "Returns the attributes for a given identifier, data source, organism. Optionally display only a specified attribute" provider: bridgedb method: GET path: "/{organism}/attributes/{systemCode}/{identifier}" encoding: json input: { type: "object" properties: { attrName: { type: "string" } identifier: { type: "string" } organism: { type: "string" } systemCode: { type: "string" } } required: ["identifier", "organism", "systemCode"] additionalProperties: false } output: { type: "object" additionalProperties: true } }