action mcw_get_genes_by_position_using_get { label: "Return a list of genes position and map key" provider: mcw method: GET path: "/genes/{chr}/{start}/{stop}/{mapKey}" encoding: json input: { type: "object" properties: { chr: { type: "string" } mapKey: { type: "integer" format: "int32" } start: { type: "integer" format: "int64" } stop: { type: "integer" format: "int64" } } required: ["chr", "mapKey", "start", "stop"] additionalProperties: false } output: { type: "object" additionalProperties: true } }