action bridgedb_get_organism_xrefs_system_code_identifier { label: "get_organism_xrefs_systemCode_identifier" description: "Returns a list of xrefs that map to a given identifier, data source, and organism." provider: bridgedb method: GET path: "/{organism}/xrefs/{systemCode}/{identifier}" encoding: json input: { type: "object" properties: { dataSource: { type: "string" } identifier: { type: "string" } organism: { type: "string" } systemCode: { type: "string" } } required: ["identifier", "organism", "systemCode"] additionalProperties: false } output: { type: "object" additionalProperties: true } }