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