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