action mcw_get_annotation_count_by_acc_id_and_species_using_get { label: "Returns annotation count for ontology accession ID and speicies" provider: mcw method: GET path: "/annotations/count/{accId}/{speciesTypeKey}/{includeChildren}" encoding: json input: { type: "object" properties: { accId: { type: "string" } includeChildren: { type: "boolean" } speciesTypeKey: { type: "integer" format: "int32" } } required: ["accId", "includeChildren", "speciesTypeKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }