drchrono · Schema

WorkHours

EHRElectronic Health RecordsHealthcareMedical RecordsPractice ManagementHIPAAAppointmentsBillingPrescriptionsLab IntegrationFHIR

Properties

Name Type Description
start_time string start time of the work hour
enabled boolean whether the work hour is enabled
id integer unique ID of the work hour
end_time string end time of the work hour
View JSON Schema on GitHub

JSON Schema

workhours.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/drchrono/json-schema/workhours.json",
  "title": "WorkHours",
  "type": "object",
  "properties": {
    "start_time": {
      "type": "string",
      "description": "start time of the work hour",
      "title": "Start time"
    },
    "enabled": {
      "type": "boolean",
      "description": "whether the work hour is enabled",
      "title": "Enabled"
    },
    "id": {
      "readOnly": true,
      "type": "integer",
      "description": "unique ID of the work hour",
      "title": "ID"
    },
    "end_time": {
      "type": "string",
      "description": "end time of the work hour",
      "title": "End time"
    }
  }
}