action mcw_get_genes_by_alias_symbol_using_get { label: "Return a list of genes for an alias and species" provider: mcw method: GET path: "/genes/alias/{aliasSymbol}/{speciesTypeKey}" encoding: json input: { type: "object" properties: { aliasSymbol: { type: "string" } speciesTypeKey: { type: "integer" format: "int32" } } required: ["aliasSymbol", "speciesTypeKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }