action drchrono_sublabs_read { label: "sublabs_read" description: "Retrieve an existing sub vendor" provider: drchrono method: GET path: "/api/sublabs/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" description: "A unique integer value identifying this lab vendor location." } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["facility_code", "name"] 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" } } } }