action drchrono_patient_lab_results_read { label: "patient_lab_results_read" provider: drchrono method: GET path: "/api/patient_lab_results/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } ordering_doctor: { type: "integer" } patient: { type: "integer" } since: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["ordering_doctor", "patient"] properties: { created_at: { type: "string" } date_test_performed: { type: "string" description: "Date of lab test." } doctor_comments: { type: "string" description: "Comment from the doctor on lab result." } doctor_signoff: { type: "boolean" description: "Check this box when the doctor has reviewed the lab result and taken appropriate action." } id: { type: "integer" } lab_abnormal_flag: { type: "string" description: "HL7 codified abnormal flag for the result." enum: ["", "L", "H", "LL", "HH", "<", ">", "N", "A", "AA", "null", "U", "D", "B", "W", "S", "R", "I", "MS", "VS"] } lab_imported_from_ccr: { type: "string" description: "Imported CCR document that contains lab results." } lab_normal_range: { type: "string" } lab_normal_range_units: { type: "string" } lab_order_status: { type: "string" description: "Status of the lab order." enum: ["", "Order Entered", "Discontinued", "In Progress", "Results Received", "Results Reviewed with Patient", "Paper Order"] } lab_result_value: { type: "string" } lab_result_value_as_float: { type: "number" } lab_result_value_units: { type: "string" } loinc_code: { type: "string" } ordering_doctor: { type: "integer" } patient: { type: "integer" } scanned_in_result: { type: "string" description: "Scanned in PDF for this lab result (optional)." } title: { type: "string" } updated_at: { type: "string" } } } }