action infermedica_get_symptom { label: "Get symptoms by id" description: "Returns details of a single symptom specified by id parameter." provider: infermedica method: GET path: "/symptoms/{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 } }