FacilityDepartment

A department or unit within a healthcare facility. Organizes clinical and administrative areas with location, contact information, and operational status.

Overview

FacilityDepartment represents organizational units within a Facility - cardiology departments, emergency departments, laboratories, pharmacies, and administrative offices. Each department has a type (from HealthReferenceDepartmentType), physical location within the facility, contact information, and operational status. Practitioners are assigned to departments through PractitionerFacilityAffiliation.

Key Concepts

Department Structure

Each department record contains:

FieldPurposeExample
facilityParent facilityCity General Hospital
typeDepartment categoryCardiology (medical)
nameDepartment nameCardiology Unit A
locationPhysical locationBuilding A, Floor 3
contactPointPhone/email+1-555-0300
statusOperational stateactive

Department Types

Departments are classified via HealthReferenceDepartmentType:

CategoryExamples
MedicalCardiology, Neurology, Pediatrics, ICU
SurgicalGeneral Surgery, Orthopedics
DiagnosticLaboratory, Radiology, Pathology
EmergencyEmergency Department, Trauma
AdministrativeAdmissions, Billing, Medical Records
SupportPharmacy, Nutrition, Physical Therapy

Multiple Departments

A facility may have multiple departments of the same type:

  • Cardiology Unit A, Cardiology Unit B
  • ICU, Cardiac ICU, Neuro ICU
  • Emergency Department, Pediatric Emergency

Location Information

The location field describes where to find the department:

  • Building identifier
  • Floor number
  • Wing or section
  • Room numbers

Department Contact

Each department can have its own contact point:

  • Direct phone line
  • Department email
  • Extension numbers

Use Cases

Patient Wayfinding

When directing patients:

  1. Look up department by name or type
  2. Display physical location
  3. Provide contact information
  4. Show operating hours if applicable

Staff Assignment

When assigning practitioners:

  1. Create affiliation linking practitioner to department
  2. Specify role at department
  3. Track primary vs secondary assignments
  4. Support cross-department coverage

Encounter Documentation

When recording patient visits:

  1. Link encounter to admitting department
  2. Track department transfers
  3. Document department-specific care
  4. Route to appropriate staff

Department Management

For operational oversight:

  1. Track active departments
  2. Monitor department status changes
  3. Manage department contact info
  4. Coordinate across departments

Resource Planning

For capacity management:

  1. Track resources by department
  2. Monitor department utilization
  3. Plan staffing by department
  4. Allocate equipment and space

Related Entities

EntityRelationshipDescription
FacilityBelongs toParent healthcare facility
HealthReferenceDepartmentTypeReferencesType classification of the department
ContactPointContainsDepartment contact information
PractitionerFacilityAffiliationReferenced byPractitioners assigned to this department
EncounterReferenced byPatient encounters in this department

Enums

status

ValueDescription
activeDepartment is operational and providing services
inactiveDepartment is temporarily not operational
suspendedDepartment operations suspended
6 properties
Schema

Properties

PropertyTypeModeDescriptionRequired
facilityFacility
stored

Facility this department belongs to

Required
typeHealthReferenceDepartmentType
stored

Type of department

Required
namestring
stored

Name of the department

Example: "Cardiology Unit A"

Required
locationstring
stored

Physical location within the facility

Example: "Building A, Floor 3"

Optional
contactPointContactPoint
stored

Contact information for the department

Optional
statusstring
stored

Operational status of the department

Values: active, inactive, suspended

Example: "active"

Required

Examples

Example 1

{
  "@type": "FacilityDepartment",
  "facility": {
    "@type": "Facility",
    "name": "City General Hospital"
  },
  "type": {
    "@type": "HealthReferenceDepartmentType",
    "code": "CARDIO",
    "label": "Cardiology",
    "category": "medical"
  },
  "name": "Cardiology Department",
  "location": "Building A, Floor 3",
  "contactPoint": {
    "@type": "ContactPoint",
    "system": "phone",
    "value": "+1-555-0300",
    "use": "work"
  },
  "status": "active"
}

Example 2

{
  "@type": "FacilityDepartment",
  "facility": {
    "@type": "Facility",
    "name": "City General Hospital"
  },
  "type": {
    "@type": "HealthReferenceDepartmentType",
    "code": "ER",
    "label": "Emergency",
    "category": "emergency"
  },
  "name": "Emergency Department",
  "location": "Building B, Ground Floor",
  "status": "active"
}

Example 3

{
  "@type": "FacilityDepartment",
  "facility": {
    "@type": "Facility",
    "name": "Children's Medical Center"
  },
  "type": {
    "@type": "HealthReferenceDepartmentType",
    "code": "PEDS",
    "label": "Pediatrics",
    "category": "medical"
  },
  "name": "Pediatric Ward",
  "location": "Main Building, Floor 2",
  "status": "active"
}