action ideaconsult_search_by_identifier { label: "Exact chemical structure search" description: "Returns compounds found" provider: ideaconsult method: GET path: "/enm/{db}/query/compound/{term}/{representation}" encoding: json input: { type: "object" properties: { b64search: { type: "string" } bundle_uri: { type: "string" } casesens: { type: "boolean" } page: { type: "integer" } pagesize: { type: "integer" } representation: { type: "string" enum: ["all", "smiles", "reach", "stdinchi", "stdinchikey", "names", "iupac_name", "synonym", "cas", "einecs"] } sameas: { type: "string" } search: { type: "string" } term: { type: "string" enum: ["search", "url", "inchikey"] } } required: ["representation", "term"] additionalProperties: false } output: { type: "object" properties: { dataEntry: { type: "object" } feature: { type: "object" } model_uri: { type: "string" } query: { type: "object" } } } }