action mcw_get_chart_info_using_get { label: "Return a list of quantitative phenotypes values based on a combination of Clinical Measurement, Experimental Condition, Rat Strain, and/or Measurement Method ontology terms. Results will be all records that match all terms submitted. Ontology ids should be submitted as a comma delimited list (ex. RS:0000029,CMO:0000155,CMO:0000139). Species type is an integer value (3=rat, 4=chinchilla). Reference RGD ID for a study works like a filter." provider: mcw method: GET path: "/phenotype/phenominer/chart/{speciesTypeKey}/{refRgdId}/{termString}" encoding: json input: { type: "object" properties: { refRgdId: { type: "integer" format: "int32" } speciesTypeKey: { type: "integer" format: "int32" } termString: { type: "string" } } required: ["refRgdId", "speciesTypeKey", "termString"] additionalProperties: false } output: { type: "object" additionalProperties: true } }