action mcw_get_gene_by_symbol_using_get { label: "Get a gene record by symbol and species type key" provider: mcw method: GET path: "/genes/{symbol}/{speciesTypeKey}" encoding: json input: { type: "object" properties: { speciesTypeKey: { type: "integer" format: "int32" } symbol: { type: "string" } } required: ["speciesTypeKey", "symbol"] additionalProperties: false } output: { type: "object" additionalProperties: true } }