PractitionerQualification

A professional qualification, certification, or credential held by a practitioner. Records educational degrees, board certifications, fellowships, and training completions.

Overview

PractitionerQualification links a practitioner to their earned credentials. Each qualification record captures the credential type, issuing institution, date awarded, and expiration (if applicable). Unlike licenses which are jurisdiction-specific legal authorizations, qualifications demonstrate competency and education that may be recognized more broadly.

Key Concepts

Qualification Components

Each qualification record contains:

FieldPurposeExample
typeType of qualificationDoctor of Medicine (MD)
issuingOrganizationInstitution that awardedHarvard Medical School
identifierCredential ID if applicableFACC-12345
issueDateWhen credential was awarded2005-06-15
expirationDateWhen renewal needed2025-01-15

Permanent vs Renewable

Permanent Qualifications (no expiration):

  • Academic degrees (MD, DO, BSN)
  • Fellowship designations (FACC, FACS)
  • Residency completions

Renewable Qualifications (require recertification):

  • BLS/ACLS certifications (typically 2 years)
  • Board certifications (typically 10 years)
  • Specialized training certificates

Issuing Organizations

Different qualifications come from different sources:

TypeIssuing Organization
DegreesMedical schools, universities
Board certsABIM, ABMS, specialty boards
FellowshipsProfessional colleges (ACC, ACS)
BLS/ACLSAHA, Red Cross
ResidenciesTeaching hospitals

Calculated Field

isActive - Computed boolean:

  • Always true for credentials without expiration
  • True if current date is before expirationDate
  • False if credential has expired

Use Cases

Credential Tracking

When managing practitioner credentials:

  1. Create qualification for each credential
  2. Link to issuing organization
  3. Set expiration for renewable certs
  4. Track in practitioner's profile

Expiration Monitoring

For credential management:

  1. Query qualifications with upcoming expirations
  2. Alert practitioners of renewal requirements
  3. Track recertification progress
  4. Update expiration dates when renewed

Privileging Decisions

When granting clinical privileges:

  1. Verify required degrees (MD, DO)
  2. Check board certification status
  3. Confirm fellowship for subspecialties
  4. Document qualification basis

Provider Display

For patient-facing directories:

  1. Show practitioner degrees after name
  2. List board certifications
  3. Display fellowship credentials
  4. Build patient confidence

Onboarding Verification

When hiring practitioners:

  1. Collect credential documentation
  2. Primary source verify with issuers
  3. Create qualification records
  4. Flag any discrepancies

Related Entities

EntityRelationshipDescription
PractitionerBelongs toThe practitioner holding this qualification
PractitionerQualificationTypeReferencesType of qualification
IdentifierContainsCredential identifier if applicable
OrganizationReferencesInstitution that issued the qualification

Calculated Fields

FieldTypeDescription
isActivebooleanTrue if qualification has not expired (or has no expiration)
7 properties
Schema

Properties

PropertyTypeModeDescriptionRequired
practitionerPractitioner
stored

Practitioner holding this qualification

Required
typePractitionerQualificationType
stored

Type of qualification or credential

Required
identifierIdentifier
stored

Credential identifier if applicable

Optional
issuingOrganizationOrganization
stored

Institution that issued the qualification

Required
issueDateDate
stored

Date the qualification was awarded

Example: "2005-06-15"

Optional
expirationDateDate
stored

Expiration date if the qualification requires renewal

Optional
isActiveboolean
calculated

Whether the qualification is currently valid

Optional

Examples

Example 1

{
  "@type": "PractitionerQualification",
  "practitioner": {
    "@type": "Practitioner",
    "givenName": "Michael",
    "familyName": "Chen"
  },
  "type": {
    "@type": "PractitionerQualificationType",
    "code": "MD",
    "label": "Doctor of Medicine",
    "category": "degree"
  },
  "issuingOrganization": {
    "@type": "Organization",
    "name": "Harvard Medical School"
  },
  "issueDate": "2005-06-15"
}

Example 2

{
  "@type": "PractitionerQualification",
  "practitioner": {
    "@type": "Practitioner",
    "givenName": "Michael",
    "familyName": "Chen"
  },
  "type": {
    "@type": "PractitionerQualificationType",
    "code": "FACC",
    "label": "Fellow of the American College of Cardiology",
    "category": "fellowship"
  },
  "identifier": {
    "@type": "Identifier",
    "system": "ACC",
    "value": "FACC-12345",
    "type": "credential"
  },
  "issuingOrganization": {
    "@type": "Organization",
    "name": "American College of Cardiology"
  },
  "issueDate": "2015-03-20"
}

Example 3

{
  "@type": "PractitionerQualification",
  "practitioner": {
    "@type": "Practitioner",
    "givenName": "Emily",
    "familyName": "Davis"
  },
  "type": {
    "@type": "PractitionerQualificationType",
    "code": "BLS",
    "label": "Basic Life Support",
    "category": "certification"
  },
  "issuingOrganization": {
    "@type": "Organization",
    "name": "American Heart Association"
  },
  "issueDate": "2023-01-15",
  "expirationDate": "2025-01-15"
}