PractitionerQualificationType

Reference data entity for types of professional qualifications and credentials. Defines educational degrees, board certifications, fellowships, and training credentials.

Overview

PractitionerQualificationType catalogs the credentials that demonstrate a practitioner's education, training, and competency. Unlike licenses (which are legal authorizations to practice), qualifications represent achievements that indicate expertise. This reference data is used by PractitionerQualification to specify what credentials a practitioner has earned.

Key Concepts

Qualification Categories

Qualifications are grouped by type:

CategoryDescriptionExamples
degreeAcademic degreesMD, DO, MBBS, BSN, PharmD
certificationBoard and professional certsABIM, BLS, ACLS, board certified
fellowshipFellowship credentialsFACC, FACS, FRCS
residencyResidency completionInternal Medicine Residency
trainingSpecialized trainingTrauma training, subspecialty

Standard Qualification Types

Academic Degrees

  • MD - Doctor of Medicine
  • DO - Doctor of Osteopathic Medicine
  • MBBS - Bachelor of Medicine, Bachelor of Surgery
  • BSN - Bachelor of Science in Nursing
  • PharmD - Doctor of Pharmacy

Board Certifications

  • BOARD_IM - Board Certified Internal Medicine
  • BOARD_CARD - Board Certified Cardiology
  • BLS - Basic Life Support
  • ACLS - Advanced Cardiovascular Life Support
  • PALS - Pediatric Advanced Life Support

Fellowships

  • FACC - Fellow, American College of Cardiology
  • FACS - Fellow, American College of Surgeons
  • FRCS - Fellow, Royal College of Surgeons

License vs Qualification

ConceptPurposeRequirement
LicenseLegal right to practiceMandatory
QualificationProof of competencyOften required for roles

A license is government-granted permission; a qualification is earned achievement.

Qualification Identification

Each qualification type contains:

  • code - Unique qualification code
  • label - Human-readable name
  • category - Type of qualification
  • description - Details about the credential

Use Cases

Credentialing

When verifying practitioner credentials:

  1. Identify required qualifications for position
  2. Collect documentation from practitioner
  3. Verify with issuing institution/board
  4. Track in practitioner record
  5. Monitor expiration for renewable certs

Privileging

When granting clinical privileges:

  1. Map qualifications to privilege levels
  2. Require specific qualifications for procedures
  3. Verify fellowship for subspecialty privileges
  4. Document qualification basis for privileges

Provider Profile

For provider directories:

  1. Display practitioner degrees (MD, DO)
  2. Show board certifications
  3. Highlight fellowship credentials
  4. Build patient confidence with qualifications

Hiring Requirements

When recruiting:

  1. Define required qualifications for role
  2. Filter candidates by qualifications
  3. Verify claimed credentials
  4. Document for personnel file

Continuing Education

For credential maintenance:

  1. Track certifications requiring renewal
  2. Monitor CME requirements for board certs
  3. Alert practitioners of upcoming expirations
  4. Document recertification

Related Entities

EntityRelationshipDescription
PractitionerQualificationReferenced byActual qualifications using this type
PractitionerLicenseTypeRelatedLicense types (separate from qualifications)

Enums

category

ValueDescription
degreeAcademic degrees from educational institutions (MD, DO, BSN, PharmD)
certificationProfessional certifications from boards and organizations (BLS, ACLS, board certs)
fellowshipFellowship credentials from professional colleges (FACC, FACS, FRCS)
residencyCompletion of residency training programs
trainingSpecialized training programs and courses
otherOther qualifications not fitting above categories
4 properties
Schema

Properties

PropertyTypeModeDescriptionRequired
codestring
stored

Unique code identifying the qualification type

Example: "MD"

Required
labelstring
stored

Human-readable name of the qualification

Example: "Doctor of Medicine"

Required
categorystring
stored

Category of qualification

Values: degree, certification, fellowship, residency, training, other

Example: "degree"

Required
descriptionstring
stored

Additional details about the qualification

Optional

Examples

Example 1

{
  "@type": "PractitionerQualificationType",
  "code": "MD",
  "label": "Doctor of Medicine",
  "category": "degree",
  "description": "Medical doctoral degree"
}

Example 2

{
  "@type": "PractitionerQualificationType",
  "code": "DO",
  "label": "Doctor of Osteopathic Medicine",
  "category": "degree",
  "description": "Osteopathic medical degree"
}

Example 3

{
  "@type": "PractitionerQualificationType",
  "code": "MBBS",
  "label": "Bachelor of Medicine, Bachelor of Surgery",
  "category": "degree",
  "description": "Medical degree common in UK and Commonwealth"
}

Example 4

{
  "@type": "PractitionerQualificationType",
  "code": "BSN",
  "label": "Bachelor of Science in Nursing",
  "category": "degree",
  "description": "Undergraduate nursing degree"
}

Example 5

{
  "@type": "PractitionerQualificationType",
  "code": "FACC",
  "label": "Fellow of the American College of Cardiology",
  "category": "fellowship",
  "description": "Cardiology fellowship credential"
}

Example 6

{
  "@type": "PractitionerQualificationType",
  "code": "FACS",
  "label": "Fellow of the American College of Surgeons",
  "category": "fellowship",
  "description": "Surgical fellowship credential"
}

Example 7

{
  "@type": "PractitionerQualificationType",
  "code": "BLS",
  "label": "Basic Life Support",
  "category": "certification",
  "description": "CPR and basic emergency care certification"
}

Example 8

{
  "@type": "PractitionerQualificationType",
  "code": "ACLS",
  "label": "Advanced Cardiovascular Life Support",
  "category": "certification",
  "description": "Advanced cardiac emergency certification"
}

Example 9

{
  "@type": "PractitionerQualificationType",
  "code": "BOARD_IM",
  "label": "Board Certified - Internal Medicine",
  "category": "certification",
  "description": "Board certification in internal medicine"
}