action drchrono_lab_documents_list { label: "lab_documents_list" description: "Retrieve or search lab order documents" provider: drchrono method: GET path: "/api/lab_documents" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "The pagination cursor value." } doctor: { type: "integer" } page_size: { type: "integer" description: "Number of results to return per page." } since: { type: "string" } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { type: "object" required: ["lab_order", "document", "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"] } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }