action infermedica_get_matching_observation { label: "Find observation matching given phrase" description: "Returns a single observation matching given phrase." provider: infermedica method: GET path: "/lookup" encoding: json input: { type: "object" properties: { "age.unit": { type: "string" } "age.value": { type: "string" } phrase: { type: "string" } sex: { type: "string" } } required: ["phrase"] additionalProperties: false } output: { type: "object" additionalProperties: true } }