drchrono · Schema

LabVendorLocation

EHRElectronic Health RecordsHealthcareMedical RecordsPractice ManagementHIPAAAppointmentsBillingPrescriptionsLab IntegrationFHIR

Properties

Name Type Description
vendor_name string
facility_code string Used for identifying the lab in orders and results
id integer
name string
View JSON Schema on GitHub

JSON Schema

labvendorlocation.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/drchrono/json-schema/labvendorlocation.json",
  "title": "LabVendorLocation",
  "required": [
    "name",
    "facility_code"
  ],
  "type": "object",
  "properties": {
    "vendor_name": {
      "readOnly": true,
      "type": "string",
      "description": "",
      "title": "Vendor name"
    },
    "facility_code": {
      "type": "string",
      "description": "Used for identifying the lab in orders and results",
      "title": "Facility code"
    },
    "id": {
      "readOnly": true,
      "type": "integer",
      "description": "",
      "title": "ID"
    },
    "name": {
      "type": "string",
      "description": "",
      "title": "Name"
    }
  },
  "x-verbose-required": []
}