drchrono · Schema

WorkSchedule

EHRElectronic Health RecordsHealthcareMedical RecordsPractice ManagementHIPAAAppointmentsBillingPrescriptionsLab IntegrationFHIR

Properties

Name Type Description
work_days array work days of the work schedule
id integer unique ID for the work schedule
office integer ID of office for work schedule
doctor integer ID of doctor for work schedule
View JSON Schema on GitHub

JSON Schema

workschedule.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/drchrono/json-schema/workschedule.json",
  "title": "WorkSchedule",
  "type": "object",
  "properties": {
    "work_days": {
      "items": {
        "$ref": "#/components/schemas/WorkDay"
      },
      "type": "array",
      "description": "work days of the work schedule",
      "title": "Work days"
    },
    "id": {
      "readOnly": true,
      "type": "integer",
      "description": "unique ID for the work schedule",
      "title": "ID"
    },
    "office": {
      "type": "integer",
      "description": "ID of office for work schedule",
      "title": "Office"
    },
    "doctor": {
      "type": "integer",
      "description": "ID of doctor for work schedule",
      "title": "Office"
    }
  }
}