action infermedica_get_condition { label: "Get condition by id" description: "Returns details of a single condition specified by id parameter." provider: infermedica method: GET path: "/conditions/{id}" encoding: json input: { type: "object" properties: { "age.unit": { type: "string" } "age.value": { type: "string" } enable_triage_5: { type: "string" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }