action ideaconsult_search_by_similarity { label: "Exact similarity search" description: "Returns similar compounds" provider: ideaconsult method: GET path: "/enm/{db}/query/similarity" encoding: json input: { type: "object" properties: { b64search: { type: "string" } bundle_uri: { type: "string" } dataset_uri: { type: "string" } filterBySubstance: { type: "boolean" } mol: { type: "boolean" } page: { type: "integer" } pagesize: { type: "integer" } sameas: { type: "string" } search: { type: "string" } threshold: { type: "number" } type: { type: "string" enum: ["smiles", "mol", "url"] } } additionalProperties: false } output: { type: "object" properties: { dataEntry: { type: "object" } feature: { type: "object" } model_uri: { type: "string" } query: { type: "object" } } } }