action infermedica_get_matching_observations { label: "Find observations matching given phrase" description: "Returns list of observations matching the given phrase." provider: infermedica method: GET path: "/search" encoding: json input: { type: "object" properties: { "age.unit": { type: "string" } "age.value": { type: "string" } max_results: { type: "string" } phrase: { type: "string" } sex: { type: "string" } type: { type: "string" } } required: ["phrase"] additionalProperties: false } output: { type: "object" additionalProperties: true } }