ESMD FHIR Implementation Guide
1.0.0 - esmd

ESMD FHIR Implementation Guide - Local Development build (v1.0.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

Value Set

esMD ValueSets

This page provides an overview of the ValueSet resources used in the esMD FHIR Implementation Guide. These ValueSets define specific groups of codes that are relevant to esMD workflows, such as document submission statuses, rejection reasons, and administrative codes.

Below is a list of all the ValueSets included in this guide, along with their descriptions, canonical URLs, and links to detailed views.


Detailed List of ValueSets

The following table provides detailed descriptions of the key ValueSets used in esMD, with links to their respective pages.

URLName / TitleStatusFlagsSource
https://terminology.esmduat.cms.gov:8099/fhir/ValueSet/Esmd-VS-ActionRequestedEsmdVSActionRequested
ESMD ActionRequested ValueSet
activeA Internal
https://terminology.esmduat.cms.gov:8099/fhir/ValueSet/Esmd-VS-AdminErrorsEsmdVSAdminErrors
ESMD Error or Warning ValueSet
activeA Internal
https://terminology.esmduat.cms.gov:8099/fhir/ValueSet/Esmd-VS-ErrorOrWarningCodesEsmdVSErrorOrWarningCodes
ESMD Error or Warning ValueSet
activeA Internal
https://terminology.esmduat.cms.gov:8099/fhir/ValueSet/Esmd-VS-FacilityTypeCodesEsmdVSFacilityTypeCodes
ESMD Facility Type Codes
activeA Internal
https://terminology.esmduat.cms.gov:8099/fhir/ValueSet/Esmd-VS-IB-LinesOfBusinessEsmdVSIBLinesOfBusiness
esMD Inbound Lines Of Business ValueSet
activeE Internal
https://terminology.esmduat.cms.gov:8099/fhir/ValueSet/Esmd-VS-LinesOfBusinessEsmdVSLinesOfBusiness
esMD Lines Of Business ValueSet
activeA Internal
https://terminology.esmduat.cms.gov:8099/fhir/ValueSet/Esmd-VS-MimeTypesEsmdVSMimeTypes
ESMD MimeTypes ValueSet
activeE Other
https://terminology.esmduat.cms.gov:8099/fhir/ValueSet/Esmd-VS-ReviewContractorOIDsEsmdVSReviewContractorOIDs
ESMD ReviewContractorOIDs ValueSet
activeA Internal
https://terminology.esmduat.cms.gov:8099/fhir/ValueSet/Esmd-VS-ServiceCodesEsmdVSServiceCodes
ESMD Service Codes ValueSet
activeA Internal
https://terminology.esmduat.cms.gov:8099/fhir/ValueSet/Esmd-VS-StatusCodesEsmdVSStatusCodes
ESMD StatusCodes ValueSet
activeA Internal

Usage of ValueSets in esMD

The esMD FHIR Implementation Guide uses these ValueSets across multiple resources, including:

  • DocumentReference: Tracks the status, type, and rejection reasons of submitted documents.
  • OperationOutcome: Provides feedback on errors, warnings, or other administrative issues.
  • Bundle: Used for submitting collections of documents and their metadata.

Example: Using ValueSets in a DocumentReference Resource

The following JSON snippet demonstrates how to use the Document Submission Status and Document Rejection Reasons ValueSets within a DocumentReference resource:

{
  "resourceType": "DocumentReference",
  "status": "current",
  "docStatus": {
    "coding": [
      {
        "system": "http://example.org/fhir/ValueSet/document-submission-status",
        "code": "under-review",
        "display": "Under Review"
      }
    ]
  },
  "content": [
    {
      "attachment": {
        "contentType": "application/pdf",
        "url": "http://example.org/binary/1234"
      }
    }
  ],
  "context": {
    "status": {
      "coding": [
        {
          "system": "http://example.org/fhir/ValueSet/document-rejection-reasons",
          "code": "insufficient-info",
          "display": "Insufficient Info"
        }
      ]
    }
  }
}