action drchrono_lab_tests_read { label: "lab_tests_read" description: "Retrieve an existing lab test" provider: drchrono method: GET path: "/api/lab_tests/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } order: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["lab_order"] properties: { code: { type: "string" } collection_date: { type: "string" description: "The date the specimen were collected" } description: { type: "string" description: "Short description of the ICD-10 code" } id: { type: "integer" } internal_notes: { type: "string" description: "Notes which are meant for, and read by, the labs" } lab_order: { type: "integer" description: "ID of associated lab order" } name: { type: "string" description: "Name for the test" } report_notes: { type: "string" description: "Notes which are not meant for labs, but are copied on the results." } specimen_condition: { type: "string" } specimen_source: { type: "string" } specimen_total_volume: { type: "number" } status: { type: "string" description: "One of `\"preliminary\"`, `\"pending\"`, `\"correction\"`, `\"final\"` or `\"canceled\"`. Defaults to `\"preliminary\"`" enum: ["P", "I", "C", "F", "X"] } } } }