action drchrono_sublabs_list { label: "sublabs_list" description: "Retrieve or search sub vendors" provider: drchrono method: GET path: "/api/sublabs" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "The pagination cursor value." } page_size: { type: "integer" description: "Number of results to return per page." } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { type: "object" required: ["name", "facility_code"] properties: { facility_code: { type: "string" description: "Used for identifying the lab in orders and results" } id: { type: "integer" } name: { type: "string" } vendor_name: { type: "string" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }