action mcw_get_annotations_by_rgd_id_and_ontology_using_get { label: "Returns a list of annotations by RGD ID and ontology prefix" provider: mcw method: GET path: "/annotations/rgdId/{rgdId}/{ontologyPrefix}" encoding: json input: { type: "object" properties: { ontologyPrefix: { type: "string" } rgdId: { type: "integer" format: "int32" } } required: ["ontologyPrefix", "rgdId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }