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