action drchrono_lab_documents_read { label: "lab_documents_read" description: "Retrieve an existing lab order document" provider: drchrono method: GET path: "/api/lab_documents/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } since: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["document", "lab_order", "type"] properties: { document: { type: "string" } id: { type: "integer" } lab_order: { type: "integer" description: "ID of the order this document is associated with" } timestamp: { type: "string" description: "Time at which the document was uploaded" } type: { type: "string" description: "\nValue | Notes\n----- | -----\n`\"REQ\"` | requisition form |\n`\"ABN\"` | `ABN (Advance Beneficiary Notice)` |\n`\"R-A\"` | requisition form and :abbr:`ABN (Advance Beneficiary Notice)` |\n`\"RES\"` | lab results |\n" enum: ["REQ", "ABN", "R-A", "RES"] } } } }