From c26602f0c821c88c2151b27108a54b1dafa75e6e Mon Sep 17 00:00:00 2001 From: James Agnew Date: Fri, 24 Oct 2014 15:43:35 -0400 Subject: [PATCH] Versions now builds completely! --- .../org.eclipse.core.resources.prefs | 1 + hapi-fhir-base/examples/pom.xml | 6 +- hapi-fhir-base/pom.xml | 2 +- .../base/resource/BaseOperationOutcome.java | 7 +- .../java/ca/uhn/fhir/parser/ParserState.java | 5 + .../uhn/fhir/rest/server/RestfulServer.java | 3 +- .../fhir/validation/SchemaBaseValidator.java | 11 +- .../validation/SchematronBaseValidator.java | 6 +- hapi-fhir-base/testmindeps/pom.xml | 6 +- hapi-fhir-jpaserver-base/pom.xml | 6 +- .../jpa/provider/JpaResourceProvider.java | 5 +- hapi-fhir-jpaserver-test/pom.xml | 8 +- .../org.eclipse.wst.common.component | 8 +- hapi-fhir-jpaserver-uhnfhirtest/pom.xml | 25 +- hapi-fhir-oauth2/pom.xml | 6 +- .../org.eclipse.core.resources.prefs | 2 + hapi-fhir-structures-dev/pom.xml | 8 +- .../pom.xml.versionsBackup | 352 + .../uhn/fhir/model/dev/composite/AgeDt.java | 2 +- .../dev/composite/BoundCodeableConceptDt.java | 123 + .../uhn/fhir/model/dev/composite/CountDt.java | 2 +- .../fhir/model/dev/composite/DistanceDt.java | 2 +- .../fhir/model/dev/composite/DurationDt.java | 2 +- .../uhn/fhir/model/dev/composite/MoneyDt.java | 2 +- hapi-fhir-structures-dstu/pom.xml | 6 +- hapi-fhir-testpage-overlay/pom.xml | 8 +- hapi-tinder-plugin/pom.xml | 4 +- .../ca/uhn/fhir/tinder/TinderClientMojo.java | 8 +- .../fhir/tinder/TinderJpaRestServerMojo.java | 5 +- .../uhn/fhir/tinder/TinderStructuresMojo.java | 33 +- .../ca/uhn/fhir/tinder/ValueSetGenerator.java | 7 +- .../fhir/tinder/model/SearchParameter.java | 6 +- .../tinder/parser/BaseStructureParser.java | 316 +- .../BaseStructureSpreadsheetParser.java | 5 + .../DatatypeGeneratorUsingSpreadsheet.java | 5 +- .../uhn/fhir/tinder/parser/ProfileParser.java | 6 +- .../ResourceGeneratorUsingSpreadsheet.java | 3 +- .../src/main/resources/vm/dt_composite.vm | 10 +- .../resources/vs/dev/all-valuesets-bundle.xml | 53412 ++++++++++++++++ hapi-tinder-test/pom.xml | 12 +- pom.xml | 2 +- restful-server-example-test/pom.xml | 6 +- .../org.eclipse.wst.common.component | 7 +- restful-server-example/pom.xml | 15 +- 44 files changed, 54227 insertions(+), 249 deletions(-) create mode 100644 hapi-fhir-structures-dev/pom.xml.versionsBackup create mode 100644 hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/BoundCodeableConceptDt.java create mode 100644 hapi-tinder-plugin/src/main/resources/vs/dev/all-valuesets-bundle.xml diff --git a/hapi-fhir-base/.settings/org.eclipse.core.resources.prefs b/hapi-fhir-base/.settings/org.eclipse.core.resources.prefs index abdea9ac032..989609020a0 100644 --- a/hapi-fhir-base/.settings/org.eclipse.core.resources.prefs +++ b/hapi-fhir-base/.settings/org.eclipse.core.resources.prefs @@ -1,4 +1,5 @@ eclipse.preferences.version=1 encoding//src/main/java=UTF-8 encoding//src/main/resources=UTF-8 +encoding//src/test/resources=UTF-8 encoding/=UTF-8 diff --git a/hapi-fhir-base/examples/pom.xml b/hapi-fhir-base/examples/pom.xml index 401048f53e4..d20bcfb8574 100644 --- a/hapi-fhir-base/examples/pom.xml +++ b/hapi-fhir-base/examples/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../../pom.xml @@ -17,12 +17,12 @@ ca.uhn.hapi.fhir hapi-fhir-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-structures-dstu - 0.7-SNAPSHOT + 0.8-SNAPSHOT javax.servlet diff --git a/hapi-fhir-base/pom.xml b/hapi-fhir-base/pom.xml index 848ca2a6839..44bc5e19cc0 100644 --- a/hapi-fhir-base/pom.xml +++ b/hapi-fhir-base/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java index 37e57c2b888..4a06203c5aa 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java @@ -7,8 +7,7 @@ import ca.uhn.fhir.model.api.BaseResource; import ca.uhn.fhir.model.api.IResource; import ca.uhn.fhir.model.api.IResourceBlock; import ca.uhn.fhir.model.base.composite.BaseCodingDt; -import ca.uhn.fhir.model.dstu.valueset.IssueSeverityEnum; -import ca.uhn.fhir.model.primitive.BoundCodeDt; +import ca.uhn.fhir.model.primitive.CodeDt; import ca.uhn.fhir.model.primitive.StringDt; public abstract class BaseOperationOutcome extends BaseResource implements IResource { @@ -21,7 +20,7 @@ public abstract class BaseOperationOutcome extends BaseResource implements IReso public static abstract class BaseIssue extends BaseIdentifiableElement implements IResourceBlock { - public abstract BoundCodeDt getSeverity(); + public abstract CodeDt getSeverity(); public abstract StringDt getDetails(); @@ -29,8 +28,6 @@ public abstract class BaseOperationOutcome extends BaseResource implements IReso public abstract BaseIssue addLocation( String theString); - public abstract BaseIssue setSeverity(IssueSeverityEnum theSeverity); - public abstract BaseIssue setDetails(String theString); } diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParserState.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParserState.java index 9eb610ec6cf..17bd8830b97 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParserState.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/ParserState.java @@ -1491,6 +1491,11 @@ class ParserState { } } + @Override + public void enteringNewElementExtension(StartElement theElement, String theUrlAttr, boolean theIsModifier) { + myDepth++; + } + @Override public void enteringNewElement(String theNamespaceURI, String theLocalPart) throws DataFormatException { myDepth++; diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java index 298561f1e5f..12821dc7601 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/server/RestfulServer.java @@ -65,7 +65,6 @@ import ca.uhn.fhir.model.base.resource.BaseOperationOutcome; import ca.uhn.fhir.model.base.resource.BaseOperationOutcome.BaseIssue; import ca.uhn.fhir.model.dstu.composite.ResourceReferenceDt; import ca.uhn.fhir.model.dstu.resource.Binary; -import ca.uhn.fhir.model.dstu.valueset.IssueSeverityEnum; import ca.uhn.fhir.model.primitive.IdDt; import ca.uhn.fhir.model.primitive.InstantDt; import ca.uhn.fhir.parser.IParser; @@ -653,7 +652,7 @@ public class RestfulServer extends HttpServlet { } BaseIssue issue = oo.addIssue(); - issue.getSeverity().setValueAsEnum(IssueSeverityEnum.ERROR); + issue.getSeverity().setValue("error"); if (e instanceof InternalErrorException) { ourLog.error("Failure during REST processing", e); issue.getDetails().setValue(e.toString() + "\n\n" + ExceptionUtils.getStackTrace(e)); diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java index b3090348dd9..d3db5ae7ce1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchemaBaseValidator.java @@ -48,7 +48,6 @@ import ca.uhn.fhir.context.ConfigurationException; import ca.uhn.fhir.model.api.Bundle; import ca.uhn.fhir.model.api.IResource; import ca.uhn.fhir.model.base.resource.BaseOperationOutcome.BaseIssue; -import ca.uhn.fhir.model.dstu.valueset.IssueSeverityEnum; import ca.uhn.fhir.rest.server.exceptions.InternalErrorException; class SchemaBaseValidator implements IValidator { @@ -156,26 +155,26 @@ class SchemaBaseValidator implements IValidator { myContext = theContext; } - private void addIssue(SAXParseException theException, IssueSeverityEnum severity) { + private void addIssue(SAXParseException theException, String severity) { BaseIssue issue = myContext.getOperationOutcome().addIssue(); - issue.getSeverity().setValueAsEnum(severity); + issue.getSeverity().setValue(severity); issue.getDetails().setValue(theException.getLocalizedMessage()); issue.addLocation("Line[" + theException.getLineNumber() + "] Col[" + theException.getColumnNumber() + "]"); } @Override public void error(SAXParseException theException) throws SAXException { - addIssue(theException, IssueSeverityEnum.ERROR); + addIssue(theException, "error"); } @Override public void fatalError(SAXParseException theException) throws SAXException { - addIssue(theException, IssueSeverityEnum.FATAL); + addIssue(theException, "fatal"); } @Override public void warning(SAXParseException theException) throws SAXException { - addIssue(theException, IssueSeverityEnum.WARNING); + addIssue(theException, "warning"); } } diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchematronBaseValidator.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchematronBaseValidator.java index ba1c10b44ef..ac47cdaaec5 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchematronBaseValidator.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/validation/SchematronBaseValidator.java @@ -68,13 +68,13 @@ public class SchematronBaseValidator implements IValidator { BaseIssue issue = theCtx.getOperationOutcome().addIssue(); switch (next.getErrorLevel()) { case ERROR: - issue.getSeverity().setValueAsEnum(IssueSeverityEnum.ERROR); + issue.getSeverity().setValue("error"); break; case FATAL_ERROR: - issue.getSeverity().setValueAsEnum(IssueSeverityEnum.FATAL); + issue.getSeverity().setValue("fatal"); break; case WARN: - issue.getSeverity().setValueAsEnum(IssueSeverityEnum.WARNING); + issue.getSeverity().setValue("warning"); break; case INFO: case SUCCESS: diff --git a/hapi-fhir-base/testmindeps/pom.xml b/hapi-fhir-base/testmindeps/pom.xml index d8a262b122a..114863ed25f 100644 --- a/hapi-fhir-base/testmindeps/pom.xml +++ b/hapi-fhir-base/testmindeps/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../../pom.xml @@ -40,12 +40,12 @@ ca.uhn.hapi.fhir hapi-fhir-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-structures-dstu - 0.7-SNAPSHOT + 0.8-SNAPSHOT diff --git a/hapi-fhir-jpaserver-base/pom.xml b/hapi-fhir-jpaserver-base/pom.xml index fc41c1b63c6..7442a17e01e 100644 --- a/hapi-fhir-jpaserver-base/pom.xml +++ b/hapi-fhir-jpaserver-base/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../pom.xml @@ -44,7 +44,7 @@ ca.uhn.hapi.fhir hapi-fhir-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT commons-logging @@ -55,7 +55,7 @@ ca.uhn.hapi.fhir hapi-fhir-structures-dstu - 0.7-SNAPSHOT + 0.8-SNAPSHOT diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaResourceProvider.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaResourceProvider.java index f06f0635026..1488fbd7f82 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaResourceProvider.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/provider/JpaResourceProvider.java @@ -11,6 +11,7 @@ import ca.uhn.fhir.context.FhirContext; import ca.uhn.fhir.jpa.dao.IFhirResourceDao; import ca.uhn.fhir.model.api.IResource; import ca.uhn.fhir.model.api.TagList; +import ca.uhn.fhir.model.base.resource.BaseOperationOutcome.BaseIssue; import ca.uhn.fhir.model.dstu.resource.OperationOutcome; import ca.uhn.fhir.model.dstu.valueset.IssueSeverityEnum; import ca.uhn.fhir.model.primitive.IdDt; @@ -160,7 +161,9 @@ public class JpaResourceProvider extends BaseJpaProvider im try { MethodOutcome retVal = new MethodOutcome(); retVal.setOperationOutcome(new OperationOutcome()); - retVal.getOperationOutcome().addIssue().setSeverity(IssueSeverityEnum.INFORMATION).setDetails("Resource validates successfully"); + BaseIssue issue = retVal.getOperationOutcome().addIssue(); + issue.getSeverity().setValue("information"); + issue.setDetails("Resource validates successfully"); return retVal; } finally { endRequest(theRequest); diff --git a/hapi-fhir-jpaserver-test/pom.xml b/hapi-fhir-jpaserver-test/pom.xml index 3b9d49ebb85..2450610c9d1 100644 --- a/hapi-fhir-jpaserver-test/pom.xml +++ b/hapi-fhir-jpaserver-test/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../pom.xml @@ -17,7 +17,7 @@ ca.uhn.hapi.fhir hapi-fhir-jpaserver-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT org.thymeleaf @@ -127,7 +127,7 @@ ca.uhn.hapi.fhir hapi-tinder-plugin - 0.7-SNAPSHOT + 0.8-SNAPSHOT buildclient @@ -156,7 +156,7 @@ ca.uhn.hapi.fhir hapi-fhir-structures-dstu - 0.7-SNAPSHOT + 0.8-SNAPSHOT diff --git a/hapi-fhir-jpaserver-uhnfhirtest/.settings/org.eclipse.wst.common.component b/hapi-fhir-jpaserver-uhnfhirtest/.settings/org.eclipse.wst.common.component index f66ee9cee1c..0a683f4735f 100644 --- a/hapi-fhir-jpaserver-uhnfhirtest/.settings/org.eclipse.wst.common.component +++ b/hapi-fhir-jpaserver-uhnfhirtest/.settings/org.eclipse.wst.common.component @@ -6,16 +6,16 @@ - + uses - + uses - + uses - + consumes diff --git a/hapi-fhir-jpaserver-uhnfhirtest/pom.xml b/hapi-fhir-jpaserver-uhnfhirtest/pom.xml index 944458339f2..ea4f87258d9 100644 --- a/hapi-fhir-jpaserver-uhnfhirtest/pom.xml +++ b/hapi-fhir-jpaserver-uhnfhirtest/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../pom.xml @@ -16,12 +16,17 @@ ca.uhn.hapi.fhir hapi-fhir-jpaserver-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT + + + ca.uhn.hapi.fhir + hapi-fhir-structures-dstu + 0.8-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-testpage-overlay - 0.7-SNAPSHOT + 0.8-SNAPSHOT war provided @@ -29,7 +34,7 @@ ca.uhn.hapi.fhir hapi-fhir-jpaserver-test - 0.7-SNAPSHOT + 0.8-SNAPSHOT test @@ -185,7 +190,7 @@ ca.uhn.hapi.fhir hapi-tinder-plugin - 0.7-SNAPSHOT + 0.8-SNAPSHOT buildclient @@ -193,6 +198,7 @@ generate-jparest-server + dstu ca.uhn.test.jpasrv adversereaction @@ -202,7 +208,6 @@ appointment availability careplan - claim composition conceptmap condition @@ -256,7 +261,6 @@ specimen substance supply - user valueset @@ -266,6 +270,13 @@ + + + ca.uhn.hapi.fhir + hapi-fhir-structures-dstu + 0.8-SNAPSHOT + + org.apache.maven.plugins diff --git a/hapi-fhir-oauth2/pom.xml b/hapi-fhir-oauth2/pom.xml index 34bcfd4a44d..d72bb3cd5e7 100644 --- a/hapi-fhir-oauth2/pom.xml +++ b/hapi-fhir-oauth2/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../pom.xml @@ -17,12 +17,12 @@ ca.uhn.hapi.fhir hapi-fhir-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-structures-dstu - 0.7-SNAPSHOT + 0.8-SNAPSHOT test diff --git a/hapi-fhir-structures-dev/.settings/org.eclipse.core.resources.prefs b/hapi-fhir-structures-dev/.settings/org.eclipse.core.resources.prefs index 99f26c0203a..f9fe34593fc 100644 --- a/hapi-fhir-structures-dev/.settings/org.eclipse.core.resources.prefs +++ b/hapi-fhir-structures-dev/.settings/org.eclipse.core.resources.prefs @@ -1,2 +1,4 @@ eclipse.preferences.version=1 +encoding//src/main/java=UTF-8 +encoding//src/test/java=UTF-8 encoding/=UTF-8 diff --git a/hapi-fhir-structures-dev/pom.xml b/hapi-fhir-structures-dev/pom.xml index a130f34c7db..a0a5fd1d07b 100644 --- a/hapi-fhir-structures-dev/pom.xml +++ b/hapi-fhir-structures-dev/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../pom.xml @@ -18,7 +18,7 @@ ca.uhn.hapi.fhir hapi-fhir-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT @@ -195,7 +195,7 @@ ca.uhn.hapi.fhir hapi-tinder-plugin - 0.7-SNAPSHOT + 0.8-SNAPSHOT @@ -261,7 +261,9 @@ organization other patient + practitioner procedure profile diff --git a/hapi-fhir-structures-dev/pom.xml.versionsBackup b/hapi-fhir-structures-dev/pom.xml.versionsBackup new file mode 100644 index 00000000000..a130f34c7db --- /dev/null +++ b/hapi-fhir-structures-dev/pom.xml.versionsBackup @@ -0,0 +1,352 @@ + + 4.0.0 + + + ca.uhn.hapi.fhir + hapi-fhir + 0.7-SNAPSHOT + ../pom.xml + + + hapi-fhir-structures-dev + jar + + HAPI FHIR Structures - DEV (FHIR Latest) + + + + ca.uhn.hapi.fhir + hapi-fhir-base + 0.7-SNAPSHOT + + + + javax.servlet + javax.servlet-api + ${servlet_api_version} + provided + + + + + junit + junit + ${junit_version} + test + + + xmlunit + xmlunit + 1.5 + test + + + org.eclipse.jetty + jetty-servlets + ${jetty_version} + test + + + org.eclipse.jetty + jetty-servlet + ${jetty_version} + test + + + org.eclipse.jetty + jetty-server + ${jetty_version} + test + + + org.eclipse.jetty + jetty-servlet + ${jetty_version} + test + + + org.eclipse.jetty + jetty-util + ${jetty_version} + test + + + org.eclipse.jetty + jetty-webapp + ${jetty_version} + test + + + org.eclipse.jetty + jetty-http + ${jetty_version} + test + + + ch.qos.logback + logback-classic + ${logback_version} + true + test + + + org.ebaysf.web + cors-filter + ${ebay_cors_filter_version} + test + + + org.thymeleaf + thymeleaf + ${thymeleaf-version} + test + + + com.phloc + phloc-schematron + ${phloc_schematron_version} + test + + + com.phloc + phloc-commons + ${phloc_commons_version} + test + + + + + + org.mockito + mockito-all + 1.9.5 + test + + + net.sf.json-lib + json-lib + 2.4 + jdk15 + test + + + commons-logging + commons-logging + + + + + net.sf.json-lib + json-lib + 2.4 + jdk15-sources + test + + + directory-naming + naming-java + 0.8 + test + + + commons-logging + commons-logging + + + + + org.hamcrest + hamcrest-all + ${hamcrest_version} + test + + + com.google.guava + guava + ${guava_version} + test + + + + + + + + + ca.uhn.hapi.fhir + hapi-tinder-plugin + 0.7-SNAPSHOT + + + + generate-structures + + + + + ca.uhn.fhir.model.dev + dev + + account + adversereaction + adversereactionrisk + alert + allergyintolerance + appointment + appointmentresponse + availability + careplan + + composition + conceptmap + condition + conformance + contract + contraindication + coverage + device + deviceobservationreport + diagnosticorder + diagnosticreport + documentmanifest + documentreference + encounter + familyhistory + geneexpression + geneticanalysis + group + imagingstudy + immunization + immunizationrecommendation + list + location + media + medication + medicationadministration + medicationdispense + medicationprescription + medicationstatement + messageheader + microarray + namespace + nutritionorder + observation + operationdefinition + operationoutcome + order + orderresponse + organization + other + patient + person + practitioner + procedure + profile + + provenance + query + questionnaire + questionnaireanswers + referralrequest + relatedperson + remittance + riskassessment + securityclaim + securityevent + securitygroup + securityprincipal + + sequencinganalysis + sequencinglab + slot + specimen + subscription + substance + supply + user + valueset + + true + + + + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + ca.uhn.hapi.fhir + hapi-tinder-plugin + [0.4-SNAPSHOT,) + + generate-structures + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven_javadoc_plugin_version} + + + + + + + diff --git a/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/AgeDt.java b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/AgeDt.java index 95cd5fd8bb2..9fca3a9d522 100644 --- a/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/AgeDt.java +++ b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/AgeDt.java @@ -1,5 +1,5 @@ package ca.uhn.fhir.model.dev.composite; -public class AgeDt { +public class AgeDt extends QuantityDt { } diff --git a/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/BoundCodeableConceptDt.java b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/BoundCodeableConceptDt.java new file mode 100644 index 00000000000..c2edf777666 --- /dev/null +++ b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/BoundCodeableConceptDt.java @@ -0,0 +1,123 @@ +package ca.uhn.fhir.model.dev.composite; + +/* + * #%L + * HAPI FHIR - Core Library + * %% + * Copyright (C) 2014 University Health Network + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + +import static org.apache.commons.lang3.StringUtils.defaultString; + +import java.util.Collection; +import java.util.HashSet; +import java.util.Set; + +import ca.uhn.fhir.model.api.IBoundCodeableConcept; +import ca.uhn.fhir.model.api.IValueSetEnumBinder; +import ca.uhn.fhir.model.api.annotation.DatatypeDef; + +@DatatypeDef(name = "CodeableConcept", isSpecialization = true) +public class BoundCodeableConceptDt> extends CodeableConceptDt implements IBoundCodeableConcept { + + private IValueSetEnumBinder myBinder; + + /** + * Constructor + */ + public BoundCodeableConceptDt(IValueSetEnumBinder theBinder) { + myBinder = theBinder; + } + + /** + * Constructor + */ + public BoundCodeableConceptDt(IValueSetEnumBinder theBinder, T theValue) { + myBinder = theBinder; + setValueAsEnum(theValue); + } + + /** + * Constructor + */ + public BoundCodeableConceptDt(IValueSetEnumBinder theBinder, Collection theValues) { + myBinder = theBinder; + setValueAsEnum(theValues); + } + + /** + * Sets the {@link #getCoding()} to contain a coding with the code and + * system defined by the given enumerated types, AND clearing any existing + * codings first. If theValue is null, existing codings are cleared and no + * codings are added. + * + * @param theValue + * The value to add, or null + */ + public void setValueAsEnum(Collection theValues) { + getCoding().clear(); + if (theValues != null) { + for (T next : theValues) { + getCoding().add(new CodingDt(myBinder.toSystemString(next), myBinder.toCodeString(next))); + } + } + } + + /** + * Sets the {@link #getCoding()} to contain a coding with the code and + * system defined by the given enumerated type, AND clearing any existing + * codings first. If theValue is null, existing codings are cleared and no + * codings are added. + * + * @param theValue + * The value to add, or null + */ + public void setValueAsEnum(T theValue) { + getCoding().clear(); + if (theValue == null) { + return; + } + getCoding().add(new CodingDt(myBinder.toSystemString(theValue), myBinder.toCodeString(theValue))); + } + + /** + * Loops through the {@link #getCoding() codings} in this codeable concept + * and returns the first bound enumerated type that matches. Use + * caution using this method, see the return description for more + * information. + * + * @return Returns the bound enumerated type, or null if none + * are found. Note that a null return value doesn't neccesarily + * imply that this Codeable Concept has no codes, only that it has + * no codes that match the enum. + */ + public Set getValueAsEnum() { + Set retVal = new HashSet(); + for (CodingDt next : getCoding()) { + if (next == null) { + continue; + } + T nextT = myBinder.fromCodeString(defaultString(next.getCode().getValue()), defaultString(next.getSystem().getValueAsString())); + if (nextT != null) { + retVal.add(nextT); + } else { + // TODO: throw special exception type? + } + } + return retVal; + } + +} diff --git a/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/CountDt.java b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/CountDt.java index c67b0b7efdd..8ccdfe0d34b 100644 --- a/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/CountDt.java +++ b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/CountDt.java @@ -1,5 +1,5 @@ package ca.uhn.fhir.model.dev.composite; -public class CountDt { +public class CountDt extends QuantityDt { } diff --git a/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/DistanceDt.java b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/DistanceDt.java index af3910298f7..1ee7f1f4156 100644 --- a/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/DistanceDt.java +++ b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/DistanceDt.java @@ -1,5 +1,5 @@ package ca.uhn.fhir.model.dev.composite; -public class DistanceDt { +public class DistanceDt extends QuantityDt { } diff --git a/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/DurationDt.java b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/DurationDt.java index 1107f1085ba..4098ba59c3c 100644 --- a/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/DurationDt.java +++ b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/DurationDt.java @@ -1,5 +1,5 @@ package ca.uhn.fhir.model.dev.composite; -public class DurationDt { +public class DurationDt extends QuantityDt { } diff --git a/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/MoneyDt.java b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/MoneyDt.java index 963c116845f..e51a722c506 100644 --- a/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/MoneyDt.java +++ b/hapi-fhir-structures-dev/src/main/java/ca/uhn/fhir/model/dev/composite/MoneyDt.java @@ -1,5 +1,5 @@ package ca.uhn.fhir.model.dev.composite; -public class MoneyDt { +public class MoneyDt extends QuantityDt { } diff --git a/hapi-fhir-structures-dstu/pom.xml b/hapi-fhir-structures-dstu/pom.xml index 064cddb83dc..9271be58e07 100644 --- a/hapi-fhir-structures-dstu/pom.xml +++ b/hapi-fhir-structures-dstu/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../pom.xml @@ -18,7 +18,7 @@ ca.uhn.hapi.fhir hapi-fhir-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT @@ -195,7 +195,7 @@ ca.uhn.hapi.fhir hapi-tinder-plugin - 0.7-SNAPSHOT + 0.8-SNAPSHOT diff --git a/hapi-fhir-testpage-overlay/pom.xml b/hapi-fhir-testpage-overlay/pom.xml index f7594faabf6..46b777b8477 100644 --- a/hapi-fhir-testpage-overlay/pom.xml +++ b/hapi-fhir-testpage-overlay/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../pom.xml @@ -27,12 +27,12 @@ ca.uhn.hapi.fhir hapi-fhir-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-structures-dstu - 0.7-SNAPSHOT + 0.8-SNAPSHOT org.thymeleaf @@ -55,7 +55,7 @@ ca.uhn.hapi.fhir hapi-fhir-jpaserver-test - 0.7-SNAPSHOT + 0.8-SNAPSHOT test diff --git a/hapi-tinder-plugin/pom.xml b/hapi-tinder-plugin/pom.xml index d778298bfe1..514299347f7 100644 --- a/hapi-tinder-plugin/pom.xml +++ b/hapi-tinder-plugin/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../pom.xml @@ -19,7 +19,7 @@ ca.uhn.hapi.fhir hapi-fhir-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Value set "LOINC Codes for Cholesterol": This is an example value set that includes + all the LOINC codes for serum cholesterol from v2.36. + Developed by: FHIR project team (example)

+

Published for testing on 13-June 2012

+

This is a restriction on + + the value set "all serum test codes", and contains the following LOINC codes:

+
    +
  • 14647-2
  • +
  • 2093-3
  • +
  • 35200-5
  • +
  • 9342-7
  • +
+
+
+ + + Valueset "http://nema.org/dicom/vs/dcid" to support automated processing + http://nema.org/dicom/vs/dcid + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

DICOM Code Definitions (DCM)

+

The meanings of codes defined in DICOM, either explicitly or by reference to another part of DICOM or an external reference document or standard

+

These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association"

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CodeDisplayDefinition
109001Digital timecode (NOS)A signal transmitted for the purpose of interchange of the current time, not specific to any source or methodology.
109002ECG-based gating signal, processedA signal which is generated for each detection of a heart beat
109003IRIG-B timecodeA signal transmitted by the Inter-Range Instrumentation Group for the purpose of synchronizing time clocks.
109004X-Ray Fluoroscopy On SignalA signal which indicates that X-Ray source has been activated for fluoroscopy use.
109005X-Ray On TriggerA signal that indicated that the X-Ray source has been activated for image recording.
109006Differential signalAn electrical signal derived from two electrodes
109007His bundle electrogramAn electrophysiological recording from the HIS nerve bundle
109008Monopole signalAn electrical signal from one electrode relative to an indifferent potential.
109009Pacing (electrical) stimulus, voltageThe voltage stimulus during cardiac pacing
109010Radio frequency ablation, powerThe power injected during RF ablation procedure
109011Voltage measurement by basket catheterElectrophysiological signals acquired using a multi-splined catheter each equipped with multiple electrodes.
109012Voltage measurement by mapping catheterElectrophysiological signals acquired using a steerable catheter
109013Voltage measurement, NOSA voltage measurement not otherwise specified
10901435% of thermal COA signal point which is 35% of the peak thermal cardiac output signal
10901570% of thermal COA signal point which is 70% of the peak thermal cardiac output signal
109016A wave peak pressureThe peak pressure of each heart beat in the atrium caused by the atrial contraction
109017A wave pressure, averageThe average of several A wave pressure measurements
109018Beat detected (accepted)An identified cardiac beat used in the determination of a measurement
109019Beat detected (rejected)An identified cardiac beat not used in the determination of a measurement
109020Diastolic pressure, averageThe average of several diastolic pressure measurements
109021Diastolic pressure nadirThe lowest pressure value excluding any undershoot artifact.
109022End diastoleThe moment at the end of the diastolic phase of the cardiac cycle.
109023End of expirationThe moment at the end of respiratory expiration
109024End of inspirationThe moment at the end of respiratory inspiration
109025Max dp/dtThe maximum positive rate of change of pressure.
109026Max neg dp/dtThe maximum negative rate of change of pressure.
109027Mean blood pressureThe average blood pressure value, generally over 2 or more seconds
109028Peak of thermal cardiac output bolusThe peak change in blood temperature during a thermal cardiac output measurement.
109029Start of expirationThe moment respiratory expiration begins
109030Start of inspirationThe moment of respiratory inspiration begins
109031Start of thermal cardiac output bolusThe first discernable blood temperature change following the injectate during a thermal cardiac output measurement
109032Systolic pressure, averageThe average of several systolic blood pressure measurements.
109033Systolic peak pressureThe highest systolic blood pressure value excluding any overshoot artifact
109034V wave peak pressureThe peak pressure of each heart beat in the atrium caused by the filling of the atrium.
109035V wave pressure, averageThe average of several V wave pressure measurements
109036Valve closeThe moment at which a heart valve closes
109037Valve openThe moment at which a heart valve opens
109038Ablation offThe moment when RF ablation current is turned off.
109039Ablation onThe moment when RF ablation current is turned on
109040HIS bundle waveThe moment in the cardiac cycle when the HIS bundle nerves depolarize.
109041P waveThe surface electrocardiogram of the atrial contraction
109042Q waveThe first negative deflection of the electrocardiogram cause by ventricular depolarization
109043R waveThe first positive deflection the electrocardiogram cause by ventricular depolarization
109044S waveThe first negative deflection after the R wave.
109045Start of atrial contractionThe beginning of the atrial contraction
109046Start of atrial contraction (subsequent)The beginning of the second atrial contraction of two consecutive beats.
109047Stimulation at rate 1 intervalThe stimulation interval during cardiac stimulation first used in a pacing train
109048Stimulation at rate 2 intervalThe stimulation interval different from the first stimulation interval used in a pacing train
109049Stimulation at rate 3 intervalA stimulation interval different from and subsequent to the second interval in a pacing train.
109050Stimulation at rate 4 intervalDescribes a stimulation interval different from and subsequent to the third interval in a pacing train
109051T waveThe electrocardiogram deflection caused by ventricular repolarization.
109052V waveThe peak pressure of each heart beat monitored in the atrium caused by the filling of the atrium
109053V wave of next beatThe second V wave measurement of two consecutive beats.
109054Patient StateA description of the physiological condition of the patient
109055Protocol StageThe exercise level during a progressive cardiac stress test.
109056Stress ProtocolA series of physiological challenges designed to progressively increase the work of the heart.
109057Catheterization Procedure PhaseA subpart of a cardiac catheterization procedure
109058Contrast PhaseThe subpart of a cardiac catheterization procedure in which a radio-opaque contrast medium is injected into the patient.
109059Physiological challengesPhysical changes administered to a patient in order to elicit an physiological response
109060Procedure Step NumberEnumeration of a subpart of a catheterization procedure
109061EP Procedure PhaseA subpart of en electrophysiological procedure
109063Pulse train definitionA means of defining a series of cardiac stimulation pulses
109070End of systole
109071Indicator mean transit timeTime for a median particle to travel from point of injection to point of detection
109072TauThe time constant of isovolumic pressure fall
109073V max myocardialMaximum velocity of myocardial contractility
109091Cardiac Stress StateImaging after injection of tracer during increased cardiac workload or increased myocardial blood flow, achieved by either exercise or pharmacologic means.
109092Reinjection StateImaging after injection of additional tracer under resting conditions.
109093Redistribution StateImaging after allowing a moderate amount of time for tracer to move from its initial sites of uptake.
109094Delayed Redistribution StateImaging after allowing an extended amount of time for tracer to move from its initial sites of uptake.
109095Peak stress statePeak Cardiac stress state
109096Recovery stateRecovery from cardiac stress
109101Acquisition EquipmentEquipment that originally acquired the data stored within composite instances. For example, a CT, MR or Ultrasound modality.
109102Processing EquipmentEquipment that has processed composite instances to create new composite instances. For example, a 3D Workstation.
109103Modifying EquipmentEquipment that has modified existing composite instances (without creating new composite instances). For example, a QA Station or Archive.
109104De-identifying EquipmentEquipment that has modified an existing composite instance to remove patient identifying information
109105Frame Extracting EquipmentEquipment that has processed composite instances to create new composite instances by extracting selected frames from the original instance.
109110VoiceThe sound of a human’s speech, recorded during a procedure.
109111Operator’s narrativeThe voice of a device operator, recorded during a procedure.
109112Ambient room environmentThe ambient sound recorded during a procedure, which may or may not include voice and other types of sound.
109113Doppler audioThe Doppler waveform recorded as an audible signal.
109114PhonocardiogramThe sound of the human heart beating.
109115Physiological audio signalAny sound made by the human body.
109116Arterial Pulse WaveformA digitized signal from the patient arterial system collected through pulse oximetry or other means
109117Respiration WaveformA digitized signal from the patient respiratory system representing respiration
109120On admission to unitThe occasion on which a procedure was performed on admission to a specialist unit (e.g., intensive care).
109121On dischargeThe occasion on which a procedure was performed on discharge from hospital as an in-patient.
109122On discharge from unitThe occasion on which a procedure was performed on discharge from a specialist unit (e.g., intensive care).
109123Pre-interventionThe occasion on which a procedure was performed immediately prior to non-surgical intervention (e.g, percutaneous angioplasty, biopsy).
109124Post-interventionThe occasion on which a procedure was performed immediately after to non-surgical intervention (e.g, percutaneous angioplasty, biopsy).
109125At last appointmentThe occasion on which a procedure was performed at the most recent outpatient encounter.
109132Joint position methodThe active or passive joint positioning during acquisition
109133Physical forceA physical force applied during acquisition
109134Prior to voidingPrior to voiding
109135Post voidingPost voiding
109136Neutral musculoskeletal positionNeutral musculoskeletal position
109200America Kennel ClubAmerica Kennel Club
109201America’s Pet Registry Inc.America’s Pet Registry Inc.
109202American Canine AssociationAmerican Canine Association
109203American Purebred RegistryAmerican Purebred Registry
109204American Rare Breed AssociationAmerican Rare Breed Association
109205Animal Registry UnlimitedAnimal Registry Unlimited
109206Animal Research FoundationAnimal Research Foundation
109207Canadian Border Collie AssociationCanadian Border Collie Association
109208Canadian Kennel ClubCanadian Kennel Club
109209Canadian Livestock Records AssociationCanadian Livestock Records Association
109210Canine Federation of CanadaCanine Federation of Canada
109211Continental Kennel ClubContinental Kennel Club
109212Dog Registry of AmericaDog Registry of America
109213Federation of International CaninesFederation of International Canines
109214International Progressive Dog Breeders’ AllianceInternational Progressive Dog Breeders’ Alliance
109215National Kennel ClubNational Kennel Club
109216North American Purebred Dog RegistryNorth American Purebred Dog Registry
109217United All Breed RegistryUnited All Breed Registry
109218United Kennel ClubUnited Kennel Club
109219Universal Kennel Club InternationalUniversal Kennel Club International
109220Working Canine Association of CanadaWorking Canine Association of Canada
109221World Kennel ClubWorld Kennel Club
109222World Wide Kennel ClubWorld Wide Kennel Club
110020Sheet Film DigitizedDigitization of Sheet Film
110021Cine Film DigitizedDigitization of Cine Film
110022Video Tape DigitizedDigitization of Video Tape
110023Paper DigitizedDigitization of pages of a paper document (Units may be specified as Pages, Documents)
110024CD ImportedImportation of CD
110025DVD ImportedImportation of DVD
110026MOD ImportedImportation of MOD
110027Studies ImportedImportation of DICOM Studies
110028Instances ImportedImportation of DICOM Composite Instances
110100Application ActivityAudit event: Application Activity has taken place
110101Audit Log UsedAudit event: Audit Log has been used
110102Begin Transferring DICOM InstancesAudit event: Storage of DICOM Instances has begun
110103DICOM Instances AccessedAudit event: DICOM Instances have been created, read, updated, or deleted -audit event
110104DICOM Instances TransferredAudit event: Storage of DICOM Instances has been completed
110105DICOM Study DeletedAudit event: Entire Study has been deleted
110106ExportAudit event: Data has been exported out of the system
110107ImportAudit event: Data has been imported into the system
110108Network EntryAudit event: System has joined or left network
110109Order RecordAudit event: Order has been created, read, updated or deleted
110110Patient RecordAudit event: Patient Record has been created, read, updated, or deleted
110111Procedure RecordAudit event: Procedure Record has been created, read, updated, or deleted
110112QueryAudit event: Query has been made
110113Security AlertAudit event: Security Alert has been raised
110114User AuthenticationAudit event: User Authentication has been attempted
110120Application StartAudit event: Application Entity has started
110121Application StopAudit event: Application Entity has stopped
110122LoginAudit event: User login has been attempted
110123LogoutAudit event: User logout has been attempted
110124AttachAudit event: Node has been attached
110125DetachAudit event: Node has been detached
110126Node AuthenticationAudit event: Node Authentication has been attempted
110127Emergency Override StartedAudit event: Emergency Override has started
110128Network ConfigurationAudit event: Network configuration has been changed
110129Security ConfigurationAudit event: Security configuration has been changed
110130Hardware ConfigurationAudit event: Hardware configuration has been changed
110131Software ConfigurationAudit event: Software configuration has been changed
110132Use of Restricted FunctionAudit event: A use of a restricted function has been attempted
110133Audit Recording StoppedAudit event: Audit recording has been stopped
110134Audit Recording StartedAudit event: Audit recording has been started
110135Object Security Attributes ChangedAudit event: Security attributes of an object have been changed
110136Security Roles ChangedAudit event: Security roles have been changed
110137User security Attributes ChangedAudit event: Security attributes of a user have been changed
110150ApplicationAudit participant role ID of software application
110151Application LauncherAudit participant role ID of software application launcher, i.e., the entity that started or stopped an application.
110152Destination Role IDAudit participant role ID of the receiver of data
110153Source Role IDAudit participant role ID of the sender of data
110154Destination MediaAudit participant role ID of media receiving data during an export.
110155Source MediaAudit participant role ID of media providing data during an import.
110180Study Instance UIDParticipantObjectID type: Study Instance UID
110181SOP Class UIDParticipantObjectID type: SOP Class UID
110182Node IDID of a node that is a participant object of an audit message
110138Emergency Override StoppedAudit event: Emergency Override has Stopped
110139Remote Service Operation StartedAudit event: Remote Service Operation has Begun
110140Remote Service Operation StoppedAudit event: Remote Service Operation has Stopped
110141Local Service Operation StartedAudit event: Local Service Operation has Begun
110142Local Service Operation StoppedAudit event: Local Service Operation Stopped
110030USB Disk EmulationA device that connects using the USB hard drive interface. These may be USB-Sticks, portable hard drives, and other technologies.
110031EmailEmail and email attachments used as a media for data transport.
110032CDCD-R, CD-ROM, and CD-RW media used for data transport.
110033DVDDVD, DVD-RAM, and other DVD formatted media used for data transport.
110034Compact FlashMedia that comply with the Compact Flash standard.
110035Multi-media CardMedia that comply with the Multi-media Card standard.
110036Secure Digital CardMedia that comply with the Secure Digital Card standard.
110037URIURI Identifier for network or other resource, see RFC 3968
110038Paper DocumentAny paper or similar document.
110190Issuer of IdentifierSystem, organization, agency, or department that has assigned an instance identifier (such as placer or filler number, patient or provider identifier, etc.)
110500Doctor cancelled procedureProcedure order cancelled by requesting physician or other authorized physician
110501Equipment failureEquipment failure prevented completion of procedure
110502Incorrect procedure orderedProcedure discontinued due to incorrect procedure being ordered
110503Patient allergic to media/contrastProcedure discontinued due to patient allergy to media/contrast (reported or reaction)
110504Patient diedProcedure discontinued due to death of Patient
110505Patient refused to continue procedureProcedure discontinued due to patient refusal to continue procedure
110506Patient taken for treatment or surgeryProcedure discontinued due to patient being taken for treatment or surgery
110507Patient did not arrivePatient did not arrive for procedure
110508Patient pregnantProcedure discontinued due to patient pregnancy (reported or determined)
110509Change of procedure for correct chargingProcedure discontinued to restart with new procedure code for correct charging
110510Duplicate orderProcedure discontinued due to duplicate orders received for same procedure
110511Nursing unit cancelProcedure order cancelled by nursing unit
110512Incorrect side orderedProcedure discontinued due to incorrect side (laterality) being ordered
110513Discontinued for unspecified reasonProcedure discontinued for unspecified reason
110514Incorrect worklist entry selectedProcedure discontinued due to incorrect patient or procedure step selected from modality worklist
110515Patient condition prevented continuingPatient condition prevented continuation of procedure
110516Equipment changeProcedure step is discontinued to change to other equipment or modality
110518Patient MovementA movement of the patient affecting test quality
110519Operator ErrorAn error of the operator affecting test quality
110521Objects incorrectly formattedOne or more of the objects is malformed.
110522Object Types not supportedReceiving System is unable to accept the object type.
110523Object Set incompleteOne or more objects associated with the object set is missing.
110524Media FailureThe contents of the Media could not be accessed properly.
110526Resource pre-emptedProcedure discontinued due to necessary equipment, staff or other resource becoming (temporarily) unavailable to the procedure.
110527Resource inadequateProcedure discontinued due to necessary equipment, staff or other resource being inadequate to complete the procedure.
110528Discontinued Procedure Step rescheduledA new Procedure Step has been scheduled to replace the Discontinued Procedure Step.
110529Discontinued Procedure Step rescheduling recommendedIt is recommended that a new Procedure Step be scheduled to replace the Discontinued Procedure Step.
110001Image ProcessingImage processing work item
110002Quality ControlQuality control work item
110003Computer Aided DiagnosisComputer aided diagnosis work item
110004Computer Aided DetectionComputer aided detection work item
110005InterpretationInterpretation work item
110006TranscriptionTranscription work item
110007Report VerificationReport verification work item
110008PrintPrint work item
110009No subsequent Workitems
110010FilmFilm type of output
110011DictationDictation type of output
110012TranscriptionTranscription type of output
110013Media ImportThe procedure to read DICOM instances from DICOM interchange media, coerce identifying attributes into the local namespace if necessary, and make the instances available.
110800Spin Tagging Perfusion MR Signal IntensitySignal intensity of a Spin tagging Perfusion MR image. Spin tagging is a technique for the measurement of blood perfusion, based on magnetically labeled arterial blood water as an endogenous tracer.
110801Contrast Agent Angio MR Signal IntensitySignal intensity of a Contrast Agent Angio MR image.
110802Time Of Flight Angio MR Signal IntensitySignal intensity of a Time-of-flight (TOF) MR image. Time-of-flight (TOF) is based on the phenomenon of flow-related enhancement of spins entering into an imaging slice. As a result of being unsaturated, these spins give more signal that surrounding stationary spins.
110803Proton Density Weighted MR Signal IntensitySignal intensity of a Proton Density Weighted MR image. All MR images have intensity proportional to proton density. Images with very little T1 or T2 weighting are called ‘PD-weighted’.
110804T1 Weighted MR Signal IntensitySignal intensity of T1 Weighted MR image. A T1 Weighted MR image is created typically by using short TE and TR times.
110805T2 Weighted MR Signal IntensitySignal intensity of a T2 Weighted MR image. T2 Weighted image contrast state is approached by imaging with a TR long compared to tissue T1 (to reduce T1 contribution to image contrast) and a TE between the longest and shortest tissue T2s of interest.
110806T2* Weighted MR Signal IntensitySignal intensity of a T2* Weighted MR image. The T2* phenomenon results from molecular interactions (spin spin relaxation) and local magnetic field non-uniformities, which cause the protons to precess at slightly different frequencies.
110807Field Map MR Signal IntensitySignal intensity of a Field Map MR image. A Field Map MR image provides a direct measure of the B0 inhomogeneity at each point in the image.
110808Fractional AnisotropyCoefficient reflecting the fractional anisotropy of the tissues, derived from a diffusion weighted MR image. Fractional anisotropy is proportional to the square root of the variance of the Eigen values divided by the square root of the sum of the squares of the Eigen values.
110809Relative AnisotropyCoefficient reflecting the relative anisotropy of the tissues, derived from a diffusion weighted MR image.
110810Volumetric Diffusion Dxx ComponentDxx Component of the diffusion tensor, quantifying the molecular mobility along the X axis.
110811Volumetric Diffusion Dxy ComponentDxy Component of the diffusion tensor, quantifying the correlation of molecular displacements in the X and Y directions.
110812Volumetric Diffusion Dxz ComponentDxz Component of the diffusion tensor, quantifying the correlation of molecular displacements in the X and Z directions.
110813Volumetric Diffusion Dyy ComponentDyy Component of the diffusion tensor, quantifying the molecular mobility along the Y axis.
110814Volumetric Diffusion Dyz ComponentDyz Component of the diffusion tensor, quantifying the correlation of molecular displacements in the Y and Z directions.
110815Volumetric Diffusion Dzz ComponentDzz Component of the diffusion tensor, quantifying the molecular mobility along the Z axis.
110816T1 Weighted Dynamic Contrast Enhanced MR Signal IntensitySignal intensity of a T1 Weighted Dynamic Contrast Enhanced MR image. A T1 Weighted Dynamic Contrast Enhanced MR image reflects the dynamics of diffusion of the exogenous contrast media from the blood pool into the extra vascular extracellular space (EES) of the brain at a rate determined by the blood flow to the tissue, the permeability of the Brain Blood Barrier (BBB), and the surface area of the perfusing vessels.
110817T2 Weighted Dynamic Contrast Enhanced MR Signal IntensitySignal intensity of a T2 Weighted Dynamic Contrast Enhanced MR image. A T2 Weighted Dynamic Contrast Enhanced MR image reflects the T2 of tissue decrease as the Gd contrast agent bolus passes through the brain.
110818T2* Weighted Dynamic Contrast Enhanced MR Signal IntensitySignal intensity of a T2* Weighted Dynamic Contrast Enhanced MR image. A T2* Weighted Dynamic Contrast Enhanced MR image reflects the T2* of tissue decrease as the Gd contrast agent bolus passes through the brain.
110819Blood Oxygenation LevelSignal intensity of a Blood Oxygenation Level image. BOLD imaging is sensitive to blood oxygenation (but also to cerebral blood flow and volume). This modality is essentially used for detecting brain activation (functional MR).
110820Nuclear Medicine Projection ActivityAccumulated decay event counts in a nuclear medicine projection image.
110821Nuclear Medicine Tomographic ActivityAccumulated decay event counts in a Nuclear Medicine Tomographic image (including PET).
110822Spatial Displacement X ComponentSpatial Displacement along axis X of a non linear deformable spatial registration image. The X axis is defined in reference to the patient’s orientation, and is increasing to the left hand side of the patient.
110823Spatial Displacement Y ComponentSpatial Displacement along axis Y of a non linear deformable spatial registration image. The Y axis is defined in reference to the patient’s orientation, and is increasing to the posterior side of the patient.
110824Spatial Displacement Z ComponentSpatial Displacement along axis Z of a Non linear deformable spatial registration image. The Z axis is defined in reference to the patient’s orientation, and is increasing toward the head of the patient.
110825Hemodynamic ResistanceMeasured resistance to the flow of blood, e.g. through the vasculature or through a heart value.
110826Indexed Hemodynamic ResistanceMeasured resistance to the flow of blood, e.g. through the vasculature or through a heart value, normalized to a particular indexed scale.
110827Tissue VelocityVelocity of tissue based on Doppler measurements.
110828Flow VelocityVelocity of blood flow based on Doppler measurements.
110829Flow VarianceStatistical variance of blood velocity relative to mean.
110830ElasticityScalar value related to the elastic properties of the tissue.
110831PerfusionScalar value related to the volume of blood perfusing into tissue.
110832Speed of soundSpeed of sound in tissue.
110833Ultrasound AttenuationReduction in strength of ultrasound signal as the wave.
110834RGB R ComponentRed component of a true color image (RGB).
110835RGB G ComponentGreen component of a true color image (RGB).
110836RGB B ComponentBlue component of a true color image (RGB).
110837YBR FULL Y ComponentY (Luminance) component of a YBR FULL image, as defined in JPEG 2000.
110838YBR FULL CB ComponentCB (Blue chrominance) component of a YBR FULL image, as defined in JPEG 2000.
110839YBR FULL CR ComponentCR (Red chrominance) component of a YBR FULL image, as defined in JPEG 2000.
110840YBR PARTIAL Y ComponentY (Luminance) component of a YBR PARTIAL image, as defined in JPEG 2000.
110841YBR PARTIAL CB ComponentCB (Blue chrominance) component of a YBR PARTIAL image, as defined in JPEG 2000.
110842YBR PARTIAL CR ComponentCR (Red chrominance) component of a YBR PARTIAL image, as defined in JPEG 2000.
110843YBR ICT Y ComponentY (Luminance) component of a YBR ICT image (Irreversible Color Transform), as defined in JPEG 2000.
110844YBR ICT CB ComponentCB (Blue chrominance) component of a YBR ICT image (Irreversible Color Transform), as defined in JPEG 2000.
110845YBR ICT CR ComponentCR (Red chrominance) component of a YBR ICT image (Irreversible Color Transform), as defined in JPEG 2000.
110846YBR RCT Y ComponentY (Luminance) component of a YBR RCT image (Reversible Color Transform), as defined in JPEG 2000.
110847YBR RCT CB ComponentCB (Blue chrominance) component of a YBR RCT image (Reversible Color Transform), as defined in JPEG 2000.
110848YBR RCT CR ComponentCR (Red chrominance) component of a YBR RCT image (Reversible Color Transform), as defined in JPEG 2000.
110849EchogenicityThe ability of a material to create an ultrasound return echo.
110850X-Ray AttenuationDecrease in the number of photons in an X-Ray beam due to interactions with the atoms of a material substance. Attenuation is due primarily to two processes, absorption and scattering.
110851X-Ray Attenuation CoefficientCoefficient which describes the fraction of a beam of X-Rays or gamma rays that is absorbed or scattered per unit thickness of the absorber. This value basically accounts for the number of atoms in a cubic cm volume of material and the probability of a photon being scattered or absorbed from the nucleus or an electron of one of these atoms.
110852MR signal intensitySignal intensity of an MR image, not otherwise specified.
110853Binary SegmentationBinary value denoting that the segmented property is present.
110854Fractional Probabilistic SegmentationProbability, defined as a percentage, that the segmented property occupies the spatial area defined by the voxel.
110855Fractional Occupancy SegmentationPercentage of the voxel area occupied by the segmented property.
110856Linear DisplacementSpatial dimension, denoting a linear displacement.
110857Photon EnergyDimension denoting the energy (frequency or wavelength) of photons.
110858TimeDimension used to sequence events, to compare the duration of events and the intervals between events.
110859AngleSpatial dimension, denoting an angle.
110860Left-Right AxisA spatial dimension axis running along a line between the patient’s left and right side.
110861Head-Foot AxisA spatial dimension axis running along a line between the patient’s head and foot.
110862Anterior-Posterior AxisA spatial dimension axis running along a line between the patient’s anterior and posterior sides.
110863Apex-Base AxisA spatial dimension axis running along a line between the apex and base of an organ, object, or chamber.
110864Anterior-Inferior AxisA spatial dimension axis running along a line between the anterior and inferior sides of an organ, object, or chamber.
110865Septum-Wall AxisA spatial dimension axis running along a line between the septum and wall of a chamber.
110866Right To LeftOrientation of a spatial dimension where increasing values run from the right to the left side of the patient.
110867Left To RightOrientation of a spatial dimension where increasing values run from the left to the right side of the patient.
110868Head To FootOrientation of a spatial dimension where increasing values run from the head to the foot of the patient.
110869Foot To HeadOrientation of a spatial dimension where increasing values run from the foot to the head of the patient.
110870Anterior To PosteriorOrientation of a spatial dimension where increasing values run from the anterior to the posterior side of the patient.
110871Posterior To AnteriorOrientation of a spatial dimension where increasing values run from the posterior to the anterior side of the patient.
110872Apex To BaseOrientation of a spatial dimension where increasing values run from the apex to the base.
110873Base To ApexOrientation of a spatial dimension where increasing values run from the base to the apex.
110874Anterior To InferiorOrientation of a spatial dimension where increasing values run from the anterior to the inferior.
110875Inferior To AnteriorOrientation of a spatial dimension where increasing values run from the inferior to the anterior.
110876Septum To WallOrientation of a spatial dimension where increasing values run from the septum of a chamber to the opposite wall.
110877Wall To SeptumOrientation of a spatial dimension where increasing values run from the opposite wall to the septum of a chamber.
113000Of InterestOf Interest
113001Rejected for Quality ReasonsRejected for Quality Reasons
113002For Referring ProviderFor Referring Provider
113003For SurgeryFor Surgery
113004For TeachingFor Teaching
113005For ConferenceFor Conference
113006For TherapyFor Therapy
113007For PatientFor Patient
113008For Peer ReviewFor Peer Review
113009For ResearchFor Research
113010Quality IssueQuality Issue
113011Document Title ModifierDocument Title Modifier
113012Key Object DescriptionKey Object Description
113013Best In Set
113014Study
113015Series
113016Performed Procedure Step
113017Stage-View
113018For PrintingFor Printing
113020For Report AttachmentSelection of information objects for attachment to the clinical report of the Current Requested Procedure
113026Double exposureDouble exposure
113030ManifestA list of objects that have been exported out of one organizational domain into another domain. Typically, the first domain has no direct control over what the second domain will do with the objects.
113031Signed ManifestA signed list of objects that have been exported out of one organizational domain into another domain, referenced securely with either Digital Signatures or MACs. Typically, the first domain has no direct control over what the second domain will do with the objects.
113032Complete Study ContentThe list of objects that constitute a study at the time that the list was created.
113033Signed Complete Study ContentThe signed list of objects that constitute a study at the time that the list was created, referenced securely with either Digital Signatures or MACs.
113034Complete Acquisition ContentThe list of objects that were generated in a single procedure step.
113035Signed Complete Acquisition ContentThe signed list of objects that were generated in a single procedure step, referenced securely with either Digital Signatures or MACs.
113036Group of Frames for DisplayA list of frames or single-frame or entire multi-frame instances that together constitute a set for some purpose, such as might be displayed together in the same viewport, as distinct from another set that might be displayed in a separate viewport.
113037Rejected for Patient Safety ReasonsList of objects whose use is potentially harmful to the patient. For example, an improperly labeled image could lead to dangerous surgical decisions.
113040Lossy CompressionLossy compression has been applied to an image.
113041Apparent Diffusion CoefficientThe image is derived by calculation of the apparent diffusion coefficient.
113042Pixel by pixel additionThe image is derived by the pixel by pixel addition of two images.
113043Diffusion weightedThe image is derived by calculation of the diffusion weighting.
113044Diffusion AnisotropyThe image is derived by calculation of the diffusion anisotropy.
113045Diffusion AttenuatedThe image is derived by calculation of the diffusion attenuation.
113046Pixel by pixel divisionThe image is derived by the pixel by pixel division of two images.
113047Pixel by pixel maskThe image is derived by the pixel by pixel masking of one image by another.
113048Pixel by pixel MaximumThe image is derived by calculating the pixel by pixel maximum of two or more images.
113049Pixel by pixel meanThe image is derived by calculating the pixel by pixel mean of two or more images.
113050Metabolite Maps from spectroscopy dataThe image is derived by calculating from spectroscopy data pixel values localized in two dimensional space based on the concentration of specific metabolites (i.e, at specific frequencies).
113051Pixel by pixel MinimumThe image is derived by calculating the pixel by pixel minimum of two or more images.
113052Mean Transit TimeThe image is derived by calculating mean transit time values.
113053Pixel by pixel multiplicationThe image is derived by the pixel by pixel multiplication of two images.
113054Negative Enhancement IntegralThe image is derived by calculating negative enhancement integral values.
113055Regional Cerebral Blood FlowThe image is derived by calculating regional cerebral blood flow values.
113056Regional Cerebral Blood VolumeThe image is derived by calculating regional cerebral blood volume values.
113057R-Coefficient MapThe image is derived by calculating R-Coefficient map values
113058Proton Density mapThe image is derived by calculating proton density values.
113059Signal Change MapThe image is derived by calculating signal change values.
113060Signal to Noise MapThe image is derived by calculating the signal to noise ratio.
113061Standard DeviationThe image is derived by calculating the standard deviation of two or more images.
113062Pixel by pixel subtractionThe image is derived by the pixel by pixel subtraction of two images.
113063T1 MapThe image is derived by calculating T1 values.
113064T2* MapThe image is derived by calculating T2* values.
113065T2 MapThe image is derived by calculating T2 values.
113066Time Course of SignalThe image is derived by calculating values based on the time course of signal.
113067Temperature encodedThe image is derived by calculating values based on temperature encoding.
113068Student’s T-TestThe image is derived by calculating the value of the Student’s T-Test statistic from multiple image samples.
113069Time To Peak mapThe image is derived by calculating values based on the time to peak.
113070Velocity encodedThe image is derived by calculating values based on velocity encoded (e.g., phase contrast).
113071Z-Score MapThe image is derived by calculating the value of the Z-Score statistic from multiple image samples.
113072Multiplanar reformattingThe image is derived by reformatting in a flat plane other than that originally acquired.
113073Curved multiplanar reformattingThe image is derived by reformatting in a curve plane other than that originally acquired.
113074Volume renderingThe image is derived by volume rendering of acquired data.
113075Surface renderingThe image is derived by surface rendering of acquired data.
113076SegmentationThe image is derived by segmentation (classification into tissue types) of acquired data.
113077Volume editingThe image is derived by selectively editing acquired data (removing values from the volume), such as in order to remove obscuring structures or noise.
113078Maximum intensity projectionThe image is derived by maximum intensity projection of acquired data.
113079Minimum intensity projectionThe image is derived by minimum intensity projection of acquired data.
113080Glutamate and glutamineFor single-proton MR spectroscopy, the resonance peak corresponding to glutamate and glutamine.
113081Choline/Creatine RatioFor single-proton MR spectroscopy, the ratio between the Choline and Creatine resonance peaks.
113082N-acetylaspartate /Creatine RatioFor single-proton MR spectroscopy, the ratio between the N-acetylaspartate and Creatine resonance peaks.
113083N-acetylaspartate /Choline RatioFor single-proton MR spectroscopy, the ratio between the N-acetylaspartate and Choline resonance peaks.
113085Spatial resamplingThe image is derived by spatial resampling of acquired data.
113086Edge enhancementThe image is derived by edge enhancement.
113087SmoothingThe image is derived by smoothing.
113088Gaussian blurThe image is derived by Gaussian blurring.
113089Unsharp maskThe image is derived by unsharp masking.
113090Image stitchingThe image is derived by stitching two or more images together.
113091Spatially-related frames extracted from the volumeSpatially-related frames in this image are representative frames from the referenced 3D volume dataset
113092Temporally-related frames extracted from the set of volumesTemporally-related frames in this image are representative frames from the referenced 3D volume dataset
113093Polar to Rectangular Scan ConversionConversion of a polar coordinate image to rectangular (Cartesian) coordinate image.
113094Creatine and CholineFor single-proton MR spectroscopy, the resonance peak corresponding to creatine and choline.
113095Lipid and LactateFor single-proton MR spectroscopy, the resonance peak corresponding to lipid and lactate.
113096Creatine+Choline/ Citrate RatioFor single-proton MR spectroscopy, the ratio between the Choline and Creatine resonance peak and the Citrate resonance peak.
113097Multi-energy proportional weightingImage pixels created through proportional weighting of multiple acquisitions at distinct X-Ray energies.
113100Basic Application Confidentiality ProfileDe-identification using a profile defined in PS 3.15 that requires removing all information related to the identity and demographic characteristics of the patient, any responsible parties or family members, any personnel involved in the procedure, the organizations involved in ordering or performing the procedure, additional information that could be used to match instances if given access to the originals, such as UIDs, dates and times, and private attributes, when that information is present in the non-Pixel Data Attributes, including graphics or overlays
113101Clean Pixel Data OptionAdditional de-identification according to an option defined in PS 3.15 that requires any information burned in to the Pixel Data corresponding to the Attribute information specified to be removed by the Profile and any other Options specified also be removed.
113102Clean Recognizable Visual Features OptionAdditional de-identification according to an option defined in PS 3.15 that requires that sufficient removal or distortion of the Pixel Data shall be applied to prevent recognition of an individual from the instances themselves or a reconstruction of a set of instances.
113103Clean Graphics OptionAdditional de-identification according to an option defined in PS 3.15 that requires that any information encoded in graphics, text annotations or overlays corresponding to the Attribute information specified to be removed by the Profile and any other Options specified also be removed.
113104Clean Structured Content OptionAdditional de-identification according to an option defined in PS 3.15 that requires that any information encoded in SR Content Items or Acquisition Context Sequence Items corresponding to the Attribute information specified to be removed by the Profile and any other Options specified also be removed.
113105Clean Descriptors OptionAdditional de-identification according to an option defined in PS 3.15 that requires that any information that is embedded in text or string Attributes corresponding to the Attribute information specified to be removed by the Profile and any other Options specified also be removed.
113106Retain Longitudinal Temporal Information With Full Dates OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that any dates and times be retained,
113107Retain Longitudinal Temporal Information With Modified Dates OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that any dates and times be modified in a manner that preserves temporal relationships. E.g., Study Date and Time.
113108Retain Patient Characteristics OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that any physical characteristics of the patient, which are descriptive rather than identifying information per se, be retained. E.g., Patient’s Age, Sex, Size (height) and Weight.
113109Retain Device Identity OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that any information that identifies a device be retained. E.g., Device Serial Number.
113110Retain UIDs OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that UIDs be retained. E.g., SOP Instance UID.
113111Retain Safe Private OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that private attributes that are known not to contain identity information be retained. E.g., private SUV scale factor.
113601Small: < 32.0 cm lateral thicknessSmall body thickness for calcium scoring adjustment. Lateral thickness is measured from skin-to-skin, at the level of the proximal ascending aorta, from an A/P localizer image.
113602Medium: 32.0–38.0 cm lateral thicknessMedium body thickness for calcium scoring adjustment. Lateral thickness is measured from skin-to-skin, at the level of the proximal ascending aorta, from an A/P localizer image.
113603Large: > 38.0 cm lateral thicknessLarge body thickness for calcium scoring adjustment. Lateral thickness is measured from skin-to-skin, at the level of the proximal ascending aorta, from an A/P localizer image.
113611Stationary AcquisitionAcquisition where the X-Ray source does not move in relation to the patient
113612Stepping AcquisitionAcquisition where the X-Ray source moves laterally in relation to the patient
113613Rotational AcquisitionAcquisition where the X-Ray source moves angularly in relation to the patient
113620Plane APrimary plane of a Biplane acquisition equipment
113621Plane BSecondary plane of a Biplane acquisition equipment
113622Single PlaneSingle plane acquisition equipment
113630ContinuousContinuous X-Ray radiation is applied during an irradiation event
113631PulsedPulsed X-Ray radiation is applied during an irradiation event
113650Strip filterFilter with uniform thickness
113651Wedge filterFilter with variation in thickness from one edge to the opposite edge
113652Butterfly filterFilter with two triangular sections
113661Outline of lobulationsA polyline defining the outline of a lobulated finding
113662Inner limits of fuzzy marginA polyline defining the inner limits of a finding with fuzzy margin
113663Outer limits of fuzzy marginA polyline defining the outer limits of a finding with fuzzy margin
113664Outline of spiculationsA polyline defining the outline of the spiculations of a finding
113665Linear spiculationA polyline segment graphically indicating the location and direction of a spiculation of a finding
113666Pixelated spiculationsA collection of points indicating the pixel locations of the spiculations of a finding
113669Orthogonal location arcConnected line segments indicating the center of location of a finding on an orthogonal view
113670Orthogonal location arc inner marginConnected line segments indicating the inner margin of the location of a finding on an orthogonal view
113671Orthogonal location arc outer marginConnected line segments indicating the outer location of a finding on an orthogonal view
113681PhantomAn artificial subject of an imaging study.
113682ACR Accreditation Phantom - CTA phantom acceptable for the ACR Computed Tomography Accreditation program
113683ACR Accreditation Phantom - MRA phantom acceptable for the ACR Magnetic Resonance Imaging Accreditation program
113684ACR Accreditation Phantom - MammographyA phantom acceptable for the ACR Mammography Accreditation program
113685ACR Accreditation Phantom – Stereotactic Breast BiopsyA phantom acceptable for the ACR Stereotactic Breast Biopsy Accreditation program
113686ACR Accreditation Phantom - ECTA phantom acceptable for the ACR SPECT Accreditation program (but not for PET)
113687ACR Accreditation Phantom - PETA phantom acceptable for the ACR PET Accreditation program (but not for SPECT)
113688ACR Accreditation Phantom – ECT/PETA SPECT phantom with a PET faceplate acceptable for both the ACR SPECT and PET Accreditation programs
113689ACR Accreditation Phantom – PET FaceplateA PET faceplate (made to fit an existing flangeless or flanged ECT phantom) acceptable for the ACR PET Accreditation program
113690IEC Head Dosimetry PhantomA phantom used for CTDI measurement in head modes according to IEC 60601-2-44, Ed.2.1 (Head 16 cm diameter Polymethyl methacrylate PMMA)
113691IEC Body Dosimetry PhantomA phantom used for CTDI measurement in body modes according to IEC 60601-2-44, Ed.2.1 (Body 32cm diameter Polymethyl methacrylate PMMA)
113692NEMA XR21-2000 PhantomA phantom in accordance with NEMA standard XR-21-2000
113701X-Ray Radiation Dose ReportX-Ray Radiation Dose Report
113702Accumulated X-Ray Dose DataX-Ray dose data accumulated over multiple irradiation events, e.g., for a study or a performed procedure step
113704Projection X-RayImaging using a point X-Ray source with a diverging beam projected onto a 2 dimensional detector
113705Scope of AccumulationEntity over which dose accumulation values are integrated
113706Irradiation Event X-Ray DataX-Ray dose data for a single Irradiation Event
113710Niobium or Niobium compoundMaterial containing Niobium or a Niobium compound
113711Europium or Europium compoundMaterial containing Europium or a Europium compound
113721Irradiation Event TypeDenotes the type of irradiation event recorded
113722Dose Area Product TotalTotal calculated Dose Area Product (in the scope of the including report)
113723Calibration DateLast calibration Date for the integrated dose meter or dose calculation
113724Calibration Responsible PartyIndividual or organization responsible for calibration
113725Dose (RP) TotalTotal Dose related to Reference Point (RP). (in the scope of the including report)
113726Fluoro Dose Area Product TotalTotal calculated Dose Area Product applied in Fluoroscopy Modes (in the scope of the including report).
113727Acquisition Dose Area Product TotalTotal calculated Dose Area Product applied in Acquisition Modes (in the scope of the including report).
113728Fluoro Dose (RP) TotalDose applied in Fluoroscopy Modes, related to Reference Point (RP). (in the scope of the including report)
113729Acquisition Dose (RP) TotalDose applied in Acquisition Modes, related to Reference Point (RP). (in the scope of the including report)
113730Total Fluoro TimeTotal accumulated time of Fluoroscopy (in the scope of the including report)
113731Total Number of Radiographic FramesAccumulated Count of Frames (single or multi-frame) created from irradiation events performed with high dose (acquisition).
113732Fluoro ModeMode of application of X-Rays during Fluoroscopy
113733KVPApplied X-Ray Tube voltage at peak of X-Ray generation, in kilovolts; Mean value if measured over multiple peaks (pulses)
113734X-Ray Tube CurrentMean value of applied Tube Current
113735Exposure TimeCumulative time the patient has received X-Ray exposure during the irradiation event
113736ExposureMean value of X-Ray Current Time product
113737Distance Source to Reference PointDistance to the Reference Point (RP) defined according to IEC 60601-2-43 or equipment defined.
113738Dose (RP)Dose applied at the Reference Point (RP).
113739Positioner Primary End AnglePositioner Primary Angle at the end of an irradiation event. For further definition see (112011,DCM,”Positioner Primary Angle”)
113740Positioner Secondary End AnglePositioner Secondary Angle at the end of an irradiation event. For further definition see (112012,DCM,”Positioner Secondary Angle”)
113742Irradiation DurationClock time from the start of the first irradiation in the irradiation event until the end of the last irradiation in the same irradiation event. For continuous modes this the time the irradiation intensity is above a 50% threshold with respect to the maximum intensity achieved during an irradiation event.
113743Patient OrientationOrientation of the Patient with respect to Gravity
113744Patient Orientation ModifierEnhances or modifies the Patient orientation specified in Patient Orientation
113745Patient Table RelationshipOrientation of the Patient with respect to the Head of the Table
113748Distance Source to IsocenterDistance from the X-Ray Source to the Equipment C-Arm Isocenter.(Center of Rotation).
113750Distance Source to DetectorMeasured or calculated distance from the X-Ray source to the detector plane in the center of the beam.
113751Table Longitudinal PositionTable Longitudinal Position with respect to an arbitrary chosen reference by the equipment. Table motion towards LAO is positive assuming that the patient is positioned supine and its head is in normal position.
113752Table Lateral PositionTable Lateral Position with respect to an arbitrary chosen reference by the equipment. Table motion towards CRA is positive assuming that the patient is positioned supine and its head is in normal position.
113753Table Height PositionTable Height Position with respect to an arbitrary chosen reference by the equipment in (mm). Table motion downwards is positive
113754Table Head Tilt AngleAngle of the head-feet axis of the table in degrees relative to the horizontal plane. Positive values indicate that the head of the table is upwards.
113755Table Horizontal Rotation AngleRotation of the table in the horizontal plane (clockwise when looking from above the table).
113756Table Cradle Tilt AngleAngle of the left-right axis of the table in degrees relative to the horizontal plane. Positive values indicate that the left of the table is upwards.
113757X-Ray Filter MaterialX-Ray absorbing material used in the filter.
113758X-Ray Filter Thickness MinimumThe minimum thickness of the X-Ray absorbing material used in the filters.
113763Calibration UncertaintyUncertainty of the ‘actual’ value.
113764Acquisition PlaneIdentification of Acquisition Plane with Biplane systems.
113766Focal Spot SizeNominal Size of Focal Spot of X-Ray Tube
113767Average X-Ray Tube CurrentAverage X-Ray Tube Current averaged over time for pulse or for continuous Fluoroscopy
113768Number of PulsesNumber of pulses applied by X-Ray systems during an irradiation event (acquisition run or pulsed fluoro)
113769Irradiation Event UIDUnique identification of a single irradiation event
113770Column AngulationAngle of the X-Ray beam in degree relative to an orthogonal axis to the detector plane.
113771X-Ray FiltersDevices used to modify the energy or energy distribution of X-Rays
113772X-Ray Filter TypeType of filter(s) inserted into the X-Ray beam (e.g. wedges).
113773X-Ray Filter Thickness MaximumThe maximum thickness of the X-Ray absorbing material used in the filters.
113780Reference Point DefinitionSystem provided definition of the Reference Point used for Dose calculations.
113790Collimated Field AreaCollimated field area at image receptor. Area for compatibility with IEC 60601-2-43.
113791Pulse RatePulse rate applied by equipment during Fluoroscopy
113792Distance Source to Table PlaneMeasured or calculated distance from the X-Ray source to the table plane in the center of the beam.
113793Pulse Width(Average) X-Ray pulse width
113794Dose Measurement DeviceCalibrated device to perform dose measurements.
113795Acquired ImageImage acquired during a specified event.
113800DLP to E conversion via MC computationEffective Dose evaluation from the product of Dose Length Product (DLP) and the Effective Dose Conversion Factor (E/DLP in units of mSv/mGy-cm), where the ratio is derived by means of Monte Carlo computations.
113801CTDIfreeair to E conversion via MC computationEffective Dose evaluation from the product of the Mean CTDIfree air and the ratio E/CTDIfree air (mSv/mGy), where the ratio is derived by means of Monte Carlo computations
113802DLP to E conversion via measurementEffective Dose evaluation from the product of Dose Length Product (DLP) and the Effective Dose Conversion Factor (E/DLP in units of mSv/mGy-cm), where the ratio is derived by means of dosimetric measurements with an anthropomorphic phantom
113803CTDIfreeair to E conversion via measurementEffective Dose evaluation from the product of the Mean CTDIfree air and the ratio E/CTDIfree air (mSv/mGy), where the ratio is derived by means of dosimetric measurements with an anthropomorphic phantom
113804Sequenced AcquisitionThe CT acquisition was performed by acquiring single or multi detector data while rotating the source about the gantry while the table is not moving. Additional slices are acquired by incrementing the table position and again rotating the source about the gantry while the table is not moving.
113805Constant Angle AcquisitionThe CT acquisition was performed by holding the source at a constant angle and moving the table to obtain a projection image (e.g. localizer).
113806Stationary AcquisitionThe CT acquisition was performed by holding the table at a constant position and acquiring multiple slices over time at the same location.
113807Free AcquisitionThe CT acquisition was performed while rotating the source about the gantry while the table movement is under direct control of a human operator or under the control of an analysis application (e.g. fluoro).
113808ICRP Pub 60Reference authority 1990 Recommendations of the International Commission on Radiological Protection (ICRP Publication 60, published as the Annals of the ICRP Vol. 21, No. 1-3, Pergamon Press, 1991)
113809Start of X-Ray IrradiationStart, DateTime of the first X-Ray Irradiation Event of the accumulation within a Study
113810End of X-Ray IrradiationEnd, DateTime of the last X-Ray Irradiation Event of the accumulation within a Study
113811CT Accumulated Dose DataX-Ray dose accumulated over multiple CT irradiation events, e.g., for a study or a performed procedure step.
113812Total Number of Irradiation EventsTotal number of events during the defined scope of accumulation
113813CT Dose Length Product TotalThe total dose length product defined scope of accumulation
113814CT Effective Dose TotalThe total Effective Dose at the defined scope of accumulation
113815Patient ModelIdentification of the reference-patient model used when Effective Dose is evaluated via Monte Carlo calculations or from a Dose Length Product conversion factor based on Monte Carlo calculations
113816Condition Effective Dose measuredReferences the physical phantom and the type of dosimeter used when measurements are done to establish Effective Dose Conversion Factors (E/DLP) or ratios E/CTDIfree air
113817Effective Dose Phantom TypeType of Effective Dose phantom used
113818Dosimeter TypeType of dosimeter used
113819CT AcquisitionGeneral description of the CT Irradiation event
113820CT Acquisition TypeMethod of the CT acquisition
113821X-Ray Filter Aluminum EquivalentThickness of an equivalent filter in mm in Aluminum
113822CT Acquisition ParametersGeneral description of the acquisition parameters
113823Number of X-Ray SourcesNumber of X-Ray sources
113824Exposure TimeTotal time the patient has received X-Ray exposure during the irradiation event
113825Scanning LengthLength of the table travel during the entire tube loading, according to IEC 60601-2-44 NOTE: Scanning Length might be longer than the programmed acquisition length (Length of Reconstructable Volume)
113826Nominal Single Collimation WidthThe value of the nominal width referenced to the location of the isocenter along the z axis of a single row of acquired data in mm
113827Nominal Total Collimation WidthThe value of the nominal width referenced to the location of the isocenter along the z axis of the total collimation in mm over the area of active X-Ray detection
113828Pitch FactorFor Spiral scanning: Pitch Factor = (Table Feed per Rotation (mm))/(Nominal Total Collimation Width (mm)) For Sequenced scanning: Pitch Factor = (Table Feed per single Sequenced scan (mm))/(Nominal Total Collimation Width (mm))
113829CT DoseGeneral description of CT dose values
113830Mean CTDIvol“Mean CTDIvol” refers to the average value of the CTDIvol associated with this acquisition.
113831CT X-Ray Source ParametersIdentification, tube-potential, tube-current, and exposure-time parameters associated with an X-Ray source during an acquisition.
113832Identification of the X-Ray SourceIdentifies the particular X-Ray source (in a multi-source CT system) for which the set of X-Ray source parameter values is reported.
113833Maximum X-Ray Tube CurrentMaximum X-Ray tube current
113834Exposure Time per RotationThe exposure time for one rotation of the source around the object in s
113835CTDIw Phantom TypeA label describing the type of phantom used for CTDIW measurement according to IEC 60601-2-44 (Head 16 cm diameter PMMA, Body 32 cm diameter PMMA)
113836CTDIfreeair Calculation FactorThe CTDIfree air Calculation Factor is the CTDIfree air per mAs, expressed in units of mGy/mAs. The CTDIfree air Calculation Factor may be used in one method calculating Dose.
113837Mean CTDIfreeairThe average value of the free-in-air CTDI associated with this acquisition.
113838DLPDose Length Product (DLP), expressed in mGy-cm, is an index characterizing the product of the CTDIvol and the length scanned. For Spiral scanning, DLP = CTDIvol ´ Scanning Length. For Sequenced scanning, DLP = CTDIvol ´ Nominal Total Collimation Width ´ Cumulative Exposure Time / Exposure Time per Rotation. For Stationary and Free scanning, DLP = CTDIvol ´ Nominal Total Collimation Width.
113839Effective DoseEffective dose in mSv
113840Effective Dose Conversion FactorEffective Dose per DLP, reference value for Effective Dose calculation, expressed in mSv/mGycm
113841ICRP Pub 103Effective Dose Reference authority 2007 Recommendations of the International Commission on Radiological Protection (ICRP Publication 103, published as the Annals of the ICRP Vol. 37, No. 2-4, Elsevier, 2007)
113842X-Ray Modulation TypeThe type of exposure modulation used for the purpose of limiting the dose.
113845Exposure IndexMeasure of the detector response to radiation in the relevant image region of an image acquired with a digital x-ray imaging system as defined in IEC 62494-1; see PS 3.3 definition of Exposure Index Macro.
113846Target Exposure IndexThe target value used to calculate the Deviation Index as defined in IEC 62494-1; see PS 3.3 definition of Exposure Index Macro.
113847Deviation IndexA scaled representation of the accuracy of the Exposure Index compared to the Target Exposure Index as defined in IEC 62494-1; see PS 3.3 definition of Exposure Index Macro.
113850Irradiation AuthorizingThe clinician responsible for determining that the irradiating procedure was ap propriate for the indications
113851Irradiation AdministeringThe person responsible for the administration of radiation
113852Irradiation EventAn irradiation event is the occurrence of radiation being applied to a patient in a single continuous time-frame between the start (release) and the stop (cease) of the irradiation. Any automatic on-off switching of the irradiation source during the event is not treated as separate events, rather the event includes the time between start and stop of irradiation as triggered by the user. E.g., a pulsed fluoro X-Ray acquisition shall be treated as a single irradiation event.
113853Irradiation Event UIDUnique Identifier of an Irradiation Event
113854Source of Dose InformationMethod by which dose-related details of an Irradiation Event were obtained.
113855Total Acquisition TimeTotal accumulated acquisition time (in the scope of the including report)
113856Automated Data CollectionDirect recording of data by a relevant system
113857Manual EntryRecording of data by a human operator, including manual transcription of electronic data
113858MPPS ContentThe data is taken from an MPPS SOP Instance
113859Irradiating DeviceA device exposing a patient to ionizing radiation.
11386015cm from Isocenter toward Source15cm from the isocenter towards the X-Ray source; See IEC 60601-2-43
11386130cm in Front of Image Input Surface30cm in front (towards the tube) of the input surface of the image receptor; See FDA Federal Performance Standard for Diagnostic X-Ray Systems §1020.32(d)(7)
1138621cm above Tabletop1cm above the patient tabletop or cradle; See FDA Federal Performance Standard for Diagnostic X-Ray Systems §1020.32(d)(7)
11386330cm above Tabletop30cm above the patient tabletop of cradle; See FDA Federal Performance Standard for Diagnostic X-Ray Systems §1020.32(d)(7)
11386415cm from Table Centerline15cm from the centerline of the X-Ray table and in the direction of the X-Ray source; See FDA Federal Performance Standard for Diagnostic X-Ray Systems §1020.32(d)(7)
113865Entrance exposure to a 4.2 cm breast thicknessStandard breast means a 4.2 centimeter (cm) thick compressed breast consisting of 50 percent glandular and 50 percent adipose tissue. See Department of Health and Human Services, Food and Drug Administration. Mammography quality standards; final rule. Federal Register. Oct. 28, 1997; 68(208):55852–55994. See 900.2(uu)
113866Copied From Image AttributesThe data is copied from information present in the image attributes, e.g., dose attributes such as CTDIvol (0018,9345)
113867Computed From Image AttributesThe data is computed from information present in the image attributes, e.g., by using dosimetry information for the specific irradiating device make and model, applied to technique information such as KVP and mAs
113868Derived From Human-Readable ReportsThe data is derived from human-readable reports, e.g., by natural language parsing of text reports, or optical character recognition from reports saved as images by the irradiating device
113870Person NameThe name of a specific person
113871Person IDAn identification number or code for a specific person
113872Person ID IssuerThe organization which issued a Person ID
113873Organization NameThe name of an organization
113874Person Role in OrganizationThe role played by a person in an organization
113875Person Role in ProcedureThe role played by a person in a procedure
113876Device Role in ProcedureThe role played by a device in a procedure
113877Device NameThe name used to refer to a device; usually locally unique
113878Device ManufacturerManufacturer of a device
113879Device Model NameModel Name of a device
113880Device Serial NumberSerial Number of a device
113890All PlanesAll planes of a multi-plane acquisition equipment
113893Length of Reconstructable VolumeThe length from which images may be reconstructed (i.e., excluding any overranging performed in a spiral acquisition that is required for data interpolation). Value is distinct from (1113825, DCM,”Scanning Length”), which is the actual length of the table travel during the entire tube loading, according to IEC 60601-2-44, and includes overranging. Also distinct from any actual Reconstructed Volume, which may depend on the slice thickness chosen for a particular reconstruction.
113895Top Z Location of Reconstructable VolumeThe Z location that is the top (highest Z value) of the Reconstructable Volume. Specified as the Z component within the Patient Coordinate System defined by a specified Frame of Reference.
113896Bottom Z Location of Reconstructable VolumeThe Z location that is the bottom (lowest Z value) of the Reconstructable Volume. Specified as the Z component within the Patient Coordinate System defined by a specified Frame of Reference.
113897Top Z Location of Scanning LengthThe Z location that is the top (highest Z value) of the scanning length. Specified as the Z component within the Patient Coordinate System defined by a specified Frame of Reference.
113898Bottom Z Location of Scanning LengthThe Z location that is the bottom (lowest Z value) of the scanning length. Specified as the Z component within the Patient Coordinate System defined by a specified Frame of Reference.
113899Exposed RangeThe range along the z axis of the total volume irradiated, per IEC 60601-2-44, Ed. 3, 203.115(b). The start and stop of loading corresponding to the outer edge of the full width half maximum of the free-in-air dose profile for the beam collimation used.
114000Not a numberMeasurement not available: Not a number (per IEEE 754)
114001Negative InfinityMeasurement not available: Negative Infinity (per IEEE 754)
114002Positive InfinityMeasurement not available: Positive Infinity (per IEEE 754)
114003Divide by zeroMeasurement not available: Divide by zero (per IEEE 754)
114004UnderflowMeasurement not available: Underflow (per IEEE 754)
114005OverflowMeasurement not available: Overflow (per IEEE 754)
114006Measurement failureMeasurement not available: Measurement failure
114007Measurement not attemptedMeasurement not available: Measurement not attempted
114008Calculation failureMeasurement not available: Calculation failure
114009Value out of rangeMeasurement not available: Value out of range
114010Value unknownMeasurement not available: Value unknown
114011Value indeterminateMeasurement not available: Value indeterminate
121001Quotation ModeType of source for observations quoted from an external source
121002Quoted SourceReference to external source of quoted observations
121003DocumentDocumentary source of quoted observations
121004VerbalVerbal source of quoted observations
121005Observer TypeType of observer that created the observations
121006PersonHuman observer created the observations
121007DeviceAutomated device created the observations
121008Person Observer NameName of human observer that created the observations
121009Person Observer’s Organization NameOrganization or institution with which the human observer is affiliated for the context of the current observation
121010Person Observer’s Role in the OrganizationOrganizational role of human observer for the context of the current observation
121011Person Observer’s Role in this ProcedureProcedural role of human observer for the context of the current observation
121012Device Observer UIDUnique identifier of automated device that created the observations
121013Device Observer NameInstitution-provided identifier of automated device that created the observations
121014Device Observer ManufacturerManufacturer of automated device that created the observations
121015Device Observer Model NameManufacturer-provided model name of automated device that created the observations
121016Device Observer Serial NumberManufacturer-provided serial number of automated device that created the observations
121017Device Observer Physical Location During ObservationLocation of automated device that created the observations whilst the observations were being made.
121018Procedure Study Instance UIDUnique identifier for the Study or Requested Procedure
121019Procedure Study Component UIDUnique identifier for the Performed Procedure Step
121020Placer NumberIdentifier for the Order (or Service Request) assigned by the order placer system
121021Filler NumberIdentifier for the Order (or Service Request) assigned by the order filler system
121022Accession NumberIdentifier for the Order (or Service Request) assigned by the department information system
121023Procedure CodeType of procedure scheduled or performed
121024Subject ClassType of observation subject
121025PatientA patient is the subject of observations
121026FetusFetus of patient is the subject of observations
121027SpecimenSpecimen is the subject of observations
121028Subject UIDUnique Identifier of patient or fetus who is the subject of observations
121029Subject NameName of patient who is the subject of observations
121030Subject IDIdentifier of patient or fetus who is the subject of observations
121031Subject Birth DateBirth Date of patient who is the subject of observations
121032Subject SexSex of patient who is the subject of observations
121033Subject AgeAge of patient who is the subject of observations
121034Subject SpeciesSpecies of patient who is the subject of observations
121035Subject BreedThe breed of the subject
121036Mother of fetusName of mother of fetus which is the subject of observations
121037Fetus number
121038Number of Fetuses
121039Specimen UIDUnique Identifier of specimen which is the subject of observations
121040Specimen Accession NumberAccession Number of specimen which is the subject of observations
121041Specimen IdentifierIdentifier of specimen which is the subject of observations
121042Specimen TypeCoded category of specimen which is the subject of observations
121043Slide IdentifierIdentifier of specimen microscope slide which is the subject of observations
121044Slide UIDUnique Identifier of specimen microscope slide which is the subject of observations
121045Language
121046Country of Language
121047Language of Value
121048Language of Name and Value
121049Language of Content Item and Descendants
121050Equivalent Meaning of Concept Name
121051Equivalent Meaning of Value
121052Presence of property
121053Present
121054Absent
121055PathA set of points on an image, that when connected by line segments, provide a polyline from which a linear measurement was inferred
121056Area outlineA set of points on an image, that when connected by line segments, provide a closed polyline that is the border of a defined region from which an area, or two-dimensional measurement, was inferred
121057Perimeter outlineA set of points on an image, that when connected by line segments, provide a closed polyline that is a two-dimensional border of a three-dimensional region’s intersection with, or projection into the image
121058Procedure reported
121059Presence UndeterminedPresence or absence of a property is undetermined
121060History
121062Request
121064Current Procedure Descriptions
121065Procedure Description
121066Prior Procedure Descriptions
121068Previous Findings
121069Previous Finding
121070Findings
121071Finding
121072Impressions
121073Impression
121074Recommendations
121075Recommendation
121076Conclusions
121077Conclusion
121078Addendum
121079Baseline
121080Best illustration of finding
121081Physician
121082Nurse
121083Technologist
121084Radiographer
121085Intern
121086Resident
121087Registrar
121088Fellow
121089Attending [Consultant]
121090Scrub nurse
121091Surgeon
121092Sonologist
121093Sonographer
121094Performing
121095Referring
121096Requesting
121097Recording
121098Verifying
121099Assisting
121100Circulating
121101Standby
121102Other sexOther sex
121103Undetermined sexSex of subject undetermined at time of encoding
121104Ambiguous sexAmbiguous sex
121105Radiation PhysicistRadiation Physicist
121106CommentComment
121109Indications for ProcedureIndications for Procedure
121110Patient PresentationPatient condition at the beginning of a healthcare encounter
121111SummarySummary of a procedure, including most significant findings
121112Source of measurementImage or waveform used as source for measurement
121113ComplicationsComplications from a procedure
121114Performing PhysicianPhysician who performed a procedure
121115Discharge SummarySummary of patient condition upon Discharge from a healthcare facility
121116Proximal Finding SiteProximal Anatomic Location for a differential measurement (e.g., distance or pressure gradient); may be considered subtype of term (G-C0E3, SRT, “Finding Site”)
121117Distal Finding SiteDistal Anatomic Location for a differential measurement (e.g., distance or pressure gradient); may be considered subtype of term (G-C0E3, SRT, “Finding Site”)
121118Patient CharacteristicsPatient Characteristics (findings)
121120Cath Lab Procedure LogTime-stamped record of events that occur during a catheterization procedure
121121Room identificationRoom identification
121122Equipment identificationEquipment identification
121123Patient Status or EventA recorded Patient Status or an event involving a patient
121124Procedure Action Item IDIdentification of a step, action, or phase of a procedure
121125DateTime of Recording of Log EntryDateTime of Recording of an Entry in an Event Log
121126Performed Procedure Step SOP Instance UIDSOP Instance UID of a DICOM Modality Performed Procedure Step (MPPS) or General Purpose Performed Procedure Step (GPPPS)
121127Performed Procedure Step SOP Class UIDSOP Class UID for a DICOM Modality Performed Procedure Step (MPPS) or General Purpose Performed Procedure Step (GPPPS) Service
121128Procedure Action DurationDuration of a step, action, or phase of a procedure
121130Start Procedure Action ItemBeginning of a step, action, or phase of a procedure
121131End Procedure Action ItemEnd of a step, action, or phase of a procedure
121132Suspend Procedure Action ItemSuspension of a step, action, or phase of a procedure
121133Resume Procedure Action ItemResumption of a step, action, or phase of a procedure
121135Observation DateTime QualifierConcept modifier for the DateTime of Recording of an Entry in an Event Log
121136DateTime UnsynchronizedRecorded DateTime had its source in a system clock not synchronized to other recorded DateTimes
121137DateTime EstimatedRecorded DateTime is estimated
121138Image AcquiredEvent of the acquisition of an image
121139ModalityType of data acquisition device
121140Number of FramesNumber of Frames in a multi-frame image
121141Image TypeDescriptor of an Image
121142Acquisition DurationDuration of the acquisition of an image or a waveform
121143Waveform AcquiredEvent of the acquisition of an image
121144Document TitleDocument Title
121145Description of MaterialDescription of Material used in a procedure
121146Quantity of MaterialQuantity of Material used in a procedure
121147Billing CodeBilling Code for materials used in a procedure
121148Unit Serial IdentifierUnit or Device Serial Identifier
121149Lot IdentifierLot Identifier
121150Device CodeVendor or local coded value identifying a device
121151Lesion IdentifierIdentification of a Lesion observed during an imaging procedure
121152Person administering drug/contrastPerson administering drug/contrast
121153Lesion RiskAssessment of the risk a coronary lesion presents to the health of a patient
121154Intervention attempt identifierIdentifier for an attempted Intervention
121155DeploymentUse of a device to deploy another device
121156Percutaneous Entry ActionAction of a clinical professional at the site of percutaneous access to a patient’s cardiovascular system
121157Begin Circulatory SupportThe action or event of beginning circulatory support for a patient
121158End Circulatory SupportThe action or event of ending circulatory support for a patient
121160Oxygen Administration RateRate of Oxygen Administration
121161Begin Oxygen AdministrationThe action or event of beginning administration of oxygen to a patient
121162End oxygen administrationThe action or event of ending administration of oxygen to a patient
121163By ventilatorMethod of administration of oxygen to a patient by ventilator
121165Patient Assessment PerformedThe action or event of assessing the clinical status of a patient
121166Begin PacingThe action or event of beginning pacing support for a patient
121167End PacingThe action or event of ending pacing support for a patient
121168Begin VentilationThe action or event of beginning ventilation support for a patient
121169End VentilationThe action or event of ending ventilation support for a patient
121171Tech NoteProcedural note originated by a technologist
121172Nursing NoteProcedural note originated by a nurse
121173Physician NoteProcedural note originated by a Physician
121174Procedure NoteGeneral procedural note
121180Key ImagesList of references to images considered significant
121181DICOM Object CatalogList of references to DICOM SOP Instances
121192Device SubjectA device is the subject of observations
121193Device Subject NameName or other identifier of a device that is the subject of observations
121194Device Subject ManufacturerManufacturer of a device that is the subject of observations
121195Device Subject Model NameModel Name of a device that is the subject of observations
121196Device Subject Serial NumberSerial Number of a device that is the subject of observations
121197Device Subject Physical Location during observationPhysical Location of a device that is the subject of observations during those observations
121198Device Subject UIDUnique Identifier of a device that is the subject of observations
121200Illustration of ROIIllustration of a region of interest
121201Area Outline
121202Area of Defined Region
121206DistanceA one dimensional, or linear, numeric measurement
121207HeightVertical measurement value
121208Inter-Marker DistanceDistance between marks on a device of calibrated size (e.g., a ruler)
121210Path
121211Path lengthA one dimensional, or linear, numeric measurement along a polyline
121213Perimeter Outline
121214Referenced Segmentation FrameFrame selected from a segmentation image, specifically the pixels/voxels identified as belonging to the classification of the segment encompassing the identified frame
121216Volume estimated from single 2D regionA three-dimensional numeric measurement that is approximate, based on a two-dimensional region in a single image
121217Volume estimated from three or more non-coplanar 2D regionsA three-dimensional numeric measurement that is approximate, based on three or more non-coplanar two-dimensional image regions
121218Volume estimated from two non-coplanar 2D regionsA three-dimensional numeric measurement that is approximate, based on two non-coplanar two-dimensional image regions
121219Volume of bounding three dimensional regionA three-dimensional numeric measurement of the bounding region of a three-dimensional region of interest in an image set
121220Volume of circumscribed sphereA three-dimensional numeric measurement of the bounding sphere of a three-dimensional region of interest in an image set
121221Volume of ellipsoidA three-dimensional numeric measurement of an ellipsoid shaped three-dimensional region of interest in an image set
121222Volume of sphereA three-dimensional numeric measurement of a sphere shaped three-dimensional region of interest in an image set
121230Path VertexCoordinates of a point on a defined path
121242Distance from nippleIndicates the location of the area of interest as measured from the nipple of the breast.
121243Distance from skinIndicates the location of the area of interest as measured from the most direct skin point of the breast.
121244Distance from chest wallIndicates the location of the area of interest as measured from the chest wall.
121301Simultaneous Doppler
121302Simultaneous Hemodynamic
121303Simultaneous ECG
121304Simultaneous Voice Narrative
121305Simultaneous Respiratory WaveformA waveform representing chest expansion and contraction due to respiratory activity, measured simultaneously with the acquisition of this Image.
121306Simultaneous Arterial Pulse WaveformArterial pulse waveform obtained simultaneously with acquisition of a referencing image
121307Simultaneous Phonocardiographic WaveformPhonocardiographic waveform obtained simultaneously with acquisition of a referencing image
121311LocalizerImage providing an anatomical reference on the patient under examination, for the purpose of defining the location of the ensuing imaging.
121312Biopsy localizerImage providing an anatomical reference on the patient under examination, for the purpose of planning or documenting a biopsy.
121313Other partial viewsImage providing a partial view of the target anatomy, when the target anatomy is too large for a single image.
121314Other image of biplane pairImage providing a view of the target anatomy in a different imaging plane, typically from a near perpendicular angle
121315Other image of stereoscopic pairImage providing a view of the target anatomy in a different imaging plane, typically with a small anglular difference
121316Images related to standalone objectImage related to a non-image information object
121317SpectroscopyImage where signals are identified and separated according to their frequencies, e.g., to identify individual chemicals, or individual nuclei in a chemical compound.
121320Uncompressed predecessorAn image that has not already been lossy compressed that is used as the source for creation of a lossy compressed image
121321Mask image for image processing operationImage used as the mask for an image processing operation, such as subtraction
121322Source image for image processing operationImage used as the source for an image processing operation
121324Source ImageImage used as the source for a derived or compressed image
121325Lossy compressed imageImage encoded with a lossy compression transfer syntax
121326Alternate SOP Class instanceSOP Instance encoded with a different SOP Class but otherwise equivalent data
121327Full fidelity imageFull fidelity image, uncompressed or lossless compressed
121328Alternate Photometric Interpretation imageImage encoded with a different photometric interpretation
121329Source image for montageImage used as a source for a montage (stitched) image
121330Lossy compressed predecessorAn image that has previously been lossy compressed that is used as the source for creation of another lossy compressed image
121331Equivalent CDA DocumentHL7 Document Architecture (CDA) Document that contains clinical content equivalent to the referencing Instance
121332Complete Rendering for PresentationInstance that contains a displayable complete rendering of the referencing Instance
121333Partial Rendering for PresentationInstance that contains a displayable partial rendering of the referencing Instance
121334Extended Rendering for PresentationInstance that contains a displayable complete rendering of the referencing Instance, plus additional content such as inline rendering of referenced images
121335Source DocumentDocument whose content has been wholly or partially transformed to create the referencing document
121338Anatomic imageImage showing structural anatomic features
121339Functional imageImage showing physical or chemical activity
121340Spectral filtered imageImage providing the same view of the target anatomy acquired using only a specific imaging wavelength, frequency or energy
121341Device localizerImage providing an anatomical reference on the patient under examination, for the purpose of documenting the location of device such as a diagnostic or therapeutic catheter.
121342Dose ImageImage providing a graphic view of the distribution of radiation dose
121346Acquisition frames corresponding to volumeThe referenced image is the source of spatially-related frames from which the referencing 3D volume dataset was derived
121347Volume corresponding to spatially-related acquisition frames3D Volume containing the spatially-related frames in the referencing instance
121348Temporal PredecessorInstance acquired prior to the referencing instance in a set of consecutively acquired instances
121349Temporal SuccessorInstance acquired subsequent to the referencing instance in a set of consecutively acquired instances
121350Same acquisition at lower resolutionImage of the same target area at lower resolution acquired in the same acquisition process
121351Same acquisition at higher resolutionImage of the same target area at higher resolution acquired in the same acquisition process
121352Same acquisition at different focal depthImage of the same target area at different focal depth (Z-plane) acquired in the same acquisition process
121353Same acquisition at different spectral bandImage of the same target area at different spectral band acquired in the same acquisition process
121354Imaged container labelImage specifically targeting the container label
121358For Processing predecessorSource image from which FOR PRESENTATION images were created.
121360Replaced reportThe reference is to a predecessor report that has been replaced by the current report
121361Addended reportThe reference is to a predecessor report to which the current report provides and addendum
121362Preliminary reportA report that precedes the final report and may contain only limited information; it may be time sensitive, and it is not expected to contain all the reportable findings
121363Partial reportA report that is not complete.
121380Active Ingredient Undiluted ConcentrationConcentration of the chemically or physically interesting (active) ingredient of a drug or contrast agent as delivered in product form from the manufacturer, typically in mg/ml.
121381Contrast/Bolus Ingredient OpaqueX-Ray absorption of the active ingredient of a contrast agent ingredient is greater than the absorption of water (tissue).
121382Quantity administeredNumber of units of substance (e.g., tablets) administered to a patient
121383Mass administeredMass of substance administered to a patient
121401DerivationMethod of deriving or calculating a measured value (e.g., mean, or maximum of set)
121402NormalityAssessment of a measurement relative to a normal range of values; may be considered subtype of term (G-C0F2, SRT, “has interpretation”)
121403Level of SignificanceSignificance of a measurement
121404Selection StatusStatus of selection of a measurement for further processing or use
121405Population descriptionDescription of a population of measurements
121406Reference AuthorityBibliographic or clinical reference for a Description of a population of measurements
121407Normal Range descriptionDescription of a normal range of values for a measurement concept
121408Normal Range AuthorityBibliographic or clinical reference for a Description of a normal range of values
121410User chosen valueObservation value selected by user for further processing or use, or as most representative
121411Most recent value chosenObservation value is the recently obtained, and has been selected for further processing or use
121412Mean value chosenObservation value is the mean of several measurements, and has been selected for further processing or use
121414Standard deviation of populationStandard deviation of a measurement in a reference population
121415Percentile Ranking of measurementPercentile Ranking of an observation value with respect a reference population
121416Z-Score of measurementZ-score of an observation value with respect a reference population, expressed as the dimensionless quantity (x-m)/s, where (x-m) is the deviation of the observation value (x) from the population mean (m), and s is the standard deviation of the population.
1214172 Sigma deviation of population2 Sigma deviation of a measurement in a reference population
121420EquationFormula used to compute a derived measurement
121421Equation CitationBibliographic reference to a formula used to compute a derived measurement; reference may be to a specific equation in a journal article
121422Table of Values CitationBibliographic reference to a Table of Values used to look up a derived measurement
121423Method CitationBibliographic reference to a method used to compute a derived measurement
121424Table of ValuesA Table of Values used to look up a derived measurement
121425IndexFactor (divisor or multiplicand) for normalizing a measurement; e.g., body surface area used for normalizing hemodynamic measurements
121427EstimatedMeasurement obtained by observer estimation, rather than with a measurement tool or by calculation
121428CalculatedMeasurement obtained by calculation
121430ConcernIdentified issue about a state or process that has the potential to require intervention or management
121431DateTime Concern NotedDateTime concern noted (noted by whom is determined by context of use)
121432DateTime Concern ResolvedDateTime the concern was resolved
121433DateTime Problem ResolvedDateTime the problem was resolved
121434Service Delivery LocationPlace at which healthcare services may be provided
121435Service PerformerIdentification of a healthcare provider who performed a healthcare service; may be either a person or an organization
121436Medical Device UsedType or identifier of a medical device used on, in, or by a patient
121437Pharmacologic and exercise stress testCardiac stress test using pharmacologic and exercise stressors
121438Paced stress testCardiac stress test using an implanted or external cardiac pacing device
121439Correction of congenital cardiovascular deformityProcedure for correction of congenital cardiovascular deformity
121701RT Patient SetupProcess of placing patient in the anticipated treatment position, including specification and location of positioning aids, and other treatment delivery accessories
121702RT Patient Position Acquisition, single plane MVAcquisition of patient positioning information prior to treatment delivery, using single-plane megavoltage imaging
121703RT Patient Position Acquisition, dual plane MVAcquisition of patient positioning information prior to treatment delivery, using dual-plane megavoltage imaging
121704RT Patient Position Acquisition, single plane kVAcquisition of patient positioning information prior to treatment delivery, using single-plane kilovoltage imaging
121705RT Patient Position Acquisition, dual plane kVAcquisition of patient positioning information prior to treatment delivery, using dual-plane kilovoltage imaging
121706RT Patient Position Acquisition, dual plane kV/MVAcquisition of patient positioning information prior to treatment delivery, using dual-plane combination kilovoltage and megavoltage imaging
121707RT Patient Position Acquisition, CT kVAcquisition of patient positioning information prior to treatment delivery, using kilovoltage CT imaging
121708RT Patient Position Acquisition, CT MVAcquisition of patient positioning information prior to treatment delivery, using megavoltage CT imaging
121709RT Patient Position Acquisition, OpticalAcquisition of patient positioning information prior to treatment delivery, using optical imaging
121710RT Patient Position Acquisition, UltrasoundAcquisition of patient positioning information prior to treatment delivery, using ultrasound imaging
121711RT Patient Position Acquisition, Spatial FiducialsAcquisition of patient positioning information prior to treatment delivery, using spatial fiducials
121712RT Patient Position Registration, single planeRegistration of intended and actual patient position prior to treatment delivery, using single-plane images
121713RT Patient Position Registration, dual planeRegistration of intended and actual patient position prior to treatment delivery, using dual-plane images
121714RT Patient Position Registration, 3D CT generalRegistration of intended and actual patient position prior to treatment delivery, using 3D CT images and an unspecified registration approach
121715RT Patient Position Registration, 3D CT marker-basedRegistration of intended and actual patient position prior to treatment delivery, using 3D CT images and a marker-based registration approach
121716RT Patient Position Registration, 3D CT volume-basedRegistration of intended and actual patient position prior to treatment delivery, using 3D CT images and a volume-based registration approach
121717RT Patient Position Registration, 3D on 2D referenceRegistration of intended and actual patient position prior to treatment delivery, using 3D verification images and 2D reference images
121718RT Patient Position Registration, 2D on 3D referenceRegistration of intended and actual patient position prior to treatment delivery, using 2D verification images and 3D reference images
121719RT Patient Position Registration, OpticalRegistration of intended and actual patient position prior to treatment delivery, using optical images
121720RT Patient Position Registration, UltrasoundRegistration of intended and actual patient position prior to treatment delivery, using ultrasound images
121721RT Patient Position Registration, Spatial FiducialsRegistration of intended and actual patient position prior to treatment delivery, using spatial fiducials
121722RT Patient Position AdjustmentAdjustment of patient position such that the patient is correctly positioned for treatment.
121723RT Patient Position In-treatment-session ReviewReview of patient positioning information in the process of delivering a treatment session
121724RT Treatment Simulation with Internal VerificationSimulated radiotherapy treatment delivery using verification integral to the Treatment Delivery System
121725RT Treatment Simulation with External VerificationSimulated radiotherapy treatment delivery using verification by a external Machine Parameter Verifier
121726RT Treatment with Internal VerificationRadiotherapy treatment delivery using verification integral to the Treatment Delivery System
121727RT Treatment with External VerificationRadiotherapy treatment delivery using verification by a external Machine Parameter Verifier
121728RT Treatment QA with Internal VerificationQuality assurance of a radiotherapy treatment delivery using verification integral to the Treatment Delivery System
121729RT Treatment QA with External VerificationQuality assurance of a radiotherapy treatment delivery using verification by a external Machine Parameter Verifier
121730RT Machine QAQuality assurance of a Treatment Delivery Device
122001Patient called to procedure roomPatient called to procedure room
122002Patient admitted to procedure roomPatient admitted to procedure room
122003Patient given pre-procedure instructionPatient given pre-procedure instruction
122004Patient informed consent givenPatient informed consent given
122005Patient advance directive givenPatient advance directive given
122006Nil Per Os (NPO) status confirmedNil Per Os (NPO) status confirmed
122007Patient assisted to tablePatient assisted to table
122008Patient prepped and drapedPatient prepped and draped
122009Patient connected to continuous monitoringPatient connected to continuous monitoring
122010Patient transferred to holding areaPatient transferred to holding area
122011Patient transferred to surgeryPatient transferred to surgery
122012Patient transferred to CCUPatient transferred to CCU
122020Patient disorientedPatient disoriented
122021Patient reports nauseaPatient reports nausea
122022Patient reports discomfortPatient reports discomfort
122023Patient reports chest painPatient reports chest pain
122024Patient reports no painPatient reports no pain
122025Patient alertPatient alert
122026Patient restlessPatient restless
122027Patient sedatedPatient sedated
122028Patient asleepPatient asleep
122029Patient unresponsivePatient unresponsive
122030Patient has respiratory difficultyPatient has respiratory difficulty
122031Patient coughedPatient coughed
122032Patient disconnected from continuous monitoringPatient disconnected from continuous monitoring
122033Hemostasis achievedHemostasis achieved
122034Hemostasis not achieved – oozingHemostasis not achieved – oozing
122035Hemostasis not achieved – actively bleedingHemostasis not achieved – actively bleeding
122036Patient given post-procedure instructionPatient given post-procedure instruction
122037Patient discharged from departmentPatient discharged from department or laboratory
122038Patient pronounced deadPatient pronounced dead
122039Patient transferred to morguePatient transferred to morgue
122041Personnel ArrivedIdentified personnel or staff arrived in procedure room
122042Personnel DepartedIdentified personnel or staff departed procedure room
122043Page Sent ToPage sent to identified personnel or staff
122044Consultation WithConsultation with identified personnel or staff
122045Office calledOffice of identified personnel or staff was called
122046Equipment failureEquipment failure
122047Equipment brought to procedure roomEquipment brought to procedure room
122048Equipment readyEquipment ready for procedure
122049Equipment removedEquipment removed from procedure room
122052BioptomeDevice for obtaining biopsy sample
122053Valvular InterventionValvular Intervention
122054Aortic InterventionAortic Intervention
122055Septal Defect InterventionSeptal Defect Intervention
122056Vascular InterventionVascular Intervention
122057Myocardial biopsyMyocardial biopsy
122058Arterial conduit angiographyArterial conduit angiography
122059Single plane AngiographySingle plane Angiography
122060Bi-plane AngiographyBi-plane Angiography
122061Percutaneous Coronary InterventionPercutaneous Coronary Intervention
12206215-Lead ECG15-Lead electrocardiography
122072Pre-procedure logLog of events occuring prior to the current procedure
122073Current procedure evidenceAnalysis or measurements for current procedure (purpose of reference to evidence document)
122075Prior report for current patientPrior report for current patient
122076Consumable taken from inventoryIdentifier of Consumable taken from inventory
122077Consumable returned to inventoryIdentifier of Consumable returned to inventory
122078Remaining consumable disposedIdentifier of consumable whose remaining content has been disposed
122079Consumable unusableIdentifier of Consumable determined to be unusable
122081Drug startIdentifier of Drug whose administration has started
122082Drug endIdentifier of Drug whose administration has ended
122083Drug administeredIdentifier of Drug administered as part of procedure
122084Contrast startIdentifier of Contrast agent whose administration has started
122085Contrast endIdentifier of Contrast agent whose administration has ended
122086Contrast administeredIdentifier of Contrast agent administered
122087Infusate startIdentifier of Infusate whose administration has started
122088Infusate endIdentifier of Infusate whose administration has ended
122089Device crossed lesionAction of a device traversing a vascular lesion
122090Intervention ActionAction of a clinical professional performed on a patient for therapeutic purpose
122091Volume administeredVolume of Drug, Contrast agent, or Infusate administered
122092Undiluted dose administeredUndiluted dose of Drug, Contrast agent, or Infusate administered
122093ConcentrationConcentration of Drug, Contrast agent, or Infusate administered
122094Rate of administrationRate of Drug, Contrast agent, or Infusate administration
122095Duration of administrationDuration of Drug, Contrast agent, or Infusate administration
122096Volume unadministered or discardedVolume of Drug, Contrast agent, or Infusate unadministered or discarded
122097Catheter CurveNumeric parameter of Curvature of Catheter
122098Transmit FrequencyTransmit Frequency
122099ST change from baselineMeasured change of patient electrocardiographic ST level relative to baseline measurement
122101Aneurysm on cited vesselAnatomic term modifier indicating aneurysm on cited vessel is the subject of the finding
122102Graft to cited segment, proximal sectionAnatomic term modifier indicating proximal section of graft to cited vessel is the subject of the finding
122103Graft to cited segment, mid sectionAnatomic term modifier indicating mid section of graft to cited vessel is the subject of the finding
122104Graft to cited segment, distal sectionAnatomic term modifier indicating distal section of graft to cited vessel is the subject of the finding
122105DateTime of InterventionDateTime of Intervention
122106Duration of InterventionDuration of Intervention
122107Baseline Stenosis MeasurementLesion stenosis measured prior to any interventional procedure
122108Post-Intervention Stenosis MeasurementLesion stenosis measured after an interventional procedure
122109Baseline TIMI FlowAssessment of perfusion across a coronary lesion measured prior to any interventional procedure
122110Post-Intervention TIMI FlowAssessment of perfusion across a coronary lesion measured after an interventional procedure
122111Primary Intervention DeviceIndication that device is the primary (first and/or most significant) device used for interventional therapy of a particular pathology (e.g., lesion)
122112Normal MyocardiumNormal Myocardium
122113Scarred MyocardiumScarred Myocardium
122114Thinning MyocardiumThinning Myocardium
122120Hemodynamics ReportHemodynamics Report
122121Atrial pressure measurementsAtrial pressure measurements, report section
122122Ventricular pressure measurementsVentricular pressure measurements, report section
122123Gradient assessmentGradient assessment, report section
122124Blood velocity measurementsBlood velocity measurements, report section
122125Blood lab measurementsBlood lab measurements, report section
122126Derived Hemodynamic MeasurementsDerived Hemodynamic Measurements, report section
122127Clinical ContextClinical Context, report section
122128Patient Transferred FromLocation from which the patient was transferred
122129PCI during this procedureIndication that the procedure includes a percutaneous coronary intervention
122130Dose Area ProductRadiation dose times area of exposure
122131Degree of ThrombusFinding of probability and/or severity of thrombus
122132Severity of CalcificationSeverity of Calcification, property of lesion
122133Lesion MorphologyLesion Morphology; form and/or structural properties of lesion
122134Vessel MorphologyVessel Morphology; form and/or structural properties of vessel
122138Circulatory SupportTechnique (device or procedure) of support for patient circulatory system; hemodynamic support
122139Reason for ExamReason for Exam
122140Comparison with Prior Exam DoneIndication that the current exam data has been compared with prior exam data
122141Electrode PlacementElectrocardiographic electrode placement technique
122142Acquisition Device TypeAcquisition Device Type
122143Acquisition Device IDAcquisition Device ID
122144Quantitative AnalysisQuantitative Analysis, report section
122145Qualitative AnalysisQualitative Analysis, report section
122146Procedure DateTimeThe date and time on which a procedure was performed on a patient.
122147Clinical InterpretationClinical Interpretation, report section
122148Lead IDECG Lead Identifier
122149Beat NumberBeat Number; ordinal of cardiac cycle within an acquisition
122150Compound StatementComplex coded semantic unit, consisting of several coded components
122151TrendTrend (temporal progression) of a clinical condition, finding, or disease
122152StatementCoded semantic unit
122153Statement ModifierCoded modifier for a semantic unit
122154Conjunctive TermConjunctive term between semantic units
122157ProbabilityProbability
122158ECG Global MeasurementsECG Global Measurements, report section
122159ECG Lead MeasurementsECG Lead Measurements, report section
122160Derived Area, Non-ValveDerived cross-sectional area of a vessel or anatomic feature, other than a cardiac valve
122161Pulmonary FlowRate of blood flow through Pulmonary artery
122162Systemic FlowRate of blood flow through the aorta
122163Discharge DateTimeDateTime of patient discharge from hospital admission
122164Coronary Artery Bypass During This AdmissionIndication that a Coronary Artery Bypass operation was performed during the current hospital admission
122165Date of DeathDate of Death
122166Death During This AdmissionIndication that the patient died during the current hospital admission
122167Death During CatheterizationIndication that the patient died during the current Catheterization procedure
122170Type of Myocardial InfarctionFinding of type of Myocardial Infarction
122171Coronary lesion >= 50% stenosisFinding of Coronary lesion with greater than 50% stenosis
122172Acute MI PresentFinding of Acute Myocardial Infarction Presence as indication for interventional procedure
122173ST Elevation Onset DateTimeDateTime of first determination of elevated ECG ST segment, as indication of Myocardial Infarction
122175Number of lesion interventions attemptedNumber of lesion interventions attempted during current procedure
122176Number of lesion interventions successfulNumber of lesion interventions successful during current procedure, where the residual post intervention stenosis is less than or equal to 50% of the arterial luminal diameter, TIMI Flow is 3 and the minimal decrease in stenosis was 20%.
122177Procedure ResultOverall success of interventional procedure
122178Lesion Intervention InformationLesion Intervention Information, report section
122179Peri-procedural MI occurredIndication that Myocardial Infarction occurred during current procedure
122180CK-MB baselineCreatine Kinase–MB value at baseline (start of procedure)
122181CK-MB peakCreatine Kinase–MB highest value measured during procedure
122182R-R intervalTime interval between ECG R-wave peaks in subsequent cardiac cycles
122183Blood temperatureBlood temperature
122185Blood Oxygen contentBlood Oxygen content
122187Blood Carbon dioxide saturationBlood Carbon dioxide saturation
122188Pulmonary Arterial Content (FCpa)Pulmonary Arterial Content (FCpa)
122189Pulmonary Venous Content (FCpv)Pulmonary Venous Content (FCpv)
122190Max dp/dt/PMax dp/dt/P
122191Ventricular End Diastolic pressureVentricular End Diastolic pressure
122192Indicator appearance timeElapsed time from injection of an indicator bolus until it is observed at another location
122193Maximum pressure accelerationMaximum pressure acceleration
122194Ventricular Systolic blood pressureVentricular Systolic blood pressure
122195Pulse StrengthPulse Strength; palpable strength of systolic flow
122196C wave pressureThe secondary peak pressure in the atrium during atrial contraction
122197Gradient pressure, averageGradient pressure, average
122198Gradient pressure, peakGradient pressure, peak
122199Pressure at dp/dt maxPressure at dp/dt max
122201Diastolic blood velocity, meanDiastolic blood velocity, mean
122202Diastolic blood velocity, peakDiastolic blood velocity, peak
122203Systolic blood velocity, meanSystolic blood velocity, mean
122204Systolic blood velocity, peakSystolic blood velocity, peak
122205Blood velocity, meanBlood velocity, mean
122206Blood velocity, minimumBlood velocity, minimum
122207Blood velocity, peakBlood velocity, peak
122208x-descent pressureVenous or atrial pressure minimum during ventricular systole, after A-wave
122209y-descent pressureVenous or atrial pressure minimum when tricuspid valve opens during diastole, after V-wave
122210z-point pressureAtrial pressure upon closure of tricuspid and mitral valves
122211Left Ventricular ejection timeLeft Ventricular ejection time
122212Left Ventricular filling timeLeft Ventricular filling time
122213Right Ventricular ejection timeRight Ventricular ejection time
122214Right Ventricular filling timeRight Ventricular filling time
122215Total Pulmonary ResistanceTotal Pulmonary Resistance
122216Total Vascular ResistanceTotal Vascular Resistance
122217Coronary Flow reserveCoronary Flow reserve
122218Diastolic/Systolic velocity ratioDiastolic/Systolic velocity ratio
122219Hyperemic ratioHyperemic ratio
122220Hemodynamic Resistance IndexHemodynamic Resistance Index
122221Thorax diameter, sagittalThorax diameter, sagittal
122222Procedure Environmental CharacteristicsEnvironmental characteristics in the procedure room
122223Room oxygen concentrationOxygen concentration in the procedure room
122224Room temperatureTemperature in the procedure room
122225Room Barometric pressureBarometric pressure in the procedure room
122227Left to Right FlowLeft to Right Flow
122228Right to Left FlowRight to Left Flow
122229Arteriovenous differenceArteriovenous oxygen content difference
12223010 Year CHD RiskFramingham Study 10 Year CHD Risk
122231Comparrative Average 10 Year CHD RiskFramingham Study Comparrative Average 10 Year CHD Risk
122232Comparrative Low 10 Year CHD RiskFramingham Study Comparrative Low 10 Year CHD Risk
122233LDL Cholesterol Score Sheet for MenFramingham Study LDL Cholesterol Score Sheet for Men
122234LDL Cholesterol Score Sheet for WomenFramingham Study LDL Cholesterol Score Sheet for Women
122235Total Cholesterol Score Sheet for MenFramingham Study Total Cholesterol Score Sheet for Men
122236Total Cholesterol Score Sheet for WomenFramingham Study Total Cholesterol Score Sheet for Women
122237Corrected Sinus Node Recovery TimeCorrected Sinus Node Recovery Time
122238Max volume normalized to 50mmHg pulse pressureMax volume normalized to 50mmHg pulse pressure
122239Oxygen ConsumptionOxygen Consumption
122240BSA = 3.207*WT^(0.7285-0.0188 log (WT))*HT^0.3Body Surface Area computed from patient height and weight: BSA = 3.207*WT[g]^(0.7285-0.0188 log (WT[g]))*HT[cm]^0.3 [Boyd E, The growth of the surface area of the human body. Minneapolis: University of Minnesota Press, 1935, eq. (36)]
122241BSA = 0.007184*WT^0.425*HT^0.725Body Surface Area computed from patient height and weight: BSA = 0.007184*WT[kg]^0.425*HT[cm]^0.725 [Dubois and Dubois, Arch Int Med 1916 17:863-71]
122242BSA = 0.0235*WT^0.51456*HT^0.42246Body Surface Area computed from patient height and weight: BSA = 0.0235*WT[kg]^0.51456*HT[cm]^0.42246 [Gehan EA, George SL, ‘Estimation of human body surface area from height and weight’, Cancer Chemother Rep 1970 54:225-35]
122243BSA = 0.024265*WT^0.5378*HT^0.3964Body Surface Area computed from patient height and weight: BSA = 0.024265*WT[kg]^0.5378*HT[cm]^0.3964 [Haycock G.B., Schwartz G.J.,Wisotsky D.H. ‘Geometric method for measuring body surface area: A height weight formula validated in infants, children and adults.’ The Journal of Pediatrics 1978 93:1:62-66]
122244BSA = (HT * WT/36)^0.5Body Surface Area computed from patient height and weight: BSA = (HT[m] * WT[kg]/36)^0.5 [Mosteller, R.D. ‘Simplified Calculation of Body Surface Area.’ N Engl J Med 1987 Oct 22;317(17):1098]
122245BSA = 1321+0.3433*WTBody Surface Area computed from patient weight: BSA = 1321+0.3433*WT[kg] (for pediatrics 3-30 kg) [Current, J.D. ‘A Linear Equation For Estimating The Body Surface Area In Infants And Children’, The Internet Journal of Anesthesiology. 1998. 2:2]
122246BSA = 0.0004688*WT^(0.8168-0.0154*log(WT))BSA = 0.0004688*(1000*WT)^(0.8168-0.0154*log(1000*WT)) Where (WT is weight in kilogram) Units = m^2 Boyd, Edith. The Growth of the Surface Area of the Human Body (originally published in 1935 by the University of Minnesota Press), Greenwood Press, Westport, Connecticut, 1975, p. 102. Equation (35)
122247VO2male = BSA (138.1 - 11.49 * loge(age) + 0.378*HRf)Equation for estimated oxygen consumption: VO2male = BSA (138.1 - 11.49 * loge(age) + 0.378*HRf)
122248VO2female = BSA (138.1 - 17.04 * loge(age) + 0.378*HRf)Equation for estimated oxygen consumption: VO2female = BSA (138.1 - 17.04 * loge(age) + 0.378*HRf)
122249VO2 = VeSTPD * 10 * (FIO2 - FE02)Equation for estimated oxygen consumption: VO2 = VeSTPD * 10 * (FIO2 - FE02)
122250VO2 = 152 * BSAEquation for estimated oxygen consumption: VO2 = 152 * BSA
122251VO2 = 175 * BSAEquation for estimated oxygen consumption: VO2 = 175 * BSA
122252VO2 = 176 * BSAEquation for estimated oxygen consumption: VO2 = 176 * BSA
122253Robertson & Reid tableRobertson & Reid Table for estimated oxygen consumption
122254Fleisch tableFleisch table for estimated oxygen consumption
122255Boothby tableBoothby table for estimated oxygen consumption
122256if (prem age< 3days) P50= 19.9Estimate of Oxygen partial pressure at 50% saturation for premature infants less than 3 days old: P50= 19.9
122257if (age < 1day) P50= 21.6Estimate of Oxygen partial pressure at 50% saturation for infants less than 1 day old: P50= 21.6
122258if (age < 30day) P50= 24.6Estimate of Oxygen partial pressure at 50% saturation for infants less than 30 days old: P50= 24.6
122259if (age < 18y) P50= 27.2Estimate of Oxygen partial pressure at 50% saturation for patients less than 18 years old: P50= 27.2
122260if (age < 40y) P50= 27.4Estimate of Oxygen partial pressure at 50% saturation for patients less than 40 years old: P50= 27.4
122261if (age > 60y) P50= 29.3Estimate of Oxygen partial pressure at 50% saturation for patients more than 60 years old: P50= 29.3
122262Area = Flow / 44.5 * sqrt(Gradient[mmHg])Cardiac valve area computed from flow and pressure gradient: Area = Flow / 44.5 * sqrt(Gradient[mmHg]) [Gorlin and Gorlin, Am Heart J, 1951]
122263MVA = Flow / 38.0 * sqrt(Gradient[mmHg])Mitral valve area computed from flow and pressure gradient: Mitral valve Area = Flow / 38.0 * sqrt(Gradient[mmHg]) [Gorlin and Gorlin, Am Heart J, 1951]
122265BMI = Wt/Ht^2Body Mass Index computed from weight and height: BMI = Wt/Ht^2
122266BSA = 0.007358*WT^0.425*HT^0.725Body Surface Area computed from patient height and weight: BSA = 0.007358*WT[kg]^0.425* HT[cm]^0.725 (for East Asian adult, aged 15+ years) [Kanai Izumi, Masamitsu Kanai, 'Clinical examination method summary']
122267BSA = 0.010265*WT^0.423*HT^0.651Body Surface Area computed from patient height and weight: BSA = 0.010265*WT[kg]^0.423* HT[cm]^0.651 (For East Asian child aged 12-14 years)
122268BSA = 0.008883*WT^0.444*HT^0.663Body Surface Area computed from patient height and weight: BSA = 0.008883*WT[kg]^0.444* HT[cm]^0.663 (For East Asian child aged 6-11 years)
122269BSA = 0.038189*WT^0.423*HT^0.362Body Surface Area computed from patient height and weight: BSA = 0.038189*WT[kg]^0.423* HT[cm]^0.362 (For East Asian child aged 1-5 years)
122270BSA = 0.009568*WT^0.473*HT^0.655Body Surface Area computed from patient height and weight: BSA = 0.009568*WT[kg]^0.473* HT[cm]^0.655 (For East Asian child aged 0-12 months)
122271Skin Condition WarmSkin Condition Warm
122272Skin Condition CoolSkin Condition Cool
122273Skin Condition ColdSkin Condition Cold
122274Skin Condition DrySkin Condition Dry
122275Skin Condition ClammySkin Condition Clammy
122276Skin Condition DiaphoreticSkin Condition Diaphoretic
122277Skin Condition FlushSkin Condition Flush
122278Skin Condition MottledSkin Condition Mottled
122279Skin Condition PaleSkin Condition Pale
122281Airway unobstructedAirway unobstructed
122282Airway partially obstructedAirway partially obstructed
122283Airway severely obstructedAirway severely obstructed
122288Not VisualizedAnatomy could not be visualized for the purpose of evaluation
122291Quantitative Arteriography ReportQuantitative Arteriography Report
122292Quantitative Ventriculography ReportQuantitative Ventriculography Report
122301Guidewire crossing lesion unsuccessfulGuidewire crossing lesion unsuccessful
122302Guidewire crossing lesion successfulGuidewire crossing lesion successful
122303Angioplasty balloon inflatedAngioplasty balloon inflated
122304Angioplasty balloon deflatedAngioplasty balloon deflated
122305Device deployedDevice deployed
122306Stent re-expandedStent re-expanded
122307Object removedObject removed
122308Radiation appliedRadiation applied
122309Radiation removedRadiation removed
122310Interventional device placement unsuccessfulInterventional device placement unsuccessful
122311Interventional device placedInterventional device placed
122312Intervention performedIntervention performed
122313Interventional device withdrawnInterventional device withdrawn
122319Catheter SizeCatheter Size
122320Injectate TemperatureInjectate Temperature
122321Injectate VolumeInjectate Volume
122322Calibration FactorFactor by which a measured or calculated value is multiplied to obtain the estimated real-world value.
122325IVUS ReportIntravascular Ultrasound Report
122330EEM DiameterExternal Elastic Membrane (EEM) diameter measured through the center point of the vessel. Center point of the vessel is defined as the center of gravity of the EEM area. The EEM is a discrete interface at the border between the media and the adventitia.
122331Plaque Plus Media ThicknessThe distance from intimal leading edge to the external elastic membrane along any line passing through the luminal center, which is defined as the center of gravity of the lumen area.
122332Lumen PerimeterPlanimetered perimeter of the lumen.
122333EEM Cross-Sectional AreaVessel area measured at the External Elastic Membrane (EEM), a discrete interface at the border between the media and the adventitia.
122334Plaque plus Media Cross-Sectional AreaArea within the EEM occupied by atheroma, regardless of lumen compromise. Plaque plus Media Area = EEM cross-sectional area - vessel lumen cross-sectional area
122335In-Stent Neointimal Cross-Sectional AreaMeasurement of in-stent restenosis. In-Stent Intimal Area = Stent cross-sectional area – vessel lumen cross-sectional area
122336Vascular Volume measurement lengthLongitudinal extent of the Vascular Volume Measurement. This is the distance from the distal edge to the proximal edge of the Volume measurement.
122337Relative positionLongitudinal distance from the closest edge of a fiducial feature or reference location to the start of the vascular measurement. This value will be a positive if the measurement is distal to the fiducial feature or reference location, or negative if the measurement is proximal to the fiducial feature or reference location.
122339Stent Volume ObstructionIn-Stent Neointimal Volume / Stent Volume
122340Fiducial featureReference, normally anatomical, which is used for locating the position of a measurement.
122341Calcium LengthLongitudinal calcium length measurement
122343Lumen Eccentricity IndexMeasurement of vessel lumen eccentricity. Lumen Eccentricity Index = (maximum vessel lumen diameter - minimum vessel lumen diameter) / maximum vessel lumen diameter. Lumen diameters are measured through the center point of the lumen, which is defined as the center of gravity of the lumen area.
122344Plaque plus Media Eccentricity IndexPlaque plus Media Eccentricity Index = (maximum Plaque plus media thickness - minimum Plaque plus media thickness) / maximum Plaque plus media thickness
122345Remodeling IndexMeasurement of increase or decrease in EEM area that occurs during the development of atherosclerosis. Remodeling Index = Lesion EEM area / reference EEM area
122346Stent Symmetry IndexMeasurement of stent circularity. Stent Symmetry Index = (maximum stent diameter - minimum stent diameter) / maximum stent diameter
122347Stent Expansion IndexMeasurement of stent area relative to the reference lumen area. Stent Expansion Index = Minimum stent area / reference vessel lumen cross-sectional area
122348Lumen Shape IndexMeasurement of vessel lumen eccentricity. Lumen Shape Index = (2p * sqrt(Vessel lumen cross-sectional area / p) / Lumen Perimeter) 2 Reference: Tobis & Yock, “Intravascular Ultrasound Imaging”, Chapter 7
122350Lumen Diameter RatioLumen diameter ratio = minimum vessel lumen diameter / maximum vessel lumen diameter, measured at the same cross section in the vessel. Lumen diameters are measured through the center point of the lumen, which is defined as the center of gravity of the lumen area.
122351Stent Diameter RatioStent diameter ratio = Minimum stent diameter / Maximum stent diameter, measured at the same cross section in the vessel. Stent diameters are measured through the center point of the stent, which is defined as the center of gravity of the stent area.
122352EEM Diameter RatioEEM diameter ratio = minimum EEM diameter / maximum EEM diameter. Measured at the same cross section in the vessel.
122354Plaque BurdenFractional area within the External Elastic Membrane (EEM) occupied by atheroma. Plaque Burden = (EEM area - vessel lumen cross-sectional area) / EEM area
122355Arc of CalciumAngular measurement of a Calcium deposit with the apex located at the center of the lumen, which is defined as the center of gravity of the lumen area.
122356Soft plaquePlaque characterized by low density or echogenicity.
122357In-Stent NeointimaAbnormal thickening of the intima within the stented segment.
122360True LumenLumen surrounded by all three layers of the vessel-intima, media, and adventitia.
122361False LumenA channel, usually parallel to the true lumen, which does not communicate with the true lumen over a portion of its length.
122363Plaque RupturePlaque ulceration with a tear detected in a fibrous cap.
122364Stent GapLength of gap between two consecutive stents.
122367T-1 WorstWorst stenosis - the stenosis with the smallest lumen size within a vessel segment.
122368T-2 Secondary2nd most severe stenosis within a vessel segment.
122369T-3 Secondary3rd most severe stenosis within a vessel segment.
122370T-4 Secondary4th most severe stenosis within a vessel segment.
122371EEM VolumeExternal Elastic Membrane (EEM) volume measured within a specified region. The EEM is a discrete interface at the border between the media and the Adventitia.
122372Lumen VolumeLumen volume measured within a specified region.
122374In-Stent Neointimal VolumeThe amount of plaque between the lumen and stent, within the stent region; In-stent restenosis. In-Stent Neointimal Volume = Stent Volume - Lumen Volume
122375Native Plaque VolumeThe amount of plaque between the stent and the EEM, within the stent region.  Native Plaque Volume = EEM Volume - Stent Volume
122376Total Plaque VolumeTotal amount of plaque between the EEM and the Lumen, over the entire region that is measured.  Total Plaque Volume = EEM Volume - Lumen Volume.
122380Proximal ReferenceProximal reference segment measurement site. Typically the site with the largest lumen proximal to a stenosis but within the same segment (usually within 10 mm of the stenosis with no major intervening branches).
122381Distal ReferenceDistal reference segment measurement site. Typically the site with the largest lumen distal to a stenosis but within the same segment (usually within 10 mm of the stenosis with no major intervening branches).
122382Site of Lumen MinimumSite of the smallest lumen in a vessel, e.g., due to a stenotic lesion.
122383Entire PullbackMeasurement region that encompasses the entire vessel imaged in a single pullback acquisition
122384Stented RegionMeasurement region occupied by the stent
122385Proximal Stent MarginRegion starting at the proximal edge of the Stent and extending several millimeters (usually 5 mm) proximal to the Stent edge.
122386Distal Stent MarginRegion starting at the distal edge of the Stent and extending several millimeters (usually 5 mm) distal to the Stent edge.
122387Dissection ClassificationClassification of dissections in a vessel
122388Intra-stent DissectionSeparation of neointimal hyperplasia from stent struts, usually seen only after treatment of in-stent restenosis.
122389Vulnerable PlaquePlaque with a thin cap fibrous atheroma that is at increased risk of rupture and thrombosis (or re-thrombosis) and rapid stenosis progression.
122390Eroded PlaquePlaque erosions with no structural defect (beyond endothelial injury) or gap in the plaque.
122391Relative Stenosis SeverityStenosis severity classifications of multiple lesions in a vessel.
122393Restenotic LesionA finding of a previously treated lesion in which stenosis has reoccurred.
122394Fibro-Lipidic PlaqueLoosely packed bundles of collagen fibers with regions of lipid deposition present. Region is cellular and no cholesterol clefts or necrosis are present. Some macrophage infiltration. Increase in extra cellular matrix.
122395Necrotic-Lipidic PlaqueArea within the plaque with very low echogenicity separated from the lumen and surrounded by more echogenic structures (fibrous cap). Highly lipidic necrotic region with remnants of foam cells and dead lymphocytes present. No collagen fibers are visible and mechanical integrity is poor. Cholesterol clefts and micro calcifications are visible.
122398Intimal DissectionDissection limited to the intima or atheroma, and not extending to the media.
122399Medial DissectionDissection in the arterial Media, extending into the media.
122400Simultaneously AcquiredThe referenced information was acquired simultaneously with the information in the object in which the reference occurs.
122401Same AnatomyInformation acquired for the same anatomic region.
122402Same IndicationInformation acquired for the same indication (e.g. to elucidate the same diagnostic question).
122403For Attenuation CorrectionThe referenced information was used to correct the data for differential attenuation through different anatomic tissue.
122404ReconstructedValue estimated for a vessel in the absence of a stenosis
122405Algorithm ManufacturerManufacturer of application used
122406Left Atrial Ejection Fraction by AngiographyLeft Atrial Ejection Fraction by Angiography
122407Left Atrial ED VolumeLeft Atrial End Diastolic Volume
122408Left Atrial ES VolumeLeft Atrial End Systolic Volume
122410Contour RealignmentContour repositioning of End Diastolic relative to End Systolic contour
122411Threshold ValueThe minimum standard deviation to define the hypokinesis and hyperkinesis
122417Regional Abnormal Wall MotionReport of differentiation of wall motion compared to normal
122421Calibration ObjectObject used for Calibration
122422Calibration MethodMethod used for Calibration
122423Calibration Object SizeSize of calibration object
122428Area Length MethodMethod how long axis is positioned
122429Volume MethodModel for cardiac chamber volume calculation
122430Reference MethodMethod to define original diameter of the artery
122431Regression Slope EDRelation between calculated End Diastolic volume and ventricular End Diastolic volume. The specific meaning is dependent on volume method used.
122432Regression Offset EDCorrection factor for the calculated End Diastolic volume and ventricular End Diastolic volume. The specific meaning is dependent on volume method used.
122433Regression Slope ESRelation between calculated End Systolic volume and ventricular End Systolic volume. The specific meaning is dependent on volume method used.
122434Regression Offset ESCorrection factor for the calculated End Systolic volume and ventricular End Systolic volume. The specific meaning is dependent on volume method used.
122435Regression Volume ExponentExponent of volume in regression formula
122438Reference PointsContainer for spatial locations or coordinates used for calculation
122445Wall ThicknessAverage thickness of the chamber wall in the current view
122446Wall VolumeVolume of the chamber wall estimated from the current view
122447Wall MassMass of the chamber wall (myocardium)
122448Wall StressPeak systolic stress of chamber wall
122449Centerline Wall Motion AnalysisMethod to calculate wall motion [example: Sheehan, 1986]
122450Normalized Chord LengthThe length between End Diastolic and End Systolic contour perpendicular on the centerline normalized by a method dependent ventricular perimeter length. The centerline is the line equidistant between the End Diastolic and End Systolic contour [example: Sheehan, 1986]
122451Abnormal RegionThe report of the boundaries of the abnormal (hyperkinetic, hypokinetic, a-kinetic) regions associated with the territory of the artery [example: Sheehan, 1986]
122452First Chord of Abnormal RegionThe chord number specifying the begin of abnormal region [example: Sheehan, 1986]
122453Last Chord of Abnormal RegionThe chord number specifying the end of abnormal region [example: Sheehan, 1986]
122459Territory Region SeveritySeverity at the regional abnormality extent [example: Sheehan, 1986]
122461Opposite Region SeveritySeverity at the opposite regional abnormality extent [example: Sheehan, 1986]
122464LAD Region in RAO ProjectionBased on a total number of chords of 100 and RAO project the range of chords belonging to this circumferential extent lies between 5 – 85. [Sheehan, 1986]
122465RCA Region in ROA ProjectionBased on a total number of chords of 100 and RAO project the range of chords belonging to this circumferential extent lies between 25 – 85. [Sheehan, 1986]
122466Single LAD Region in RAO ProjectionBased on a total number of chords of 100 and RAO projection the range of chords belonging to this regional extent lies between 10 – 66 (hypokinetic) and 67 – 80 (hyperkinetic). [Sheehan, 1986]
122467Single RCA Region in RAO ProjectionBased on a total number of chords of 100 and RAO projection the range of chords belonging to this regional extent lies between 51 – 80 (hypokinetic) and 10 – 50 (hyperkinetic). [Sheehan, 1986]
122468Multiple LAD Region in RAO ProjectionBased on a total number of chords of 100 and RAO projection the range of chords belonging to this regional extent lies between 10 – 58 (hypokinetic) and 59 –80 (hyperkinetic). [Sheehan, 1986]
122469Multiple RCA Region in RAO ProjectionBased on a total number of chords of 100 and RAO projection the range of chords belonging to this regional extent lies between 59 – 80 (hypokinetic) and 10 – 58 (hyperkinetic). [Sheehan, 1986]
122470LAD Region in LAO ProjectionBased on a total number of chords of 100 and LAO projection the range of chords belonging to this regional extent lies between 50 –100 (hypokinetic) and 20 – 49 (hyperkinetic). [Sheehan, 1986]
122471RCA Region in LAO ProjectionBased on a total number of chords of 100 and LAO projection the range of chords belonging to this regional extent lies between 19 – 67 (hypokinetic) and 68 – 100 (hyperkinetic). [Sheehan, 1986]
122472CFX Region in LAO ProjectionBased on a total number of chords of 100 and LAO projection the range of chords belonging to this regional extent lies between 38 –74 (hypokinetic) and 75 – 100 (hyperkinetic). [Sheehan, 1986]
122473Circular MethodMethod based on assumption that the image object is circular.
122474Densitometric MethodMethod based on the gray value distribution of the image.
122475Center of GravityEnd Systolic contour realigned to End Diastolic contour based on the center of gravity
122476Long Axis BasedEnd Systolic contour realigned to End Diastolic contour based on the mid point of the long axis. The long axis end points are defined as the posterior and apex.
122477No RealignmentNo Contour Realignment applied
122480Vessel Lumen Cross-Sectional AreaCalculated Vessel Lumen Cross-Sectional Area based on the referenced method
122481Contour StartLocation of the beginning of a contour
122482Contour EndLocation of the end of a contour
122485SphereSphere is used as calibration object
122486Geometric IsocenterObject of interest in isocenter of image and pixel separation is calculated from geometric data
122487Geometric Non-IsocenterObject of interest not in isocenter of image and pixel separation is calculated from geometric data and out of isocenter distances
122488Calibration Object UsedObject used for calibration (e.g. sphere)
122489Curve Fitted ReferenceApplication dependent method to calculate the reference diameter based on the multiple diameter values.
122490Interpolated Local ReferenceApplication dependent method to calculate reference by interpolation, based on the diameter of two or more user defined reference positions.
122491Mean Local ReferenceApplication dependent method to calculate by averaging the reference, based on the diameter of one or more user defined reference positions.
122493Radial Based Wall Motion AnalysisMethod to calculate wall motion based on the lengths of the radials in the predefined regions [Ingels]
122495Regional Contribution to Ejection FractionContribution of Region to global Ejection factor based on radial or landmark based wall motion method
122496Radial ShorteningThe reduction of area between End Systolic and End Diastolic based on radial wall motion analysis
122497Landmark Based Wall Motion AnalysisMethod to calculate wall motion based on the move of landmarks on the wall [Slager]
122498Slice Contribution to Ejection FractionContribution to the ejection fraction of a specific slice region [Slager]
122499Frame to Frame AnalysisMethod to calculate volumes of heart chambers for every image in a range
122501Area of closed irregular polygonThe area is derived by considering a set of coordinates as a closed irregular polygon, accounting for inner angles. The exact method, such as by decomposition into triangles or quadrilaterals, is not specified, since it does not affect the numeric result, apart from the effect of numeric precision during computation of intermediate results.
122502Area of a closed NURBSThe area is derived by using a set of coordinates as control points for a Non Uniform Rational B-Spline (NURBS).
122503Integration of sum of closed areas on contiguous slicesThe volume derived by integrating the sum of the areas on adjacent slices across the slice interval; each area is defined by a regular planar shape or by considering a set of coordinates as a closed irregular polygon, accounting for inner angles.
122505CalibrationProcedure used to calibrate measurements or measurement devices
122507Left ContourLeft contour of lumen (direction proximal to distal)
122508Right ContourRight contour of lumen (direction proximal to distal)
122509Diameter GraphOrdered set of diameters values derived from contours (direction proximal to distal)
122510Length Luminal SegmentLength Luminal Segment
122511Graph IncrementIncrement value along X-axis in Diameter Graph
122516Site of Maximum LuminalLocation of the maximum lumen area in a lesion or vessel.
122517Densitometric Luminal Cross-sectional Area GraphOrdered set of cross-sectional Vessel Lumen Cross-Sectional Area values derived from contours (direction proximal to distal) based on densitometric method
122528Position of Proximal BorderPosition of proximal border of segment relative to the contour start (proximal end of analysis area)
122529Position of Distal BorderPosition of distal border of segment relative to the contour start (proximal end of analysis area)
122542Plaque AreaLongitudinal cross sectional area of plaque
122544Diameter SymmetrySymmetry of stenosis (0 = complete asymmetry, 1 = complete symmetry) [reference PS 3.17 X.2]
122545Area SymmetrySymmetry of plaque (0 = complete asymmetry, 1 = complete symmetry) [reference PS 3.17 X.2]
122546Inflow AngleThe average slope of the diameter function between the position of the minimum luminal diameter and the position of the proximal border of the segment
122547Outflow AngleThe average slope of the diameter function between the position of the minimum luminal diameter and the position of the distal border of the segment
122548Stenotic Flow ReserveThe relation between coronary pressure and coronary flow
122549Poiseuille ResistancePoiseuille Resistance at the location of the stenosis
122550Turbulence ResistanceTurbulence Resistance at the location of the stenosis
122551Pressure Drop at SFRPressure drop over the stenosis at maximum heart output
122554Segmentation MethodMethod for selection of vessel sub-segments
122555Estimated Normal FlowEstimate of the volume of blood flow in the absence of stenosis
122558Area Length KennedyArea Length method defined by Kennedy [Kennedy, 1970]
122559Area Length DodgeArea Length method defined by Dodge [Dodge, 1960]
122560Area Length WynneArea Length method defined by Wynne [Wynne]
122562Multiple SlicesVolume method based on multiple slice
122563BoakVolume method defined by Boak [Boak]
122564TS PyramidVolume method defined by Ferlinz [Ferlinz]
122565Two ChamberVolume method defined by Graham [Graham]
122566ParallelepipedVolume method defined by Arcilla [Arcilla]
122572BSA^1.219Corrected Body Surface area for indexing the hemodynamic measurements for a pediatric patient
122574Equidistant methodMethod for selecting sub-segments that are all of the same length
122575User selected methodManually selected start and end of sub-segment
122582Left ventricular posterobasal segmentLeft ventricular posterobasal segment
122600Cardiovascular Analysis ReportReport of a Cardiovascular Analysis, typically from a CT or MR study
122601Ventricular AnalysisVentricular Analysis
122602Myocardial Perfusion AnalysisMyocardial Perfusion Analysis
122603Calcium Scoring AnalysisCalcium Scoring Analysis
122604Flow QuantificationFlow Quantification Analysis
122605Vascular Morphological AnalysisVascular Morphological Analysis
122606Vascular Functional AnalysisVascular Functional Analysis
122607Thickening AnalysisAnalysis of myocardial wall thickening
122608Absolute Values Of Ventricular MeasurementsSection Heading for absolute values of ventricular measurements
122609Normalized Values Of Ventricular MeasurementsResults of normalizing ventricular measurements
122611Reference PointReference Point of a measurement
122612Central breathing positionCentral breathing position between inspiration and expiration
122616Peak Ejection RatePeak of the ventricular ejection rate
122617Peak Ejection TimeTime of the peak of ventricular ejection
122618Peak Filling RatePeak of the fluid filling rate
122619Peak Filling TimeTime interval from a given reference point (e.g. end systole) until time of peak filling
122620Papillary Muscle ExcludedPapillary muscle was excluded from the measurement
122621Papillary Muscle IncludedPapillary muscle was included in the measurement
122624Wall Thickness Ratio end-systolic to end-diastolicThe ratio of the end-systolic wall thickness compared to the end-diastolic wall thickness
122627Curve Fit MethodThe method to smooth a ventricular volume as a function of time
122628Baseline Result CorrectionBaseline correction used in the calculation of the results
122631Signal Earliest Peak TimeThe time in a dynamic set of images at which the first peak of the signal is observed for the analysed myocardial wall segments.
122633Signal Increase Start TimeThis is the time at which the signal begins to increase.
122634Signal Time to PeakTime interval between the beginning of the signal increase to the time at which the signal intensity reaches its first maximum in a dynamic set of images.
122635MR Perfusion PeakPeak of the MR perfusion signal
122636MR Perfusion SlopeSignal intensity as a function of time. It is the change in the signal intensity divided by the change in the time.
122637MR Perfusion Time IntegralMR perfusion time integral from baseline (foot time) to earliest peak
122638Signal Baseline StartFirst time point in a dynamic set of images used in the calculation of the baseline signal intensity for each myocardial wall segment.
122639Signal Baseline EndLast time point in a dynamic set of images used in the calculation of the baseline signal intensity for each myocardial wall segment.
122640Image IntervalThe time delta between images in a dynamic set of images.
122642Velocity Encoding Minimum ValueThe minimum velocity encoded by the phase encoding gradient
122643Velocity Encoding Maximum ValueThe maximum velocity encoded by the phase encoding gradient
122645Net Forward VolumeForward volume-reverse volume
122650Area Based MethodArea Based Method for estimating volume or area
122651Diameter Based MethodDiameter Based Method for estimating volume, area or diameter
122652Volume Based MethodVolume Based Method for estimating volume
122655NASCETA method of diameter measurements according to NASCET (North American Symptomatic Carotid Endarterectomy Trial)
122656ECSTA method of diameter measurements according to ECST (European Carotid Surgery Trial)
122657Agatston Score ThresholdAgatston Score Threshold
122658Calcium Mass ThresholdCalcium Mass Threshold
122659Calcium Scoring CalibrationCalcium Scoring Calibration
122660Calcium VolumeCalcium Volume
122661Calcium MassCalcium Mass
122664Late Contrast EnhancementDelayed hyperenhancement of a tissue observed in an image acquired after injection of contrast media.
122665Time interval since injection of contrast mediaTime interval since injection of contrast media
122666Time relative to R-wave peakTime relative to R-wave peak
122667Blood velocity vs. time of cardiac cycleRelationship between blood velocity and time relative to R-wave peak
122668Time interval since detection of contrast bolusTime interval since detection of contrast bolus
122670Papillary Muscle Included/ExcludedIndicates if the papillary muscle was included or excluded in the measurement
122675Anterior-PosteriorAnterior to Posterior direction
122680endoleakPersistent flow of blood into the stent-grafting
122683Stent FractureFracture of a stent
122684Stent DisintegrationDisintegration of a stent
122685Stent CompositionMaterial that a stent consists of
122686Parent Vessel FindingFinding about the characteristics of the parent vessel of a vessel
122687Site of Lumen MaximumSite of Maximal lumen diameter of a vessel
122698X-ConceptThe physical domain (time, space, etc.) to the horizontal axis of the graphical presentation.
122699Y-ConceptThe physical domain (time, space, etc.) to the vertical axis of the graphical presentation.
122700Indications for Pharmacological StressIndications for Pharmacological Stress
122701Procedure time baseReference time for measurement of elapsed time in a procedure
122702Treadmill speedTreadmill speed
122703Treadmill gradientTreadmill gradient
122704Ergometer powerErgometer power
122705Pharmacological Stress Agent Dose RatePharmacological Stress Agent Dose Rate
122706Rating of Perceived ExertionRating of Perceived Exertion
122707Number of Ectopic BeatsNumber of ectopic beats during a period of collection
122708Double ProductHeart rate times systolic blood pressure
122709Activity workloadPhysical activity workload (intensity) measurement
122710Time since start of stageElapsed time at stage
122711Exercise duration after stress agent injectionExercise duration after stress agent injection
122712Imaging Start TimeImaging Start Time
122713Attenuation correction methodAttenuation correction method
122715Pharmacological Stress Agent DosePharmacological Stress Agent Dose
122716Maximum Power Output AchievedMaximum power output achieved during course of procedure
122717Peak activity workloadPeak physical activity intensity measurement during course of procedure
122718Peak Double ProductPeak Double Product measurement during course of procedure
122720OSEM algorithmOrdered subsets expectation maximization reconstruction algorithm
122721Chang methodChang attenuation correction method
122726Algorithmic attenuation correctionAttenuation correction not based on image-based attenuation maps
122727NM transmission attenuation correctionNM transmission attenuation correction
122728CT–based attenuation correctionCT–based attenuation correction
122729No Attenuation CorrectionNo attenuation correction
122730Bazett QTc AlgorithmBazett QT Correction Algorithm; QT/(RR ^ 0.5); Bazett HC. "An analysis of the time-relations of electrocardiograms" Heart 7:353-370 (1920).
122731Hodges QTc AlgorithmHodges QT Correction Algorithm; QT + 1.75 (heart rate-60); Hodges M, Salerno Q, Erlien D. “Bazett's QT correction reviewed. Evidence that a linear QT correction for heart rate is better.” J Am Coll Cardiol 1:694 (1983)
122732Fridericia QTc AlgorithmFridericia QT Correction Algorithm; QT/(RR ^ 0.333); Fridericia LS. "The duration of systole in the electrocardiogram of normal subjects and of patients with heart disease" Acta Med Scand 53:469-486 (1920)
122733Framingham QTc AlgorithmFramingham QT Correction Algorithm; QT + 0.154 (1- RR); Sagie A, Larson MG, Goldberg RJ, et al. “An improved method for adjusting the QT interval for heart rate (the Framingham Heart Study).” Am J Cardiol 70:797-801(1992)
122734Borg RPE ScaleBorg Rating of Perceived Exertion Scale, range 6:20
122735Borg CR10 ScaleBorg category ratio scale, open ended range with nominal range 0:10
122739Overall study qualityOverall study quality
122740Excellent image qualityExcellent image quality
122741Good image qualityGood image quality
122742Poor image qualityPoor image quality
122743Body habitus attentuationImage attenuation due to body physique (overweight)
122744Breast attenuationImage attenuation due to breast tissue
122745Diaphragmatic attenuationImage attenuation due to diaphragm
122748False positive defect findingFinding of a defect (e.g., from automated analysis) is incorrect
122750Non-diagnostic - low heart rateECG is non-diagnostic due to low heart rate
122751Non-diagnostic - resting ST abnormalitiesECG is non-diagnostic due to resting ST abnormalities
122752Non-diagnostic - ventricular pacing or LBBBECG is non-diagnostic due to ventricular pacing or Left Bundle Branch Block
122755Strongly positiveStrongly positive finding
122756Strongly positive - ST elevationStrongly positive finding - ST elevation
122757ST Depression – HorizontalFinding of ST segment depression with no slope
122758ST Depression – UpslopingFinding of ST segment depression with upslope
122759ST Depression – DownslopingFinding of ST segment depression with downslope
122760Stress test scoreStress test score
122762Number of diseased vessel territoriesNumber of diseased vessel territories
122764Weight exceeds equipment limitPatient weight exceeds equipment limit
122768Difference in Ejection FractionDifference in Ejection Fraction
122769Difference in ED LV VolumeDifference in End Diastolic Left Ventricular Volume
122770Ratio of achieved to predicted maximal oxygen consumptionRatio of achieved to predicted maximal oxygen consumption
122771Ratio of achieved to predicted functional capacityRatio of achieved to predicted functional capacity
122772Aerobic indexWorkload (Watts) at target heart rate divided by body weight
122773ST/HR IndexST depression at peak exercise divided by the exercise-induced increase in heart rate [Kligfield P, Ameisen O, Okin PM. “Heart rate adjustment of ST segment depression for improved detection of coronary artery disease.” Circulation 1989;79:245-55.]
122775Agreement with prior findingsAgreement with prior findings
122776Disagreement with prior findingsDisagreement with prior findings
122781Rest thallium/stress technetium procedureNuclear Medicine Rest thallium/stress technetium procedure
122782Rest technetium/stress technetium 1 day procedureNuclear Medicine Rest technetium/stress technetium 1 day procedure
122783Rest technetium/stress technetium 2 day procedureNuclear Medicine Rest technetium/stress technetium 2 day procedure
122784Stress technetium/rest technetium 1 day procedureNuclear Medicine Stress technetium/rest technetium 1 day procedure
122785NM Myocardial Viability procedureNuclear Medicine Myocardial Viability procedure
122791PET Myocardial Perfusion, Rest onlyPositron Emission Tomography Perfusion Imaging procedure, rest only
122792PET Myocardial Perfusion, Stress onlyPositron Emission Tomography Perfusion Imaging procedure, stress only
122793PET Myocardial Perfusion, Rest and StressPositron Emission Tomography Perfusion Imaging procedure, rest and stress
122795PET Myocardial Viability, Rest onlyPositron Emission Tomography Myocardial Viability procedure, rest only
122796PET Myocardial Viability, Stress onlyPositron Emission Tomography Myocardial Viability procedure, stress only
122797PET Myocardial Viability, Rest and StressPositron Emission Tomography Myocardial Viability procedure, rest and stress
122799Anginal EquivalentGroup of symptoms heralding angina pectoris that does not include chest pain (dyspnea, diaphoresis, profuse vomiting in a diabetic patient, or arm or jaw pain).
123001RadiopharmaceuticalActive ingredient (molecular) used for radioactive tracing
123003Radiopharmaceutical Start TimeTime of radiopharmaceutical administration to the patient for imaging purposes
123004Radiopharmaceutical Stop TimeEnding time of radiopharmaceutical administration to the patient for imaging purposes
123005Radiopharmaceutical VolumeVolume of radiopharmaceutical administered to the patient
123006Radionuclide Total DoseTotal amount of radionuclide administered to the patient at Radiopharmaceutical Start Time
123007Radiopharmaceutical Specific ActivityActivity per unit mass of the radiopharmaceutical at Radiopharmaceutical Start Time
123009Radionuclide Syringe CountsPre-injection syringe acquisition count rate
123010Radionuclide Residual Syringe CountsSyringe acquisition count rate following patient injection
123011Contrast/Bolus AgentContrast or bolus agent
123012Pre-MedicationMedication to be administered at the beginning of the Scheduled Procedure Step
123014Target RegionAnatomic Region to be imaged
123015Imaging DirectionDirection of imaging (includes view, transducer orientation, patient orientation, and/or projection)
123016Imaging ConditionsImaging condition for refinement of protocol (includes secondary posture, instruction, X-Ray / electron beam energy or nuclide, and ultrasound modes), as used in JJ1017 v3.0
123019Caudal 10 degree distal-cranioproximal obliqueCaudal 10 degree distal-cranioproximal oblique radiographic projection, defined per Smallwood et al.
123101Neighborhood AnalysisSurface processing utilizing predefined weighting factors (i.e. kernels) applied to different data values depending on their location relative to other data values within the data domain. Includes Low Pass, High Pass, Gaussian, Laplacian, etc.
123102Adaptive FilteringSurface processing applied non-uniformly utilizing a priori knowledge of the system and/or relative locations of the data values within the data domain. Example: Neighborhood analysis where weighting factors are modified continuously based on predefined criteria.
123103Edge DetectionSurface processing through the exploitation of discontinuities in the data values within their domain. Includes Gradient filters.
123104Morphological OperationsSurface processing based on the connectivity of values based on the shape or structure of the data values within their domain. Includes erode, dilate, etc.
123105Histogram AnalysisSurface processing applied to the distribution of the data values. Includes thresholding, Bayesian Classification, etc.
123106Multi-Scale/Resolution FilteringSurface processing accomplished through varying the data domain size. Include deformable models.
123107Cluster AnalysisSurface processing accomplished by combining data values based on their relative location within their domain or value distribution. Includes K- and C-means, Fuzzy Analysis, Watershed, Seed Growing, etc.
123108Multispectral ProcessingSurface processing accomplished through the weighted combination of multiple data sets. Includes Principle Component Analysis, linear and non-linear weighed combinations, etc.
123109Manual ProcessingSurface processing accomplished through human interaction. Region drawing
123110Artificial IntelligenceSurface processing using Artificial Intelligence techniques, such as Machine Learning, Neural Networks, etc.
123111Deformable ModelsSurface processing using Deformable Model techniques, such as Point Distribution Models, Level Sets, Simplex Meshes, etc.
125000OB-GYN Ultrasound Procedure ReportDocument Title of OB-GYN procedure report
125001Fetal Biometry RatiosReport section for assessment of fetal growth using ratios and indexes
125002Fetal BiometryReport section for assessment of fetal growth
125003Fetal Long BonesReport section for assessment of fetal growth by long bone measurements
125004Fetal CraniumReport section for assessment of fetal cranium growth
125005Biometry GroupBiometric assessment of
125006Biophysical ProfileReport section for assessment of biophysical observations that evaluate fetal well-being according to Manning, Antepartum Fetal Evaluation: Development of a Fetal Bbiophysical Profile Score, Am. J Obsetet Gynecol, 1980;136:787.
125007Measurement GroupA grouping of related measurements and calculations that share a common context
125008Fetus SummaryReport section for fetus specific prodedure summary observations
125009Early GestationReport section for assessment of early gestation fetus
125010IdentifierA name to differentiate between multiple instances of some item
125011Pelvis and UterusReport section for assessment of pelvis and uterus
125012Growth Percentile rankThe rank of a measured growth indicator relative to a normal distribution expressed as a percentage.
125013Growth Z-scoreThe rank of a measured growth indicator relative to a normal distribution expressed as the dimensionless quantity z = (x-m)/s where (x-m) is the deviation of the value x, from from the distribution mean, m, and s is the standard deviation of the distribution.
125015Fetus CharacteristicsFetus characteristics (findings section title)
125016Fetal MeasurementsFetal Measurements (findings section title)
125021Frame of Reference IdentityThere is a defined equivalence between the Frame of Reference of the Registration SOP instance and the Frame of Reference of the referenced images.
125022Fiducial AlignmentThe registration is based on fiducials that represent patient or specimen features identified in each data set.
125023Acquisition Equipment AlignmentRegistration based on a-priori knowledge of the acquisition geometry. This is not an object registration as in fiducial registration. Rather, it specifies a known spatial relationship.
125024Image Content-based AlignmentComputed registration based on global image information
125025Visual AlignmentRegistration by visually guided manipulation.
125030Inter-Hemispheric PlaneA plane fiducial that specifies the location of the plane separating the two hemispheres of the brain.
125031Right Hemisphere Most AnteriorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the anterior limit of the right brain hemisphere
125032Right Hemisphere Most PosteriorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the posterior limit of the right brain hemisphere
125033Right Hemisphere Most SuperiorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the superior limit of the right brain hemisphere
125034Right Hemisphere Most InferiorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the inferior limit of the Right brain hemisphere
125035Left Hemisphere Most AnteriorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the anterior limit of the left brain hemisphere
125036Left Hemisphere Most PosteriorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the posterior limit of the left brain hemisphere
125037Left Hemisphere Most SuperiorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the superior limit of the left brain hemisphere
125038Left Hemisphere Most InferiorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the inferior limit of the left brain hemisphere
125100Vascular Ultrasound Procedure ReportRoot Document Title for ultrasound vascular evidence reports (worksheets).
125101Vessel BranchThe particular vessel branch, such as the inferior, medial or lateral
125102Graft TypeA descriptor or elaboration of the type of graft
125105Measurement OrientationA modifier to a 2D distance measurement to describe its orientation. For example, a vascular distance measurement for a vessel plague could have a modifier Transverse or Longitudinal.
125106Doppler AngleThe angle formed between the Doppler beam line and the direction of blood flow within a region of interest in the body defined by the sample volume.
125107Sample Volume DepthThe depth of the center of the Doppler sample volume measured from skin line along the Doppler line.
125195Pediatric Cardiac Ultrasound ReportPediatric Cardiac Ultrasound Report (document title)
125196Fetal Cardiac Ultrasound ReportFetal Cardiac Ultrasound Report (document title)
125197Adult Congenital Cardiac Ultrasound ReportAdult Congenital Cardiac Ultrasound Report (document title)
125200Adult Echocardiography Procedure ReportDocument title of adult echocardiography procedure (evidence) report.
125201Illustration of FindingAn image that is a pictorial representation of findings. The concept is typically used as a purpose of reference to an image, such as a depiction of myocardium segments depicting wall motion function.
125202LV Wall Motion Score IndexThe average of all scored (non-zero) Left Ventricle segment wall motion scores.
125203Acquisition ProtocolA type of clinical acquisition protocol for creating images or image-derived measurements. Acquisition protocols may be specific to a manufacturer’s product.
125204Area-length biplaneMethod for calculating left ventricular volume from two orthogonal views containing the true long axis (usually the apical 4 and 2 chamber views). Volume = [p L1/6]*[(4A1)¸(pL1)]*[(4A2)¸(p L2)]
125205Area-Length Single PlaneMethod for calculating left ventricular volume from a view containing the true long axis (usually the apical 4-chamber view). Volume = [8(A)2]¸[3pL]
125206CubeMethod (formula) for calculating left ventricle volumes and function derivatives (EF, SV, SI, etc.) that estimates the volume as the cube of diameter.
125207Method of Disks, BiplaneMethod of calculating volume based on the summation of disk volumes. The disk axis is parallel to the left ventricular long axis and using a disk diameter averaged from the two chamber and four chamber views.
125208Method of Disks, Single PlaneMethod of calculating volume based on the summation of disk volumes. The disk axis is parallel to the left ventricular long axis with disk diameter taken from the four-chamber view.
125209TeichholzMethod (formula) for calculating left ventricle volumes and function derivatives (EF, SV, SI, etc.) Volume = [7.0/(2.4+D)]*D3
125210Area by Pressure Half-TimeMitral valve area (cm2) by Pressure Half-time = 220 (cm2.ms) / PHT (ms)
125211Biplane EllipseArea = P/4 X d1 X d2 d1 = anterior/posterior axis d2 = medial/lateral axis Hagen-Ansert, Sandra L., Textbook of Diagnostic Ultrasound, ed. 3, The C.V.Mosby Co., 1989, p. 73.
125212Continuity EquationFor conduits in series (“in continuity”), volume flow is equal: A1*V1 = A2*V2. where V is the velocity
125213Continuity Equation by Mean VelocityFor conduits in series (“in continuity”), volume flow is equal: A1*V1 = A2*V2. where V is the mean velocity
125214Continuity Equation by Peak VelocityFor conduits in series (“in continuity”), volume flow is equal: A1*V1 = A2*V2. where V is the peak velocity
125215Continuity Equation by Velocity Time IntegralFor conduits in series (“in continuity”), volume flow is equal: A1*V1 = A2*V2. where V is the velocity time integral
125216Proximal Isovelocity Surface AreaUtilizes aliasing velocity (by color Doppler) of flow into an orifice (often regurgitant or stenotic) to measure instantaneous flow rate, orifice area, and flow volume. The instantaneous flow rate = (2 π r2 vav ) * (α / π) where vav is the constant velocity known as aliasing velocity at radius r, vp is the peak velocity at the orifice, and α is the angle in radians of the constant velocity surface. Estimated Orifice area = Flow rate / vp, where vp is the peak velocity at the orifice and the flow rate is the PISA peak flow rate. The volume flow is then the product of the orifice area and Velocity Time Integral
125217Full BernoulliΔP = 4*(V12 – V22)
125218Simplified BernoulliΔP = 4*V2
125219Doppler Volume FlowVolume flow = Conduit CSA * ( Velocity Time Integral )
125220PlanimetryDirect measurement of an area by tracing an irregular perimeter
125221Left Ventricle Mass by M-modeMass = 1.04 * [(ST+LVID+PWT)3-LVID3] * 0.8+ 0.6. Mass unit is grams and length in cm.
125222Left Ventricle Mass by Truncated EllipseMass = 1.05 P ( (b + t)2 X (2/3 (a + t) + d – d3/3(a + t)2 ) – b2 (2/3a + d – d3/3a2) ) a = Semi-major axis from widest minor axis radius to apex. b = Short axis radius calculated from short axis cavity area t = Myocardial thickness calculated from short axis epicardial and cavity areas d = Truncated semi-major axis from widest short axis diameter to plane of mitral annulus. Mass unit is grams and length in cm. Schiller NB et al: Recommendations for quantification of the left ventricle by two-dimensional echocardiography, American Society of Echocardiography 2:364, 1989.
1252234 Point Segment Finding ScaleA four point, echocardiographic numeric scoring scheme of myocardium segments based on evaluation of wall motion and ventricle morphology. Recommendations for Quantitation of the Left Ventricle by Two-Dimensional Echocardiography, Journal of the American Society of Echocardiography, 2:358-367, 1989.
1252245 Point Segment Finding ScaleA five point, echocardiographic numeric scoring scheme of myocardium segments based on evaluation of wall motion and ventricle morphology. Recommendations for Quantitation of the Left Ventricle by Two-Dimensional Echocardiography, Journal of the American Society of Echocardiography, 2:358-367, 1989.
1252255 Point Segment Finding Scale With Graded HypokinesisA five point, echocardiographic numeric scoring scheme of myocardium segments based on evaluation of wall motion and ventricle morphology, with severity of hypokinesis graded. Recommendations for Quantitation of the Left Ventricle by Two-Dimensional Echocardiography, Journal of the American Society of Echocardiography, 2:358-367, 1989.
125226Single Plane EllipseMethod of estimating volume from a planar ellipse. Equivalent to Biplane Ellipse with an assumption that the ellipse in the orthogonal plane has identical major and minor diameters.
125227Modified SimpsonModified Simpson’s Method of estimating ventricular volume, based on the method of disks with paired apical views. Schiller NB, et al. “Recommendations for quantitation of the left ventricle by two-dimensional echocardiography. American Society of Echocardiography Committee on Standards, Subcommittee on Quantitation of Two-Dimensional Echocardiograms”. J Am Soc Echocardiogr. 1989 2(5):358-367. Sep-Oct.
125228Bullet MethodBullet method of estimating ventricular volume. Volume = 5/6 * L * S L : Left ventricle long axis length S : Left ventricle area, SAX view at level of Mitral Valve.
125230Power DopplerColor coded ultrasound images of blood flow which depict the amplitude, or power, of Doppler signals.
1252313D modeVolumetric ultrasound imaging
125233Start of drug dose administrationOnset of administration of dose of a drug
125234Start of contrast agent administrationOnset of contrast agent administration
125235Destruction of microbubblesDestruction of ultrasonic contrast microbubbles by a high-energy ultrasound pulse
125236Onset of exerciseInstant at which exercise begins
125237Cessation of exerciseInstant at which exercise ends
125238Onset of stimulationInstant at which stimulation begins
125239Cessation of stimulationInstant at which stimulation ends
125240Line scan patternUltrasound transducer scan pattern in which information is gathered along a line
125241Plane scan patternUltrasound transducer scan pattern in which information is gathered within a plane
125242Volume scan patternUltrasound transducer scan pattern in which information is gathered within a volume
125251Non-imaging Doppler ultrasound transducer geometryUltrasound transducer geometry characterized by a single scan line used for PW or CW Doppler scanning
125252Linear ultrasound transducer geometryUltrasonic transducer geometry characterized by parallel lines
125253Curved linear ultrasound transducer geometryUltrasonic transducer geometry characterized by radial lines normal to the outside of a curved surface
125254Sector ultrasound transducer geometryUltrasonic transducer geometry characterized by lines originating from a common apex
125255Radial ultrasound transducer geometryUltrasonic transducer geometry characterized by lines eminating radially from a single point
125256Ring ultrasound transducer geometryUltrasonic transducer geometry characterized by a circular ring of transducer elements
125257Fixed beam directionUltrasonic steering technique consisting of a single beam normal to the transducer face steered by the orientation of the probe
125258Mechanical beam steeringUltrasonic steering technique consisting of mechanically directing the beam
125259Phased beam steeringUltrasonic steering technique consisting of electronically-steered beams
125261External TransducerTransducer is designed to be placed onto the surface of the subject
125262Transesophageal TransducerTransducer is designed for insertion into the esophagus
125263Endovaginal TransducerTransducer is designed for insertion into the vagina
125264Endorectal TransducerTransducer is designed for insertion into the rectum
125265Intravascular TransducerTransducer is designed for insertion via a catheter
125270Left Ventricle Mass by Area Lengthmethod to measure the mass of the Left Ventricle via the ASE area-length method at end diastole. LV Mass = 1.05*(5/6*(A1*(L+t) ) - 5/6*(A2*L) ) A1 = Left Ventricle epicardial SAX area at the level of of the papillary muscle tips at end diastole. A2 = Left Ventricle endocardial SAX area cavity area at the level of the papillary muscle tips at end diastole. L = Left Ventricle apical view long axis length at end diastole. t = Myocardial thickness can be computed as : t = sqrt( A1/3.14) – sqrt ( A2/3.14) Reference: 1) Schiller, N.B., et al. “Recommendations for Quantification of the LV by Two-dimensional Echocardiography." J Am Soc Echo, Vol. 2, No. 5: 358-367, Sep-Oct 1989. 2) Reichek, N., et al. "Anatomic Validation of Left Ventricular Mass Estimates from Clinical Two-dimensional Echocardiography: Initial Results." Circulation, Vol. 67, No. 2: 348-52, February 1983.
125271Left Ventricle Mass by M-mode – adjusted by HeightEquation = Left Ventricle Mass by M-mode (in gram) / ( Height (in meter) )^2.7 Reference: Giovanni De Simone, et al. “Effect of Growth on Variability of Left Ventricular Mass: Assessment of Allometric Signals in Adults and Children and Their Capacity to Predict Cardiovascular Risk”. New York, New York and Cincinnati, Ohio.
125272Left Ventricle Mass by Truncated Ellipse – adjusted by HeightEquation = Left Ventricle Mass by Truncated Ellipse / Height^2.7 Reference: Giovanni De Simone, et al. “Effect of Growth on Variability of Left Ventricular Mass: Assessment of Allometric Signals in Adults and Children and Their Capacity to Predict Cardiovascular Risk”. New York, New York and Cincinnati, Ohio.
125273Left Ventricle Mass by Area Length – adjusted by HeightEquation = Left Ventricle Mass by Area Length / Height^2.7 Reference: Giovanni De Simone, et al. “Effect of Growth on Variability of Left Ventricular Mass: Assessment of Allometric Signals in Adults and Children and Their Capacity to Predict Cardiovascular Risk”. New York, New York and Cincinnati, Ohio.
125901CARDIOsphereCARDIOsphereTM ultrasonic contrast agent produced by POINT Biomedical
125902EchovistEchovist® ultrasonic contrast agent produced by Schering AG
125903ImagifyImagifyTM ultrasonic contrast agent produced by Accusphere Inc.
125904LevovistLevovist® ultrasonic contrast agent produced by Schering AG.
125905SonazoidSonazoidTM ultrasonic contrast agent produced by Daiichi Pharmaceutical / General Electric
125906SonoVueSonoVueTM ultrasonic contrast agent produced by Bracco Diagnostics
125907Targestar-BTargestarTM-B ultrasonic contrast agent produced by Targeson LLC
125908Targestar-PTargestarTM-P ultrasonic contrast agent produced by Targeson LLC
113900Dose Check Alert DetailsReport section about cumulative dose alerts during an examination.
113901DLP Alert Value ConfiguredFlag denoting whether a DLP Alert Value was configured.
113902CTDIvol Alert Value ConfiguredFlag denoting whether a CTDIvol Alert Value was configured.
113903DLP Alert ValueCumulative Dose Length Product value configured to trigger an alert. See NEMA XR 25-2010 Dose Check Standard.
113904CTDIvol Alert ValueCumulative CTDIvol value configured to trigger an alert. See NEMA XR 25-2010 Dose Check Standard.
113905Accumulated DLP Forward EstimateA forward estimate of the accumulated DLP plus the estimated DLP for the next Protocol Element Group. See NEMA XR 25-2010 Dose Check Standard.
113906Accumulated CTDIvol Forward EstimateA forward estimate at a given location of the accumulated CTDIvol plus the estimated CTDIvol for the next Protocol Element Group. See NEMA XR 25-2010 Dose Check Standard.
113907Reason for ProceedingReason provided for proceeding with a procedure that is projected to exceed a configured dose value.
113908Dose Check Notification DetailsReport section about dose notifications during a protocol element.
113909DLP Notification Value ConfiguredFlag denoting whether a DLP Notification Value was configured.
113910CTDIvol Notification Value ConfiguredFlag denoting whether a CTDIvol Notification Value was configured.
113911DLP Notification ValueDose Length Product value configured to trigger a notification for a given protocol element.
113912CTDIvol Notification ValueCTDIvol value configured to trigger a notification for a given protocol element.
113913DLP Forward EstimateA forward estimate of the DLP for the next Protocol Element Group. See NEMA XR 25-2010 Dose Check Standard.
113914CTDIvol Forward EstimateA forward estimate of the CTDIvol for the next Protocol Element Group. See NEMA XR 25-2010 Dose Check Standard.
ARCHIVEArchiveArchive device
ARAutorefractionAutorefraction device
ASAngioscopyAngioscopy device
AUAudioAudio object
BDUSUltrasound Bone DensitometryUltrasound Bone Densitometry (modality)
BIBiomagnetic imagingBiomagnetic imaging device
BMDBone Mineral DensitometryBone Mineral Densitometry by X-Ray (modality), including dual-energy X-Ray absorptiometry (DXA) and morphometric X-Ray absorptiometry (MXA)
CADComputer Assisted Detection/DiagnosisComputer Assisted Detection/Diagnosis device
CAPTUREImage CaptureImage Capture Device, includes video capture
CDColor flow DopplerColor flow Doppler
CFCinefluorographyCinefluorography
COMPComputation ServerComputation Server; includes radiotherapy planning
CPCulposcopyCulposcopy
CRComputed RadiographyComputed Radiography device
CSCystoscopyCystoscopy
CTComputed TomographyComputed Tomography device
DDDuplex DopplerDuplex Doppler
DFDigital fluoroscopyDigital fluoroscopy
DGDiaphanographyDiaphanography device
DMDigital microscopyDigital microscopy
DOCDDocument Digitizer EquipmentEquipment that digitized hardcopy documents and imported them.
DSDigital Subtraction AngiographyDigital Subtraction Angiography
DSSDepartment System SchedulerDepartment System Scheduler, workflow manager; includes RIS
DXDigital RadiographyDigital Radiography device
ECEchocardiographyEchocardiography
ECGElectrocardiographyElectrocardiography device
EPSCardiac ElectrophysiologyCardiac Electrophysiology device
ESEndoscopyEndoscopy device
FFemaleFemale sex
FAFluorescein angiographyFluorescein angiography
FCFemale changed to MaleFemale sex changed to Male sex
FILMDFilm DigitizerFilm Digitizer
FPFemale PseudohermaphroditeFemale Pseudohermaphrodite
FSFundoscopyFundoscopy
GMGeneral MicroscopyGeneral Microscopy device
HHermaphroditeHermaphrodite
HCHard CopyHard Copy
HDHemodynamic WaveformHemodynamic Waveform acquisition device
IOIntra-oral RadiographyIntra-oral Radiography device
IVUSIntravascular UltrasoundIntravascular Ultrasound device
KERKeratometryKeratometry device
KOKey Object SelectionKey Object Selection object
LENLensometryLensometry device
LOGProcedure LoggingProcedure Logging device; includes cath lab logging
LPLaparoscopyLaparoscopy
LSLaser surface scanLaser surface scan device
MMaleMale sex
MAMagnetic resonance angiographyMagnetic resonance angiography
MCMale changed to FemaleMale sex changed to Female sex
MCDMedia Creation DeviceA device that creates DICOM PS 3.10 interchange media. For example, a CD creator that is managed by the Media Creation Management Service Class.
MEDIMPortable Media Importer EquipmentEquipment that retrieved and imported objects from interchange Media.
MGMammographyMammography device
MPMale PseudohermaphroditeMale Pseudohermaphrodite
MRMagnetic ResonanceMagnetic Resonance device
MSMagnetic resonance spectroscopyMagnetic resonance spectroscopy
NEARLINENearlineInstances need to be retrieved from relatively slow media such as optical disk or tape
NMNuclear MedicineNuclear Medicine device
OAMOphthalmic Axial MeasurementsMeasurements of the axial length of the eye which are done by various devices
OCTOptical Coherence TomographyModality device that uses an interferometric, non-invasive optical tomographic technique to image 2D slices and 3D volumes of tissue using visible and near visible frequencies.
OFFLINEOfflineInstances need to be retrieved by manual intervention
ONLINEOnlineInstances are immediately available
OPOphthalmic photographyOphthalmic photography modality
OPMOphthalmic MappingModality device that measures corneal topography, corneal or retinal thickness, and other similar parameters that are typically displayed as maps.
OPROphthalmic RefractionModality device that measures the refractive characteristics of the eye.
OPTOphthalmic TomographyTomography of the eye acquired by a modality that is based on light and optical principles. Tomography based on other principles, such as ultrasound, is excluded.
OPVOphthalmic Visual FieldModality device that measures visual fields and perform visual perimetry.
OTOther ModalityOther Modality device
PRPresentation StatePresentation State object
PRINTHard Copy Print ServerHard Copy Print Server; includes printers with embedded DICOM print server
PTPositron emission tomographyPositron emission tomography (PET) device
PXPanoramic X-RayPanoramic X-Ray device
REGRegistrationRegistration
RFRadiofluoroscopyRadiofluoroscopy device
RGRadiographic imagingRadiographic imaging (conventional film/screen)
RTRadiation Therapy DeviceRadiation Therapy Device; includes linear accelerator, proton therapy
RTDOSERadiotherapy DoseRadiotherapy Dose
RTIMAGERadiotherapy ImageRadiotherapy Imaging device; includes portal imaging
RTPLANRadiotherapy PlanRadiotherapy Plan
RTRECORDRadiotherapy Treatment RecordRadiotherapy Treatment Record
RTSTRUCTRadiotherapy Structure SetRadiotherapy Structure Set
SEGSegmentationSegmentation
SMSlide MicroscopySlide Microscopy
SMRStereometric RelationshipStereometric image pairing modality
SRStructured Report DocumentStructured Report Document
SRFSubjective RefractionSubjective Refraction device
STSingle-photon emission computed tomographySingle-photon emission computed tomography (SPECT) device
TGThermographyThermography device
UUnknown SexUnknown Sex
UNAVAILABLEUnavailableInstances cannot be retrieved.
USUltrasoundUltrasound device
VAVisual AcuityVisual Acuity device
VFVideofluorographyVideofluorography
VIDDVideo Tape Digitizer EquipmentEquipment that digitizes video tape and imports it.
WSDWorkstationWorkstation
XAX-Ray AngiographyX-Ray Angiography device
XCExternal-camera PhotographyExternal-camera Photography device
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+

DICOM Code Definitions (DCM)

+

The meanings of codes defined in DICOM, either explicitly or by reference to another part of DICOM or an external reference document or standard

+

These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association"

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CodeDisplayDefinition
109001Digital timecode (NOS)A signal transmitted for the purpose of interchange of the current time, not specific to any source or methodology.
109002ECG-based gating signal, processedA signal which is generated for each detection of a heart beat
109003IRIG-B timecodeA signal transmitted by the Inter-Range Instrumentation Group for the purpose of synchronizing time clocks.
109004X-Ray Fluoroscopy On SignalA signal which indicates that X-Ray source has been activated for fluoroscopy use.
109005X-Ray On TriggerA signal that indicated that the X-Ray source has been activated for image recording.
109006Differential signalAn electrical signal derived from two electrodes
109007His bundle electrogramAn electrophysiological recording from the HIS nerve bundle
109008Monopole signalAn electrical signal from one electrode relative to an indifferent potential.
109009Pacing (electrical) stimulus, voltageThe voltage stimulus during cardiac pacing
109010Radio frequency ablation, powerThe power injected during RF ablation procedure
109011Voltage measurement by basket catheterElectrophysiological signals acquired using a multi-splined catheter each equipped with multiple electrodes.
109012Voltage measurement by mapping catheterElectrophysiological signals acquired using a steerable catheter
109013Voltage measurement, NOSA voltage measurement not otherwise specified
10901435% of thermal COA signal point which is 35% of the peak thermal cardiac output signal
10901570% of thermal COA signal point which is 70% of the peak thermal cardiac output signal
109016A wave peak pressureThe peak pressure of each heart beat in the atrium caused by the atrial contraction
109017A wave pressure, averageThe average of several A wave pressure measurements
109018Beat detected (accepted)An identified cardiac beat used in the determination of a measurement
109019Beat detected (rejected)An identified cardiac beat not used in the determination of a measurement
109020Diastolic pressure, averageThe average of several diastolic pressure measurements
109021Diastolic pressure nadirThe lowest pressure value excluding any undershoot artifact.
109022End diastoleThe moment at the end of the diastolic phase of the cardiac cycle.
109023End of expirationThe moment at the end of respiratory expiration
109024End of inspirationThe moment at the end of respiratory inspiration
109025Max dp/dtThe maximum positive rate of change of pressure.
109026Max neg dp/dtThe maximum negative rate of change of pressure.
109027Mean blood pressureThe average blood pressure value, generally over 2 or more seconds
109028Peak of thermal cardiac output bolusThe peak change in blood temperature during a thermal cardiac output measurement.
109029Start of expirationThe moment respiratory expiration begins
109030Start of inspirationThe moment of respiratory inspiration begins
109031Start of thermal cardiac output bolusThe first discernable blood temperature change following the injectate during a thermal cardiac output measurement
109032Systolic pressure, averageThe average of several systolic blood pressure measurements.
109033Systolic peak pressureThe highest systolic blood pressure value excluding any overshoot artifact
109034V wave peak pressureThe peak pressure of each heart beat in the atrium caused by the filling of the atrium.
109035V wave pressure, averageThe average of several V wave pressure measurements
109036Valve closeThe moment at which a heart valve closes
109037Valve openThe moment at which a heart valve opens
109038Ablation offThe moment when RF ablation current is turned off.
109039Ablation onThe moment when RF ablation current is turned on
109040HIS bundle waveThe moment in the cardiac cycle when the HIS bundle nerves depolarize.
109041P waveThe surface electrocardiogram of the atrial contraction
109042Q waveThe first negative deflection of the electrocardiogram cause by ventricular depolarization
109043R waveThe first positive deflection the electrocardiogram cause by ventricular depolarization
109044S waveThe first negative deflection after the R wave.
109045Start of atrial contractionThe beginning of the atrial contraction
109046Start of atrial contraction (subsequent)The beginning of the second atrial contraction of two consecutive beats.
109047Stimulation at rate 1 intervalThe stimulation interval during cardiac stimulation first used in a pacing train
109048Stimulation at rate 2 intervalThe stimulation interval different from the first stimulation interval used in a pacing train
109049Stimulation at rate 3 intervalA stimulation interval different from and subsequent to the second interval in a pacing train.
109050Stimulation at rate 4 intervalDescribes a stimulation interval different from and subsequent to the third interval in a pacing train
109051T waveThe electrocardiogram deflection caused by ventricular repolarization.
109052V waveThe peak pressure of each heart beat monitored in the atrium caused by the filling of the atrium
109053V wave of next beatThe second V wave measurement of two consecutive beats.
109054Patient StateA description of the physiological condition of the patient
109055Protocol StageThe exercise level during a progressive cardiac stress test.
109056Stress ProtocolA series of physiological challenges designed to progressively increase the work of the heart.
109057Catheterization Procedure PhaseA subpart of a cardiac catheterization procedure
109058Contrast PhaseThe subpart of a cardiac catheterization procedure in which a radio-opaque contrast medium is injected into the patient.
109059Physiological challengesPhysical changes administered to a patient in order to elicit an physiological response
109060Procedure Step NumberEnumeration of a subpart of a catheterization procedure
109061EP Procedure PhaseA subpart of en electrophysiological procedure
109063Pulse train definitionA means of defining a series of cardiac stimulation pulses
109070End of systole
109071Indicator mean transit timeTime for a median particle to travel from point of injection to point of detection
109072TauThe time constant of isovolumic pressure fall
109073V max myocardialMaximum velocity of myocardial contractility
109091Cardiac Stress StateImaging after injection of tracer during increased cardiac workload or increased myocardial blood flow, achieved by either exercise or pharmacologic means.
109092Reinjection StateImaging after injection of additional tracer under resting conditions.
109093Redistribution StateImaging after allowing a moderate amount of time for tracer to move from its initial sites of uptake.
109094Delayed Redistribution StateImaging after allowing an extended amount of time for tracer to move from its initial sites of uptake.
109095Peak stress statePeak Cardiac stress state
109096Recovery stateRecovery from cardiac stress
109101Acquisition EquipmentEquipment that originally acquired the data stored within composite instances. For example, a CT, MR or Ultrasound modality.
109102Processing EquipmentEquipment that has processed composite instances to create new composite instances. For example, a 3D Workstation.
109103Modifying EquipmentEquipment that has modified existing composite instances (without creating new composite instances). For example, a QA Station or Archive.
109104De-identifying EquipmentEquipment that has modified an existing composite instance to remove patient identifying information
109105Frame Extracting EquipmentEquipment that has processed composite instances to create new composite instances by extracting selected frames from the original instance.
109110VoiceThe sound of a human’s speech, recorded during a procedure.
109111Operator’s narrativeThe voice of a device operator, recorded during a procedure.
109112Ambient room environmentThe ambient sound recorded during a procedure, which may or may not include voice and other types of sound.
109113Doppler audioThe Doppler waveform recorded as an audible signal.
109114PhonocardiogramThe sound of the human heart beating.
109115Physiological audio signalAny sound made by the human body.
109116Arterial Pulse WaveformA digitized signal from the patient arterial system collected through pulse oximetry or other means
109117Respiration WaveformA digitized signal from the patient respiratory system representing respiration
109120On admission to unitThe occasion on which a procedure was performed on admission to a specialist unit (e.g., intensive care).
109121On dischargeThe occasion on which a procedure was performed on discharge from hospital as an in-patient.
109122On discharge from unitThe occasion on which a procedure was performed on discharge from a specialist unit (e.g., intensive care).
109123Pre-interventionThe occasion on which a procedure was performed immediately prior to non-surgical intervention (e.g, percutaneous angioplasty, biopsy).
109124Post-interventionThe occasion on which a procedure was performed immediately after to non-surgical intervention (e.g, percutaneous angioplasty, biopsy).
109125At last appointmentThe occasion on which a procedure was performed at the most recent outpatient encounter.
109132Joint position methodThe active or passive joint positioning during acquisition
109133Physical forceA physical force applied during acquisition
109134Prior to voidingPrior to voiding
109135Post voidingPost voiding
109136Neutral musculoskeletal positionNeutral musculoskeletal position
109200America Kennel ClubAmerica Kennel Club
109201America’s Pet Registry Inc.America’s Pet Registry Inc.
109202American Canine AssociationAmerican Canine Association
109203American Purebred RegistryAmerican Purebred Registry
109204American Rare Breed AssociationAmerican Rare Breed Association
109205Animal Registry UnlimitedAnimal Registry Unlimited
109206Animal Research FoundationAnimal Research Foundation
109207Canadian Border Collie AssociationCanadian Border Collie Association
109208Canadian Kennel ClubCanadian Kennel Club
109209Canadian Livestock Records AssociationCanadian Livestock Records Association
109210Canine Federation of CanadaCanine Federation of Canada
109211Continental Kennel ClubContinental Kennel Club
109212Dog Registry of AmericaDog Registry of America
109213Federation of International CaninesFederation of International Canines
109214International Progressive Dog Breeders’ AllianceInternational Progressive Dog Breeders’ Alliance
109215National Kennel ClubNational Kennel Club
109216North American Purebred Dog RegistryNorth American Purebred Dog Registry
109217United All Breed RegistryUnited All Breed Registry
109218United Kennel ClubUnited Kennel Club
109219Universal Kennel Club InternationalUniversal Kennel Club International
109220Working Canine Association of CanadaWorking Canine Association of Canada
109221World Kennel ClubWorld Kennel Club
109222World Wide Kennel ClubWorld Wide Kennel Club
110020Sheet Film DigitizedDigitization of Sheet Film
110021Cine Film DigitizedDigitization of Cine Film
110022Video Tape DigitizedDigitization of Video Tape
110023Paper DigitizedDigitization of pages of a paper document (Units may be specified as Pages, Documents)
110024CD ImportedImportation of CD
110025DVD ImportedImportation of DVD
110026MOD ImportedImportation of MOD
110027Studies ImportedImportation of DICOM Studies
110028Instances ImportedImportation of DICOM Composite Instances
110100Application ActivityAudit event: Application Activity has taken place
110101Audit Log UsedAudit event: Audit Log has been used
110102Begin Transferring DICOM InstancesAudit event: Storage of DICOM Instances has begun
110103DICOM Instances AccessedAudit event: DICOM Instances have been created, read, updated, or deleted -audit event
110104DICOM Instances TransferredAudit event: Storage of DICOM Instances has been completed
110105DICOM Study DeletedAudit event: Entire Study has been deleted
110106ExportAudit event: Data has been exported out of the system
110107ImportAudit event: Data has been imported into the system
110108Network EntryAudit event: System has joined or left network
110109Order RecordAudit event: Order has been created, read, updated or deleted
110110Patient RecordAudit event: Patient Record has been created, read, updated, or deleted
110111Procedure RecordAudit event: Procedure Record has been created, read, updated, or deleted
110112QueryAudit event: Query has been made
110113Security AlertAudit event: Security Alert has been raised
110114User AuthenticationAudit event: User Authentication has been attempted
110120Application StartAudit event: Application Entity has started
110121Application StopAudit event: Application Entity has stopped
110122LoginAudit event: User login has been attempted
110123LogoutAudit event: User logout has been attempted
110124AttachAudit event: Node has been attached
110125DetachAudit event: Node has been detached
110126Node AuthenticationAudit event: Node Authentication has been attempted
110127Emergency Override StartedAudit event: Emergency Override has started
110128Network ConfigurationAudit event: Network configuration has been changed
110129Security ConfigurationAudit event: Security configuration has been changed
110130Hardware ConfigurationAudit event: Hardware configuration has been changed
110131Software ConfigurationAudit event: Software configuration has been changed
110132Use of Restricted FunctionAudit event: A use of a restricted function has been attempted
110133Audit Recording StoppedAudit event: Audit recording has been stopped
110134Audit Recording StartedAudit event: Audit recording has been started
110135Object Security Attributes ChangedAudit event: Security attributes of an object have been changed
110136Security Roles ChangedAudit event: Security roles have been changed
110137User security Attributes ChangedAudit event: Security attributes of a user have been changed
110150ApplicationAudit participant role ID of software application
110151Application LauncherAudit participant role ID of software application launcher, i.e., the entity that started or stopped an application.
110152Destination Role IDAudit participant role ID of the receiver of data
110153Source Role IDAudit participant role ID of the sender of data
110154Destination MediaAudit participant role ID of media receiving data during an export.
110155Source MediaAudit participant role ID of media providing data during an import.
110180Study Instance UIDParticipantObjectID type: Study Instance UID
110181SOP Class UIDParticipantObjectID type: SOP Class UID
110182Node IDID of a node that is a participant object of an audit message
110138Emergency Override StoppedAudit event: Emergency Override has Stopped
110139Remote Service Operation StartedAudit event: Remote Service Operation has Begun
110140Remote Service Operation StoppedAudit event: Remote Service Operation has Stopped
110141Local Service Operation StartedAudit event: Local Service Operation has Begun
110142Local Service Operation StoppedAudit event: Local Service Operation Stopped
110030USB Disk EmulationA device that connects using the USB hard drive interface. These may be USB-Sticks, portable hard drives, and other technologies.
110031EmailEmail and email attachments used as a media for data transport.
110032CDCD-R, CD-ROM, and CD-RW media used for data transport.
110033DVDDVD, DVD-RAM, and other DVD formatted media used for data transport.
110034Compact FlashMedia that comply with the Compact Flash standard.
110035Multi-media CardMedia that comply with the Multi-media Card standard.
110036Secure Digital CardMedia that comply with the Secure Digital Card standard.
110037URIURI Identifier for network or other resource, see RFC 3968
110038Paper DocumentAny paper or similar document.
110190Issuer of IdentifierSystem, organization, agency, or department that has assigned an instance identifier (such as placer or filler number, patient or provider identifier, etc.)
110500Doctor cancelled procedureProcedure order cancelled by requesting physician or other authorized physician
110501Equipment failureEquipment failure prevented completion of procedure
110502Incorrect procedure orderedProcedure discontinued due to incorrect procedure being ordered
110503Patient allergic to media/contrastProcedure discontinued due to patient allergy to media/contrast (reported or reaction)
110504Patient diedProcedure discontinued due to death of Patient
110505Patient refused to continue procedureProcedure discontinued due to patient refusal to continue procedure
110506Patient taken for treatment or surgeryProcedure discontinued due to patient being taken for treatment or surgery
110507Patient did not arrivePatient did not arrive for procedure
110508Patient pregnantProcedure discontinued due to patient pregnancy (reported or determined)
110509Change of procedure for correct chargingProcedure discontinued to restart with new procedure code for correct charging
110510Duplicate orderProcedure discontinued due to duplicate orders received for same procedure
110511Nursing unit cancelProcedure order cancelled by nursing unit
110512Incorrect side orderedProcedure discontinued due to incorrect side (laterality) being ordered
110513Discontinued for unspecified reasonProcedure discontinued for unspecified reason
110514Incorrect worklist entry selectedProcedure discontinued due to incorrect patient or procedure step selected from modality worklist
110515Patient condition prevented continuingPatient condition prevented continuation of procedure
110516Equipment changeProcedure step is discontinued to change to other equipment or modality
110518Patient MovementA movement of the patient affecting test quality
110519Operator ErrorAn error of the operator affecting test quality
110521Objects incorrectly formattedOne or more of the objects is malformed.
110522Object Types not supportedReceiving System is unable to accept the object type.
110523Object Set incompleteOne or more objects associated with the object set is missing.
110524Media FailureThe contents of the Media could not be accessed properly.
110526Resource pre-emptedProcedure discontinued due to necessary equipment, staff or other resource becoming (temporarily) unavailable to the procedure.
110527Resource inadequateProcedure discontinued due to necessary equipment, staff or other resource being inadequate to complete the procedure.
110528Discontinued Procedure Step rescheduledA new Procedure Step has been scheduled to replace the Discontinued Procedure Step.
110529Discontinued Procedure Step rescheduling recommendedIt is recommended that a new Procedure Step be scheduled to replace the Discontinued Procedure Step.
110001Image ProcessingImage processing work item
110002Quality ControlQuality control work item
110003Computer Aided DiagnosisComputer aided diagnosis work item
110004Computer Aided DetectionComputer aided detection work item
110005InterpretationInterpretation work item
110006TranscriptionTranscription work item
110007Report VerificationReport verification work item
110008PrintPrint work item
110009No subsequent Workitems
110010FilmFilm type of output
110011DictationDictation type of output
110012TranscriptionTranscription type of output
110013Media ImportThe procedure to read DICOM instances from DICOM interchange media, coerce identifying attributes into the local namespace if necessary, and make the instances available.
110800Spin Tagging Perfusion MR Signal IntensitySignal intensity of a Spin tagging Perfusion MR image. Spin tagging is a technique for the measurement of blood perfusion, based on magnetically labeled arterial blood water as an endogenous tracer.
110801Contrast Agent Angio MR Signal IntensitySignal intensity of a Contrast Agent Angio MR image.
110802Time Of Flight Angio MR Signal IntensitySignal intensity of a Time-of-flight (TOF) MR image. Time-of-flight (TOF) is based on the phenomenon of flow-related enhancement of spins entering into an imaging slice. As a result of being unsaturated, these spins give more signal that surrounding stationary spins.
110803Proton Density Weighted MR Signal IntensitySignal intensity of a Proton Density Weighted MR image. All MR images have intensity proportional to proton density. Images with very little T1 or T2 weighting are called ‘PD-weighted’.
110804T1 Weighted MR Signal IntensitySignal intensity of T1 Weighted MR image. A T1 Weighted MR image is created typically by using short TE and TR times.
110805T2 Weighted MR Signal IntensitySignal intensity of a T2 Weighted MR image. T2 Weighted image contrast state is approached by imaging with a TR long compared to tissue T1 (to reduce T1 contribution to image contrast) and a TE between the longest and shortest tissue T2s of interest.
110806T2* Weighted MR Signal IntensitySignal intensity of a T2* Weighted MR image. The T2* phenomenon results from molecular interactions (spin spin relaxation) and local magnetic field non-uniformities, which cause the protons to precess at slightly different frequencies.
110807Field Map MR Signal IntensitySignal intensity of a Field Map MR image. A Field Map MR image provides a direct measure of the B0 inhomogeneity at each point in the image.
110808Fractional AnisotropyCoefficient reflecting the fractional anisotropy of the tissues, derived from a diffusion weighted MR image. Fractional anisotropy is proportional to the square root of the variance of the Eigen values divided by the square root of the sum of the squares of the Eigen values.
110809Relative AnisotropyCoefficient reflecting the relative anisotropy of the tissues, derived from a diffusion weighted MR image.
110810Volumetric Diffusion Dxx ComponentDxx Component of the diffusion tensor, quantifying the molecular mobility along the X axis.
110811Volumetric Diffusion Dxy ComponentDxy Component of the diffusion tensor, quantifying the correlation of molecular displacements in the X and Y directions.
110812Volumetric Diffusion Dxz ComponentDxz Component of the diffusion tensor, quantifying the correlation of molecular displacements in the X and Z directions.
110813Volumetric Diffusion Dyy ComponentDyy Component of the diffusion tensor, quantifying the molecular mobility along the Y axis.
110814Volumetric Diffusion Dyz ComponentDyz Component of the diffusion tensor, quantifying the correlation of molecular displacements in the Y and Z directions.
110815Volumetric Diffusion Dzz ComponentDzz Component of the diffusion tensor, quantifying the molecular mobility along the Z axis.
110816T1 Weighted Dynamic Contrast Enhanced MR Signal IntensitySignal intensity of a T1 Weighted Dynamic Contrast Enhanced MR image. A T1 Weighted Dynamic Contrast Enhanced MR image reflects the dynamics of diffusion of the exogenous contrast media from the blood pool into the extra vascular extracellular space (EES) of the brain at a rate determined by the blood flow to the tissue, the permeability of the Brain Blood Barrier (BBB), and the surface area of the perfusing vessels.
110817T2 Weighted Dynamic Contrast Enhanced MR Signal IntensitySignal intensity of a T2 Weighted Dynamic Contrast Enhanced MR image. A T2 Weighted Dynamic Contrast Enhanced MR image reflects the T2 of tissue decrease as the Gd contrast agent bolus passes through the brain.
110818T2* Weighted Dynamic Contrast Enhanced MR Signal IntensitySignal intensity of a T2* Weighted Dynamic Contrast Enhanced MR image. A T2* Weighted Dynamic Contrast Enhanced MR image reflects the T2* of tissue decrease as the Gd contrast agent bolus passes through the brain.
110819Blood Oxygenation LevelSignal intensity of a Blood Oxygenation Level image. BOLD imaging is sensitive to blood oxygenation (but also to cerebral blood flow and volume). This modality is essentially used for detecting brain activation (functional MR).
110820Nuclear Medicine Projection ActivityAccumulated decay event counts in a nuclear medicine projection image.
110821Nuclear Medicine Tomographic ActivityAccumulated decay event counts in a Nuclear Medicine Tomographic image (including PET).
110822Spatial Displacement X ComponentSpatial Displacement along axis X of a non linear deformable spatial registration image. The X axis is defined in reference to the patient’s orientation, and is increasing to the left hand side of the patient.
110823Spatial Displacement Y ComponentSpatial Displacement along axis Y of a non linear deformable spatial registration image. The Y axis is defined in reference to the patient’s orientation, and is increasing to the posterior side of the patient.
110824Spatial Displacement Z ComponentSpatial Displacement along axis Z of a Non linear deformable spatial registration image. The Z axis is defined in reference to the patient’s orientation, and is increasing toward the head of the patient.
110825Hemodynamic ResistanceMeasured resistance to the flow of blood, e.g. through the vasculature or through a heart value.
110826Indexed Hemodynamic ResistanceMeasured resistance to the flow of blood, e.g. through the vasculature or through a heart value, normalized to a particular indexed scale.
110827Tissue VelocityVelocity of tissue based on Doppler measurements.
110828Flow VelocityVelocity of blood flow based on Doppler measurements.
110829Flow VarianceStatistical variance of blood velocity relative to mean.
110830ElasticityScalar value related to the elastic properties of the tissue.
110831PerfusionScalar value related to the volume of blood perfusing into tissue.
110832Speed of soundSpeed of sound in tissue.
110833Ultrasound AttenuationReduction in strength of ultrasound signal as the wave.
110834RGB R ComponentRed component of a true color image (RGB).
110835RGB G ComponentGreen component of a true color image (RGB).
110836RGB B ComponentBlue component of a true color image (RGB).
110837YBR FULL Y ComponentY (Luminance) component of a YBR FULL image, as defined in JPEG 2000.
110838YBR FULL CB ComponentCB (Blue chrominance) component of a YBR FULL image, as defined in JPEG 2000.
110839YBR FULL CR ComponentCR (Red chrominance) component of a YBR FULL image, as defined in JPEG 2000.
110840YBR PARTIAL Y ComponentY (Luminance) component of a YBR PARTIAL image, as defined in JPEG 2000.
110841YBR PARTIAL CB ComponentCB (Blue chrominance) component of a YBR PARTIAL image, as defined in JPEG 2000.
110842YBR PARTIAL CR ComponentCR (Red chrominance) component of a YBR PARTIAL image, as defined in JPEG 2000.
110843YBR ICT Y ComponentY (Luminance) component of a YBR ICT image (Irreversible Color Transform), as defined in JPEG 2000.
110844YBR ICT CB ComponentCB (Blue chrominance) component of a YBR ICT image (Irreversible Color Transform), as defined in JPEG 2000.
110845YBR ICT CR ComponentCR (Red chrominance) component of a YBR ICT image (Irreversible Color Transform), as defined in JPEG 2000.
110846YBR RCT Y ComponentY (Luminance) component of a YBR RCT image (Reversible Color Transform), as defined in JPEG 2000.
110847YBR RCT CB ComponentCB (Blue chrominance) component of a YBR RCT image (Reversible Color Transform), as defined in JPEG 2000.
110848YBR RCT CR ComponentCR (Red chrominance) component of a YBR RCT image (Reversible Color Transform), as defined in JPEG 2000.
110849EchogenicityThe ability of a material to create an ultrasound return echo.
110850X-Ray AttenuationDecrease in the number of photons in an X-Ray beam due to interactions with the atoms of a material substance. Attenuation is due primarily to two processes, absorption and scattering.
110851X-Ray Attenuation CoefficientCoefficient which describes the fraction of a beam of X-Rays or gamma rays that is absorbed or scattered per unit thickness of the absorber. This value basically accounts for the number of atoms in a cubic cm volume of material and the probability of a photon being scattered or absorbed from the nucleus or an electron of one of these atoms.
110852MR signal intensitySignal intensity of an MR image, not otherwise specified.
110853Binary SegmentationBinary value denoting that the segmented property is present.
110854Fractional Probabilistic SegmentationProbability, defined as a percentage, that the segmented property occupies the spatial area defined by the voxel.
110855Fractional Occupancy SegmentationPercentage of the voxel area occupied by the segmented property.
110856Linear DisplacementSpatial dimension, denoting a linear displacement.
110857Photon EnergyDimension denoting the energy (frequency or wavelength) of photons.
110858TimeDimension used to sequence events, to compare the duration of events and the intervals between events.
110859AngleSpatial dimension, denoting an angle.
110860Left-Right AxisA spatial dimension axis running along a line between the patient’s left and right side.
110861Head-Foot AxisA spatial dimension axis running along a line between the patient’s head and foot.
110862Anterior-Posterior AxisA spatial dimension axis running along a line between the patient’s anterior and posterior sides.
110863Apex-Base AxisA spatial dimension axis running along a line between the apex and base of an organ, object, or chamber.
110864Anterior-Inferior AxisA spatial dimension axis running along a line between the anterior and inferior sides of an organ, object, or chamber.
110865Septum-Wall AxisA spatial dimension axis running along a line between the septum and wall of a chamber.
110866Right To LeftOrientation of a spatial dimension where increasing values run from the right to the left side of the patient.
110867Left To RightOrientation of a spatial dimension where increasing values run from the left to the right side of the patient.
110868Head To FootOrientation of a spatial dimension where increasing values run from the head to the foot of the patient.
110869Foot To HeadOrientation of a spatial dimension where increasing values run from the foot to the head of the patient.
110870Anterior To PosteriorOrientation of a spatial dimension where increasing values run from the anterior to the posterior side of the patient.
110871Posterior To AnteriorOrientation of a spatial dimension where increasing values run from the posterior to the anterior side of the patient.
110872Apex To BaseOrientation of a spatial dimension where increasing values run from the apex to the base.
110873Base To ApexOrientation of a spatial dimension where increasing values run from the base to the apex.
110874Anterior To InferiorOrientation of a spatial dimension where increasing values run from the anterior to the inferior.
110875Inferior To AnteriorOrientation of a spatial dimension where increasing values run from the inferior to the anterior.
110876Septum To WallOrientation of a spatial dimension where increasing values run from the septum of a chamber to the opposite wall.
110877Wall To SeptumOrientation of a spatial dimension where increasing values run from the opposite wall to the septum of a chamber.
113000Of InterestOf Interest
113001Rejected for Quality ReasonsRejected for Quality Reasons
113002For Referring ProviderFor Referring Provider
113003For SurgeryFor Surgery
113004For TeachingFor Teaching
113005For ConferenceFor Conference
113006For TherapyFor Therapy
113007For PatientFor Patient
113008For Peer ReviewFor Peer Review
113009For ResearchFor Research
113010Quality IssueQuality Issue
113011Document Title ModifierDocument Title Modifier
113012Key Object DescriptionKey Object Description
113013Best In Set
113014Study
113015Series
113016Performed Procedure Step
113017Stage-View
113018For PrintingFor Printing
113020For Report AttachmentSelection of information objects for attachment to the clinical report of the Current Requested Procedure
113026Double exposureDouble exposure
113030ManifestA list of objects that have been exported out of one organizational domain into another domain. Typically, the first domain has no direct control over what the second domain will do with the objects.
113031Signed ManifestA signed list of objects that have been exported out of one organizational domain into another domain, referenced securely with either Digital Signatures or MACs. Typically, the first domain has no direct control over what the second domain will do with the objects.
113032Complete Study ContentThe list of objects that constitute a study at the time that the list was created.
113033Signed Complete Study ContentThe signed list of objects that constitute a study at the time that the list was created, referenced securely with either Digital Signatures or MACs.
113034Complete Acquisition ContentThe list of objects that were generated in a single procedure step.
113035Signed Complete Acquisition ContentThe signed list of objects that were generated in a single procedure step, referenced securely with either Digital Signatures or MACs.
113036Group of Frames for DisplayA list of frames or single-frame or entire multi-frame instances that together constitute a set for some purpose, such as might be displayed together in the same viewport, as distinct from another set that might be displayed in a separate viewport.
113037Rejected for Patient Safety ReasonsList of objects whose use is potentially harmful to the patient. For example, an improperly labeled image could lead to dangerous surgical decisions.
113040Lossy CompressionLossy compression has been applied to an image.
113041Apparent Diffusion CoefficientThe image is derived by calculation of the apparent diffusion coefficient.
113042Pixel by pixel additionThe image is derived by the pixel by pixel addition of two images.
113043Diffusion weightedThe image is derived by calculation of the diffusion weighting.
113044Diffusion AnisotropyThe image is derived by calculation of the diffusion anisotropy.
113045Diffusion AttenuatedThe image is derived by calculation of the diffusion attenuation.
113046Pixel by pixel divisionThe image is derived by the pixel by pixel division of two images.
113047Pixel by pixel maskThe image is derived by the pixel by pixel masking of one image by another.
113048Pixel by pixel MaximumThe image is derived by calculating the pixel by pixel maximum of two or more images.
113049Pixel by pixel meanThe image is derived by calculating the pixel by pixel mean of two or more images.
113050Metabolite Maps from spectroscopy dataThe image is derived by calculating from spectroscopy data pixel values localized in two dimensional space based on the concentration of specific metabolites (i.e, at specific frequencies).
113051Pixel by pixel MinimumThe image is derived by calculating the pixel by pixel minimum of two or more images.
113052Mean Transit TimeThe image is derived by calculating mean transit time values.
113053Pixel by pixel multiplicationThe image is derived by the pixel by pixel multiplication of two images.
113054Negative Enhancement IntegralThe image is derived by calculating negative enhancement integral values.
113055Regional Cerebral Blood FlowThe image is derived by calculating regional cerebral blood flow values.
113056Regional Cerebral Blood VolumeThe image is derived by calculating regional cerebral blood volume values.
113057R-Coefficient MapThe image is derived by calculating R-Coefficient map values
113058Proton Density mapThe image is derived by calculating proton density values.
113059Signal Change MapThe image is derived by calculating signal change values.
113060Signal to Noise MapThe image is derived by calculating the signal to noise ratio.
113061Standard DeviationThe image is derived by calculating the standard deviation of two or more images.
113062Pixel by pixel subtractionThe image is derived by the pixel by pixel subtraction of two images.
113063T1 MapThe image is derived by calculating T1 values.
113064T2* MapThe image is derived by calculating T2* values.
113065T2 MapThe image is derived by calculating T2 values.
113066Time Course of SignalThe image is derived by calculating values based on the time course of signal.
113067Temperature encodedThe image is derived by calculating values based on temperature encoding.
113068Student’s T-TestThe image is derived by calculating the value of the Student’s T-Test statistic from multiple image samples.
113069Time To Peak mapThe image is derived by calculating values based on the time to peak.
113070Velocity encodedThe image is derived by calculating values based on velocity encoded (e.g., phase contrast).
113071Z-Score MapThe image is derived by calculating the value of the Z-Score statistic from multiple image samples.
113072Multiplanar reformattingThe image is derived by reformatting in a flat plane other than that originally acquired.
113073Curved multiplanar reformattingThe image is derived by reformatting in a curve plane other than that originally acquired.
113074Volume renderingThe image is derived by volume rendering of acquired data.
113075Surface renderingThe image is derived by surface rendering of acquired data.
113076SegmentationThe image is derived by segmentation (classification into tissue types) of acquired data.
113077Volume editingThe image is derived by selectively editing acquired data (removing values from the volume), such as in order to remove obscuring structures or noise.
113078Maximum intensity projectionThe image is derived by maximum intensity projection of acquired data.
113079Minimum intensity projectionThe image is derived by minimum intensity projection of acquired data.
113080Glutamate and glutamineFor single-proton MR spectroscopy, the resonance peak corresponding to glutamate and glutamine.
113081Choline/Creatine RatioFor single-proton MR spectroscopy, the ratio between the Choline and Creatine resonance peaks.
113082N-acetylaspartate /Creatine RatioFor single-proton MR spectroscopy, the ratio between the N-acetylaspartate and Creatine resonance peaks.
113083N-acetylaspartate /Choline RatioFor single-proton MR spectroscopy, the ratio between the N-acetylaspartate and Choline resonance peaks.
113085Spatial resamplingThe image is derived by spatial resampling of acquired data.
113086Edge enhancementThe image is derived by edge enhancement.
113087SmoothingThe image is derived by smoothing.
113088Gaussian blurThe image is derived by Gaussian blurring.
113089Unsharp maskThe image is derived by unsharp masking.
113090Image stitchingThe image is derived by stitching two or more images together.
113091Spatially-related frames extracted from the volumeSpatially-related frames in this image are representative frames from the referenced 3D volume dataset
113092Temporally-related frames extracted from the set of volumesTemporally-related frames in this image are representative frames from the referenced 3D volume dataset
113093Polar to Rectangular Scan ConversionConversion of a polar coordinate image to rectangular (Cartesian) coordinate image.
113094Creatine and CholineFor single-proton MR spectroscopy, the resonance peak corresponding to creatine and choline.
113095Lipid and LactateFor single-proton MR spectroscopy, the resonance peak corresponding to lipid and lactate.
113096Creatine+Choline/ Citrate RatioFor single-proton MR spectroscopy, the ratio between the Choline and Creatine resonance peak and the Citrate resonance peak.
113097Multi-energy proportional weightingImage pixels created through proportional weighting of multiple acquisitions at distinct X-Ray energies.
113100Basic Application Confidentiality ProfileDe-identification using a profile defined in PS 3.15 that requires removing all information related to the identity and demographic characteristics of the patient, any responsible parties or family members, any personnel involved in the procedure, the organizations involved in ordering or performing the procedure, additional information that could be used to match instances if given access to the originals, such as UIDs, dates and times, and private attributes, when that information is present in the non-Pixel Data Attributes, including graphics or overlays
113101Clean Pixel Data OptionAdditional de-identification according to an option defined in PS 3.15 that requires any information burned in to the Pixel Data corresponding to the Attribute information specified to be removed by the Profile and any other Options specified also be removed.
113102Clean Recognizable Visual Features OptionAdditional de-identification according to an option defined in PS 3.15 that requires that sufficient removal or distortion of the Pixel Data shall be applied to prevent recognition of an individual from the instances themselves or a reconstruction of a set of instances.
113103Clean Graphics OptionAdditional de-identification according to an option defined in PS 3.15 that requires that any information encoded in graphics, text annotations or overlays corresponding to the Attribute information specified to be removed by the Profile and any other Options specified also be removed.
113104Clean Structured Content OptionAdditional de-identification according to an option defined in PS 3.15 that requires that any information encoded in SR Content Items or Acquisition Context Sequence Items corresponding to the Attribute information specified to be removed by the Profile and any other Options specified also be removed.
113105Clean Descriptors OptionAdditional de-identification according to an option defined in PS 3.15 that requires that any information that is embedded in text or string Attributes corresponding to the Attribute information specified to be removed by the Profile and any other Options specified also be removed.
113106Retain Longitudinal Temporal Information With Full Dates OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that any dates and times be retained,
113107Retain Longitudinal Temporal Information With Modified Dates OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that any dates and times be modified in a manner that preserves temporal relationships. E.g., Study Date and Time.
113108Retain Patient Characteristics OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that any physical characteristics of the patient, which are descriptive rather than identifying information per se, be retained. E.g., Patient’s Age, Sex, Size (height) and Weight.
113109Retain Device Identity OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that any information that identifies a device be retained. E.g., Device Serial Number.
113110Retain UIDs OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that UIDs be retained. E.g., SOP Instance UID.
113111Retain Safe Private OptionRetention of information that would otherwise be removed during de-identification according to an option defined in PS 3.15 that requires that private attributes that are known not to contain identity information be retained. E.g., private SUV scale factor.
113601Small: < 32.0 cm lateral thicknessSmall body thickness for calcium scoring adjustment. Lateral thickness is measured from skin-to-skin, at the level of the proximal ascending aorta, from an A/P localizer image.
113602Medium: 32.0–38.0 cm lateral thicknessMedium body thickness for calcium scoring adjustment. Lateral thickness is measured from skin-to-skin, at the level of the proximal ascending aorta, from an A/P localizer image.
113603Large: > 38.0 cm lateral thicknessLarge body thickness for calcium scoring adjustment. Lateral thickness is measured from skin-to-skin, at the level of the proximal ascending aorta, from an A/P localizer image.
113611Stationary AcquisitionAcquisition where the X-Ray source does not move in relation to the patient
113612Stepping AcquisitionAcquisition where the X-Ray source moves laterally in relation to the patient
113613Rotational AcquisitionAcquisition where the X-Ray source moves angularly in relation to the patient
113620Plane APrimary plane of a Biplane acquisition equipment
113621Plane BSecondary plane of a Biplane acquisition equipment
113622Single PlaneSingle plane acquisition equipment
113630ContinuousContinuous X-Ray radiation is applied during an irradiation event
113631PulsedPulsed X-Ray radiation is applied during an irradiation event
113650Strip filterFilter with uniform thickness
113651Wedge filterFilter with variation in thickness from one edge to the opposite edge
113652Butterfly filterFilter with two triangular sections
113661Outline of lobulationsA polyline defining the outline of a lobulated finding
113662Inner limits of fuzzy marginA polyline defining the inner limits of a finding with fuzzy margin
113663Outer limits of fuzzy marginA polyline defining the outer limits of a finding with fuzzy margin
113664Outline of spiculationsA polyline defining the outline of the spiculations of a finding
113665Linear spiculationA polyline segment graphically indicating the location and direction of a spiculation of a finding
113666Pixelated spiculationsA collection of points indicating the pixel locations of the spiculations of a finding
113669Orthogonal location arcConnected line segments indicating the center of location of a finding on an orthogonal view
113670Orthogonal location arc inner marginConnected line segments indicating the inner margin of the location of a finding on an orthogonal view
113671Orthogonal location arc outer marginConnected line segments indicating the outer location of a finding on an orthogonal view
113681PhantomAn artificial subject of an imaging study.
113682ACR Accreditation Phantom - CTA phantom acceptable for the ACR Computed Tomography Accreditation program
113683ACR Accreditation Phantom - MRA phantom acceptable for the ACR Magnetic Resonance Imaging Accreditation program
113684ACR Accreditation Phantom - MammographyA phantom acceptable for the ACR Mammography Accreditation program
113685ACR Accreditation Phantom – Stereotactic Breast BiopsyA phantom acceptable for the ACR Stereotactic Breast Biopsy Accreditation program
113686ACR Accreditation Phantom - ECTA phantom acceptable for the ACR SPECT Accreditation program (but not for PET)
113687ACR Accreditation Phantom - PETA phantom acceptable for the ACR PET Accreditation program (but not for SPECT)
113688ACR Accreditation Phantom – ECT/PETA SPECT phantom with a PET faceplate acceptable for both the ACR SPECT and PET Accreditation programs
113689ACR Accreditation Phantom – PET FaceplateA PET faceplate (made to fit an existing flangeless or flanged ECT phantom) acceptable for the ACR PET Accreditation program
113690IEC Head Dosimetry PhantomA phantom used for CTDI measurement in head modes according to IEC 60601-2-44, Ed.2.1 (Head 16 cm diameter Polymethyl methacrylate PMMA)
113691IEC Body Dosimetry PhantomA phantom used for CTDI measurement in body modes according to IEC 60601-2-44, Ed.2.1 (Body 32cm diameter Polymethyl methacrylate PMMA)
113692NEMA XR21-2000 PhantomA phantom in accordance with NEMA standard XR-21-2000
113701X-Ray Radiation Dose ReportX-Ray Radiation Dose Report
113702Accumulated X-Ray Dose DataX-Ray dose data accumulated over multiple irradiation events, e.g., for a study or a performed procedure step
113704Projection X-RayImaging using a point X-Ray source with a diverging beam projected onto a 2 dimensional detector
113705Scope of AccumulationEntity over which dose accumulation values are integrated
113706Irradiation Event X-Ray DataX-Ray dose data for a single Irradiation Event
113710Niobium or Niobium compoundMaterial containing Niobium or a Niobium compound
113711Europium or Europium compoundMaterial containing Europium or a Europium compound
113721Irradiation Event TypeDenotes the type of irradiation event recorded
113722Dose Area Product TotalTotal calculated Dose Area Product (in the scope of the including report)
113723Calibration DateLast calibration Date for the integrated dose meter or dose calculation
113724Calibration Responsible PartyIndividual or organization responsible for calibration
113725Dose (RP) TotalTotal Dose related to Reference Point (RP). (in the scope of the including report)
113726Fluoro Dose Area Product TotalTotal calculated Dose Area Product applied in Fluoroscopy Modes (in the scope of the including report).
113727Acquisition Dose Area Product TotalTotal calculated Dose Area Product applied in Acquisition Modes (in the scope of the including report).
113728Fluoro Dose (RP) TotalDose applied in Fluoroscopy Modes, related to Reference Point (RP). (in the scope of the including report)
113729Acquisition Dose (RP) TotalDose applied in Acquisition Modes, related to Reference Point (RP). (in the scope of the including report)
113730Total Fluoro TimeTotal accumulated time of Fluoroscopy (in the scope of the including report)
113731Total Number of Radiographic FramesAccumulated Count of Frames (single or multi-frame) created from irradiation events performed with high dose (acquisition).
113732Fluoro ModeMode of application of X-Rays during Fluoroscopy
113733KVPApplied X-Ray Tube voltage at peak of X-Ray generation, in kilovolts; Mean value if measured over multiple peaks (pulses)
113734X-Ray Tube CurrentMean value of applied Tube Current
113735Exposure TimeCumulative time the patient has received X-Ray exposure during the irradiation event
113736ExposureMean value of X-Ray Current Time product
113737Distance Source to Reference PointDistance to the Reference Point (RP) defined according to IEC 60601-2-43 or equipment defined.
113738Dose (RP)Dose applied at the Reference Point (RP).
113739Positioner Primary End AnglePositioner Primary Angle at the end of an irradiation event. For further definition see (112011,DCM,”Positioner Primary Angle”)
113740Positioner Secondary End AnglePositioner Secondary Angle at the end of an irradiation event. For further definition see (112012,DCM,”Positioner Secondary Angle”)
113742Irradiation DurationClock time from the start of the first irradiation in the irradiation event until the end of the last irradiation in the same irradiation event. For continuous modes this the time the irradiation intensity is above a 50% threshold with respect to the maximum intensity achieved during an irradiation event.
113743Patient OrientationOrientation of the Patient with respect to Gravity
113744Patient Orientation ModifierEnhances or modifies the Patient orientation specified in Patient Orientation
113745Patient Table RelationshipOrientation of the Patient with respect to the Head of the Table
113748Distance Source to IsocenterDistance from the X-Ray Source to the Equipment C-Arm Isocenter.(Center of Rotation).
113750Distance Source to DetectorMeasured or calculated distance from the X-Ray source to the detector plane in the center of the beam.
113751Table Longitudinal PositionTable Longitudinal Position with respect to an arbitrary chosen reference by the equipment. Table motion towards LAO is positive assuming that the patient is positioned supine and its head is in normal position.
113752Table Lateral PositionTable Lateral Position with respect to an arbitrary chosen reference by the equipment. Table motion towards CRA is positive assuming that the patient is positioned supine and its head is in normal position.
113753Table Height PositionTable Height Position with respect to an arbitrary chosen reference by the equipment in (mm). Table motion downwards is positive
113754Table Head Tilt AngleAngle of the head-feet axis of the table in degrees relative to the horizontal plane. Positive values indicate that the head of the table is upwards.
113755Table Horizontal Rotation AngleRotation of the table in the horizontal plane (clockwise when looking from above the table).
113756Table Cradle Tilt AngleAngle of the left-right axis of the table in degrees relative to the horizontal plane. Positive values indicate that the left of the table is upwards.
113757X-Ray Filter MaterialX-Ray absorbing material used in the filter.
113758X-Ray Filter Thickness MinimumThe minimum thickness of the X-Ray absorbing material used in the filters.
113763Calibration UncertaintyUncertainty of the ‘actual’ value.
113764Acquisition PlaneIdentification of Acquisition Plane with Biplane systems.
113766Focal Spot SizeNominal Size of Focal Spot of X-Ray Tube
113767Average X-Ray Tube CurrentAverage X-Ray Tube Current averaged over time for pulse or for continuous Fluoroscopy
113768Number of PulsesNumber of pulses applied by X-Ray systems during an irradiation event (acquisition run or pulsed fluoro)
113769Irradiation Event UIDUnique identification of a single irradiation event
113770Column AngulationAngle of the X-Ray beam in degree relative to an orthogonal axis to the detector plane.
113771X-Ray FiltersDevices used to modify the energy or energy distribution of X-Rays
113772X-Ray Filter TypeType of filter(s) inserted into the X-Ray beam (e.g. wedges).
113773X-Ray Filter Thickness MaximumThe maximum thickness of the X-Ray absorbing material used in the filters.
113780Reference Point DefinitionSystem provided definition of the Reference Point used for Dose calculations.
113790Collimated Field AreaCollimated field area at image receptor. Area for compatibility with IEC 60601-2-43.
113791Pulse RatePulse rate applied by equipment during Fluoroscopy
113792Distance Source to Table PlaneMeasured or calculated distance from the X-Ray source to the table plane in the center of the beam.
113793Pulse Width(Average) X-Ray pulse width
113794Dose Measurement DeviceCalibrated device to perform dose measurements.
113795Acquired ImageImage acquired during a specified event.
113800DLP to E conversion via MC computationEffective Dose evaluation from the product of Dose Length Product (DLP) and the Effective Dose Conversion Factor (E/DLP in units of mSv/mGy-cm), where the ratio is derived by means of Monte Carlo computations.
113801CTDIfreeair to E conversion via MC computationEffective Dose evaluation from the product of the Mean CTDIfree air and the ratio E/CTDIfree air (mSv/mGy), where the ratio is derived by means of Monte Carlo computations
113802DLP to E conversion via measurementEffective Dose evaluation from the product of Dose Length Product (DLP) and the Effective Dose Conversion Factor (E/DLP in units of mSv/mGy-cm), where the ratio is derived by means of dosimetric measurements with an anthropomorphic phantom
113803CTDIfreeair to E conversion via measurementEffective Dose evaluation from the product of the Mean CTDIfree air and the ratio E/CTDIfree air (mSv/mGy), where the ratio is derived by means of dosimetric measurements with an anthropomorphic phantom
113804Sequenced AcquisitionThe CT acquisition was performed by acquiring single or multi detector data while rotating the source about the gantry while the table is not moving. Additional slices are acquired by incrementing the table position and again rotating the source about the gantry while the table is not moving.
113805Constant Angle AcquisitionThe CT acquisition was performed by holding the source at a constant angle and moving the table to obtain a projection image (e.g. localizer).
113806Stationary AcquisitionThe CT acquisition was performed by holding the table at a constant position and acquiring multiple slices over time at the same location.
113807Free AcquisitionThe CT acquisition was performed while rotating the source about the gantry while the table movement is under direct control of a human operator or under the control of an analysis application (e.g. fluoro).
113808ICRP Pub 60Reference authority 1990 Recommendations of the International Commission on Radiological Protection (ICRP Publication 60, published as the Annals of the ICRP Vol. 21, No. 1-3, Pergamon Press, 1991)
113809Start of X-Ray IrradiationStart, DateTime of the first X-Ray Irradiation Event of the accumulation within a Study
113810End of X-Ray IrradiationEnd, DateTime of the last X-Ray Irradiation Event of the accumulation within a Study
113811CT Accumulated Dose DataX-Ray dose accumulated over multiple CT irradiation events, e.g., for a study or a performed procedure step.
113812Total Number of Irradiation EventsTotal number of events during the defined scope of accumulation
113813CT Dose Length Product TotalThe total dose length product defined scope of accumulation
113814CT Effective Dose TotalThe total Effective Dose at the defined scope of accumulation
113815Patient ModelIdentification of the reference-patient model used when Effective Dose is evaluated via Monte Carlo calculations or from a Dose Length Product conversion factor based on Monte Carlo calculations
113816Condition Effective Dose measuredReferences the physical phantom and the type of dosimeter used when measurements are done to establish Effective Dose Conversion Factors (E/DLP) or ratios E/CTDIfree air
113817Effective Dose Phantom TypeType of Effective Dose phantom used
113818Dosimeter TypeType of dosimeter used
113819CT AcquisitionGeneral description of the CT Irradiation event
113820CT Acquisition TypeMethod of the CT acquisition
113821X-Ray Filter Aluminum EquivalentThickness of an equivalent filter in mm in Aluminum
113822CT Acquisition ParametersGeneral description of the acquisition parameters
113823Number of X-Ray SourcesNumber of X-Ray sources
113824Exposure TimeTotal time the patient has received X-Ray exposure during the irradiation event
113825Scanning LengthLength of the table travel during the entire tube loading, according to IEC 60601-2-44 NOTE: Scanning Length might be longer than the programmed acquisition length (Length of Reconstructable Volume)
113826Nominal Single Collimation WidthThe value of the nominal width referenced to the location of the isocenter along the z axis of a single row of acquired data in mm
113827Nominal Total Collimation WidthThe value of the nominal width referenced to the location of the isocenter along the z axis of the total collimation in mm over the area of active X-Ray detection
113828Pitch FactorFor Spiral scanning: Pitch Factor = (Table Feed per Rotation (mm))/(Nominal Total Collimation Width (mm)) For Sequenced scanning: Pitch Factor = (Table Feed per single Sequenced scan (mm))/(Nominal Total Collimation Width (mm))
113829CT DoseGeneral description of CT dose values
113830Mean CTDIvol“Mean CTDIvol” refers to the average value of the CTDIvol associated with this acquisition.
113831CT X-Ray Source ParametersIdentification, tube-potential, tube-current, and exposure-time parameters associated with an X-Ray source during an acquisition.
113832Identification of the X-Ray SourceIdentifies the particular X-Ray source (in a multi-source CT system) for which the set of X-Ray source parameter values is reported.
113833Maximum X-Ray Tube CurrentMaximum X-Ray tube current
113834Exposure Time per RotationThe exposure time for one rotation of the source around the object in s
113835CTDIw Phantom TypeA label describing the type of phantom used for CTDIW measurement according to IEC 60601-2-44 (Head 16 cm diameter PMMA, Body 32 cm diameter PMMA)
113836CTDIfreeair Calculation FactorThe CTDIfree air Calculation Factor is the CTDIfree air per mAs, expressed in units of mGy/mAs. The CTDIfree air Calculation Factor may be used in one method calculating Dose.
113837Mean CTDIfreeairThe average value of the free-in-air CTDI associated with this acquisition.
113838DLPDose Length Product (DLP), expressed in mGy-cm, is an index characterizing the product of the CTDIvol and the length scanned. For Spiral scanning, DLP = CTDIvol ´ Scanning Length. For Sequenced scanning, DLP = CTDIvol ´ Nominal Total Collimation Width ´ Cumulative Exposure Time / Exposure Time per Rotation. For Stationary and Free scanning, DLP = CTDIvol ´ Nominal Total Collimation Width.
113839Effective DoseEffective dose in mSv
113840Effective Dose Conversion FactorEffective Dose per DLP, reference value for Effective Dose calculation, expressed in mSv/mGycm
113841ICRP Pub 103Effective Dose Reference authority 2007 Recommendations of the International Commission on Radiological Protection (ICRP Publication 103, published as the Annals of the ICRP Vol. 37, No. 2-4, Elsevier, 2007)
113842X-Ray Modulation TypeThe type of exposure modulation used for the purpose of limiting the dose.
113845Exposure IndexMeasure of the detector response to radiation in the relevant image region of an image acquired with a digital x-ray imaging system as defined in IEC 62494-1; see PS 3.3 definition of Exposure Index Macro.
113846Target Exposure IndexThe target value used to calculate the Deviation Index as defined in IEC 62494-1; see PS 3.3 definition of Exposure Index Macro.
113847Deviation IndexA scaled representation of the accuracy of the Exposure Index compared to the Target Exposure Index as defined in IEC 62494-1; see PS 3.3 definition of Exposure Index Macro.
113850Irradiation AuthorizingThe clinician responsible for determining that the irradiating procedure was ap propriate for the indications
113851Irradiation AdministeringThe person responsible for the administration of radiation
113852Irradiation EventAn irradiation event is the occurrence of radiation being applied to a patient in a single continuous time-frame between the start (release) and the stop (cease) of the irradiation. Any automatic on-off switching of the irradiation source during the event is not treated as separate events, rather the event includes the time between start and stop of irradiation as triggered by the user. E.g., a pulsed fluoro X-Ray acquisition shall be treated as a single irradiation event.
113853Irradiation Event UIDUnique Identifier of an Irradiation Event
113854Source of Dose InformationMethod by which dose-related details of an Irradiation Event were obtained.
113855Total Acquisition TimeTotal accumulated acquisition time (in the scope of the including report)
113856Automated Data CollectionDirect recording of data by a relevant system
113857Manual EntryRecording of data by a human operator, including manual transcription of electronic data
113858MPPS ContentThe data is taken from an MPPS SOP Instance
113859Irradiating DeviceA device exposing a patient to ionizing radiation.
11386015cm from Isocenter toward Source15cm from the isocenter towards the X-Ray source; See IEC 60601-2-43
11386130cm in Front of Image Input Surface30cm in front (towards the tube) of the input surface of the image receptor; See FDA Federal Performance Standard for Diagnostic X-Ray Systems §1020.32(d)(7)
1138621cm above Tabletop1cm above the patient tabletop or cradle; See FDA Federal Performance Standard for Diagnostic X-Ray Systems §1020.32(d)(7)
11386330cm above Tabletop30cm above the patient tabletop of cradle; See FDA Federal Performance Standard for Diagnostic X-Ray Systems §1020.32(d)(7)
11386415cm from Table Centerline15cm from the centerline of the X-Ray table and in the direction of the X-Ray source; See FDA Federal Performance Standard for Diagnostic X-Ray Systems §1020.32(d)(7)
113865Entrance exposure to a 4.2 cm breast thicknessStandard breast means a 4.2 centimeter (cm) thick compressed breast consisting of 50 percent glandular and 50 percent adipose tissue. See Department of Health and Human Services, Food and Drug Administration. Mammography quality standards; final rule. Federal Register. Oct. 28, 1997; 68(208):55852–55994. See 900.2(uu)
113866Copied From Image AttributesThe data is copied from information present in the image attributes, e.g., dose attributes such as CTDIvol (0018,9345)
113867Computed From Image AttributesThe data is computed from information present in the image attributes, e.g., by using dosimetry information for the specific irradiating device make and model, applied to technique information such as KVP and mAs
113868Derived From Human-Readable ReportsThe data is derived from human-readable reports, e.g., by natural language parsing of text reports, or optical character recognition from reports saved as images by the irradiating device
113870Person NameThe name of a specific person
113871Person IDAn identification number or code for a specific person
113872Person ID IssuerThe organization which issued a Person ID
113873Organization NameThe name of an organization
113874Person Role in OrganizationThe role played by a person in an organization
113875Person Role in ProcedureThe role played by a person in a procedure
113876Device Role in ProcedureThe role played by a device in a procedure
113877Device NameThe name used to refer to a device; usually locally unique
113878Device ManufacturerManufacturer of a device
113879Device Model NameModel Name of a device
113880Device Serial NumberSerial Number of a device
113890All PlanesAll planes of a multi-plane acquisition equipment
113893Length of Reconstructable VolumeThe length from which images may be reconstructed (i.e., excluding any overranging performed in a spiral acquisition that is required for data interpolation). Value is distinct from (1113825, DCM,”Scanning Length”), which is the actual length of the table travel during the entire tube loading, according to IEC 60601-2-44, and includes overranging. Also distinct from any actual Reconstructed Volume, which may depend on the slice thickness chosen for a particular reconstruction.
113895Top Z Location of Reconstructable VolumeThe Z location that is the top (highest Z value) of the Reconstructable Volume. Specified as the Z component within the Patient Coordinate System defined by a specified Frame of Reference.
113896Bottom Z Location of Reconstructable VolumeThe Z location that is the bottom (lowest Z value) of the Reconstructable Volume. Specified as the Z component within the Patient Coordinate System defined by a specified Frame of Reference.
113897Top Z Location of Scanning LengthThe Z location that is the top (highest Z value) of the scanning length. Specified as the Z component within the Patient Coordinate System defined by a specified Frame of Reference.
113898Bottom Z Location of Scanning LengthThe Z location that is the bottom (lowest Z value) of the scanning length. Specified as the Z component within the Patient Coordinate System defined by a specified Frame of Reference.
113899Exposed RangeThe range along the z axis of the total volume irradiated, per IEC 60601-2-44, Ed. 3, 203.115(b). The start and stop of loading corresponding to the outer edge of the full width half maximum of the free-in-air dose profile for the beam collimation used.
114000Not a numberMeasurement not available: Not a number (per IEEE 754)
114001Negative InfinityMeasurement not available: Negative Infinity (per IEEE 754)
114002Positive InfinityMeasurement not available: Positive Infinity (per IEEE 754)
114003Divide by zeroMeasurement not available: Divide by zero (per IEEE 754)
114004UnderflowMeasurement not available: Underflow (per IEEE 754)
114005OverflowMeasurement not available: Overflow (per IEEE 754)
114006Measurement failureMeasurement not available: Measurement failure
114007Measurement not attemptedMeasurement not available: Measurement not attempted
114008Calculation failureMeasurement not available: Calculation failure
114009Value out of rangeMeasurement not available: Value out of range
114010Value unknownMeasurement not available: Value unknown
114011Value indeterminateMeasurement not available: Value indeterminate
121001Quotation ModeType of source for observations quoted from an external source
121002Quoted SourceReference to external source of quoted observations
121003DocumentDocumentary source of quoted observations
121004VerbalVerbal source of quoted observations
121005Observer TypeType of observer that created the observations
121006PersonHuman observer created the observations
121007DeviceAutomated device created the observations
121008Person Observer NameName of human observer that created the observations
121009Person Observer’s Organization NameOrganization or institution with which the human observer is affiliated for the context of the current observation
121010Person Observer’s Role in the OrganizationOrganizational role of human observer for the context of the current observation
121011Person Observer’s Role in this ProcedureProcedural role of human observer for the context of the current observation
121012Device Observer UIDUnique identifier of automated device that created the observations
121013Device Observer NameInstitution-provided identifier of automated device that created the observations
121014Device Observer ManufacturerManufacturer of automated device that created the observations
121015Device Observer Model NameManufacturer-provided model name of automated device that created the observations
121016Device Observer Serial NumberManufacturer-provided serial number of automated device that created the observations
121017Device Observer Physical Location During ObservationLocation of automated device that created the observations whilst the observations were being made.
121018Procedure Study Instance UIDUnique identifier for the Study or Requested Procedure
121019Procedure Study Component UIDUnique identifier for the Performed Procedure Step
121020Placer NumberIdentifier for the Order (or Service Request) assigned by the order placer system
121021Filler NumberIdentifier for the Order (or Service Request) assigned by the order filler system
121022Accession NumberIdentifier for the Order (or Service Request) assigned by the department information system
121023Procedure CodeType of procedure scheduled or performed
121024Subject ClassType of observation subject
121025PatientA patient is the subject of observations
121026FetusFetus of patient is the subject of observations
121027SpecimenSpecimen is the subject of observations
121028Subject UIDUnique Identifier of patient or fetus who is the subject of observations
121029Subject NameName of patient who is the subject of observations
121030Subject IDIdentifier of patient or fetus who is the subject of observations
121031Subject Birth DateBirth Date of patient who is the subject of observations
121032Subject SexSex of patient who is the subject of observations
121033Subject AgeAge of patient who is the subject of observations
121034Subject SpeciesSpecies of patient who is the subject of observations
121035Subject BreedThe breed of the subject
121036Mother of fetusName of mother of fetus which is the subject of observations
121037Fetus number
121038Number of Fetuses
121039Specimen UIDUnique Identifier of specimen which is the subject of observations
121040Specimen Accession NumberAccession Number of specimen which is the subject of observations
121041Specimen IdentifierIdentifier of specimen which is the subject of observations
121042Specimen TypeCoded category of specimen which is the subject of observations
121043Slide IdentifierIdentifier of specimen microscope slide which is the subject of observations
121044Slide UIDUnique Identifier of specimen microscope slide which is the subject of observations
121045Language
121046Country of Language
121047Language of Value
121048Language of Name and Value
121049Language of Content Item and Descendants
121050Equivalent Meaning of Concept Name
121051Equivalent Meaning of Value
121052Presence of property
121053Present
121054Absent
121055PathA set of points on an image, that when connected by line segments, provide a polyline from which a linear measurement was inferred
121056Area outlineA set of points on an image, that when connected by line segments, provide a closed polyline that is the border of a defined region from which an area, or two-dimensional measurement, was inferred
121057Perimeter outlineA set of points on an image, that when connected by line segments, provide a closed polyline that is a two-dimensional border of a three-dimensional region’s intersection with, or projection into the image
121058Procedure reported
121059Presence UndeterminedPresence or absence of a property is undetermined
121060History
121062Request
121064Current Procedure Descriptions
121065Procedure Description
121066Prior Procedure Descriptions
121068Previous Findings
121069Previous Finding
121070Findings
121071Finding
121072Impressions
121073Impression
121074Recommendations
121075Recommendation
121076Conclusions
121077Conclusion
121078Addendum
121079Baseline
121080Best illustration of finding
121081Physician
121082Nurse
121083Technologist
121084Radiographer
121085Intern
121086Resident
121087Registrar
121088Fellow
121089Attending [Consultant]
121090Scrub nurse
121091Surgeon
121092Sonologist
121093Sonographer
121094Performing
121095Referring
121096Requesting
121097Recording
121098Verifying
121099Assisting
121100Circulating
121101Standby
121102Other sexOther sex
121103Undetermined sexSex of subject undetermined at time of encoding
121104Ambiguous sexAmbiguous sex
121105Radiation PhysicistRadiation Physicist
121106CommentComment
121109Indications for ProcedureIndications for Procedure
121110Patient PresentationPatient condition at the beginning of a healthcare encounter
121111SummarySummary of a procedure, including most significant findings
121112Source of measurementImage or waveform used as source for measurement
121113ComplicationsComplications from a procedure
121114Performing PhysicianPhysician who performed a procedure
121115Discharge SummarySummary of patient condition upon Discharge from a healthcare facility
121116Proximal Finding SiteProximal Anatomic Location for a differential measurement (e.g., distance or pressure gradient); may be considered subtype of term (G-C0E3, SRT, “Finding Site”)
121117Distal Finding SiteDistal Anatomic Location for a differential measurement (e.g., distance or pressure gradient); may be considered subtype of term (G-C0E3, SRT, “Finding Site”)
121118Patient CharacteristicsPatient Characteristics (findings)
121120Cath Lab Procedure LogTime-stamped record of events that occur during a catheterization procedure
121121Room identificationRoom identification
121122Equipment identificationEquipment identification
121123Patient Status or EventA recorded Patient Status or an event involving a patient
121124Procedure Action Item IDIdentification of a step, action, or phase of a procedure
121125DateTime of Recording of Log EntryDateTime of Recording of an Entry in an Event Log
121126Performed Procedure Step SOP Instance UIDSOP Instance UID of a DICOM Modality Performed Procedure Step (MPPS) or General Purpose Performed Procedure Step (GPPPS)
121127Performed Procedure Step SOP Class UIDSOP Class UID for a DICOM Modality Performed Procedure Step (MPPS) or General Purpose Performed Procedure Step (GPPPS) Service
121128Procedure Action DurationDuration of a step, action, or phase of a procedure
121130Start Procedure Action ItemBeginning of a step, action, or phase of a procedure
121131End Procedure Action ItemEnd of a step, action, or phase of a procedure
121132Suspend Procedure Action ItemSuspension of a step, action, or phase of a procedure
121133Resume Procedure Action ItemResumption of a step, action, or phase of a procedure
121135Observation DateTime QualifierConcept modifier for the DateTime of Recording of an Entry in an Event Log
121136DateTime UnsynchronizedRecorded DateTime had its source in a system clock not synchronized to other recorded DateTimes
121137DateTime EstimatedRecorded DateTime is estimated
121138Image AcquiredEvent of the acquisition of an image
121139ModalityType of data acquisition device
121140Number of FramesNumber of Frames in a multi-frame image
121141Image TypeDescriptor of an Image
121142Acquisition DurationDuration of the acquisition of an image or a waveform
121143Waveform AcquiredEvent of the acquisition of an image
121144Document TitleDocument Title
121145Description of MaterialDescription of Material used in a procedure
121146Quantity of MaterialQuantity of Material used in a procedure
121147Billing CodeBilling Code for materials used in a procedure
121148Unit Serial IdentifierUnit or Device Serial Identifier
121149Lot IdentifierLot Identifier
121150Device CodeVendor or local coded value identifying a device
121151Lesion IdentifierIdentification of a Lesion observed during an imaging procedure
121152Person administering drug/contrastPerson administering drug/contrast
121153Lesion RiskAssessment of the risk a coronary lesion presents to the health of a patient
121154Intervention attempt identifierIdentifier for an attempted Intervention
121155DeploymentUse of a device to deploy another device
121156Percutaneous Entry ActionAction of a clinical professional at the site of percutaneous access to a patient’s cardiovascular system
121157Begin Circulatory SupportThe action or event of beginning circulatory support for a patient
121158End Circulatory SupportThe action or event of ending circulatory support for a patient
121160Oxygen Administration RateRate of Oxygen Administration
121161Begin Oxygen AdministrationThe action or event of beginning administration of oxygen to a patient
121162End oxygen administrationThe action or event of ending administration of oxygen to a patient
121163By ventilatorMethod of administration of oxygen to a patient by ventilator
121165Patient Assessment PerformedThe action or event of assessing the clinical status of a patient
121166Begin PacingThe action or event of beginning pacing support for a patient
121167End PacingThe action or event of ending pacing support for a patient
121168Begin VentilationThe action or event of beginning ventilation support for a patient
121169End VentilationThe action or event of ending ventilation support for a patient
121171Tech NoteProcedural note originated by a technologist
121172Nursing NoteProcedural note originated by a nurse
121173Physician NoteProcedural note originated by a Physician
121174Procedure NoteGeneral procedural note
121180Key ImagesList of references to images considered significant
121181DICOM Object CatalogList of references to DICOM SOP Instances
121192Device SubjectA device is the subject of observations
121193Device Subject NameName or other identifier of a device that is the subject of observations
121194Device Subject ManufacturerManufacturer of a device that is the subject of observations
121195Device Subject Model NameModel Name of a device that is the subject of observations
121196Device Subject Serial NumberSerial Number of a device that is the subject of observations
121197Device Subject Physical Location during observationPhysical Location of a device that is the subject of observations during those observations
121198Device Subject UIDUnique Identifier of a device that is the subject of observations
121200Illustration of ROIIllustration of a region of interest
121201Area Outline
121202Area of Defined Region
121206DistanceA one dimensional, or linear, numeric measurement
121207HeightVertical measurement value
121208Inter-Marker DistanceDistance between marks on a device of calibrated size (e.g., a ruler)
121210Path
121211Path lengthA one dimensional, or linear, numeric measurement along a polyline
121213Perimeter Outline
121214Referenced Segmentation FrameFrame selected from a segmentation image, specifically the pixels/voxels identified as belonging to the classification of the segment encompassing the identified frame
121216Volume estimated from single 2D regionA three-dimensional numeric measurement that is approximate, based on a two-dimensional region in a single image
121217Volume estimated from three or more non-coplanar 2D regionsA three-dimensional numeric measurement that is approximate, based on three or more non-coplanar two-dimensional image regions
121218Volume estimated from two non-coplanar 2D regionsA three-dimensional numeric measurement that is approximate, based on two non-coplanar two-dimensional image regions
121219Volume of bounding three dimensional regionA three-dimensional numeric measurement of the bounding region of a three-dimensional region of interest in an image set
121220Volume of circumscribed sphereA three-dimensional numeric measurement of the bounding sphere of a three-dimensional region of interest in an image set
121221Volume of ellipsoidA three-dimensional numeric measurement of an ellipsoid shaped three-dimensional region of interest in an image set
121222Volume of sphereA three-dimensional numeric measurement of a sphere shaped three-dimensional region of interest in an image set
121230Path VertexCoordinates of a point on a defined path
121242Distance from nippleIndicates the location of the area of interest as measured from the nipple of the breast.
121243Distance from skinIndicates the location of the area of interest as measured from the most direct skin point of the breast.
121244Distance from chest wallIndicates the location of the area of interest as measured from the chest wall.
121301Simultaneous Doppler
121302Simultaneous Hemodynamic
121303Simultaneous ECG
121304Simultaneous Voice Narrative
121305Simultaneous Respiratory WaveformA waveform representing chest expansion and contraction due to respiratory activity, measured simultaneously with the acquisition of this Image.
121306Simultaneous Arterial Pulse WaveformArterial pulse waveform obtained simultaneously with acquisition of a referencing image
121307Simultaneous Phonocardiographic WaveformPhonocardiographic waveform obtained simultaneously with acquisition of a referencing image
121311LocalizerImage providing an anatomical reference on the patient under examination, for the purpose of defining the location of the ensuing imaging.
121312Biopsy localizerImage providing an anatomical reference on the patient under examination, for the purpose of planning or documenting a biopsy.
121313Other partial viewsImage providing a partial view of the target anatomy, when the target anatomy is too large for a single image.
121314Other image of biplane pairImage providing a view of the target anatomy in a different imaging plane, typically from a near perpendicular angle
121315Other image of stereoscopic pairImage providing a view of the target anatomy in a different imaging plane, typically with a small anglular difference
121316Images related to standalone objectImage related to a non-image information object
121317SpectroscopyImage where signals are identified and separated according to their frequencies, e.g., to identify individual chemicals, or individual nuclei in a chemical compound.
121320Uncompressed predecessorAn image that has not already been lossy compressed that is used as the source for creation of a lossy compressed image
121321Mask image for image processing operationImage used as the mask for an image processing operation, such as subtraction
121322Source image for image processing operationImage used as the source for an image processing operation
121324Source ImageImage used as the source for a derived or compressed image
121325Lossy compressed imageImage encoded with a lossy compression transfer syntax
121326Alternate SOP Class instanceSOP Instance encoded with a different SOP Class but otherwise equivalent data
121327Full fidelity imageFull fidelity image, uncompressed or lossless compressed
121328Alternate Photometric Interpretation imageImage encoded with a different photometric interpretation
121329Source image for montageImage used as a source for a montage (stitched) image
121330Lossy compressed predecessorAn image that has previously been lossy compressed that is used as the source for creation of another lossy compressed image
121331Equivalent CDA DocumentHL7 Document Architecture (CDA) Document that contains clinical content equivalent to the referencing Instance
121332Complete Rendering for PresentationInstance that contains a displayable complete rendering of the referencing Instance
121333Partial Rendering for PresentationInstance that contains a displayable partial rendering of the referencing Instance
121334Extended Rendering for PresentationInstance that contains a displayable complete rendering of the referencing Instance, plus additional content such as inline rendering of referenced images
121335Source DocumentDocument whose content has been wholly or partially transformed to create the referencing document
121338Anatomic imageImage showing structural anatomic features
121339Functional imageImage showing physical or chemical activity
121340Spectral filtered imageImage providing the same view of the target anatomy acquired using only a specific imaging wavelength, frequency or energy
121341Device localizerImage providing an anatomical reference on the patient under examination, for the purpose of documenting the location of device such as a diagnostic or therapeutic catheter.
121342Dose ImageImage providing a graphic view of the distribution of radiation dose
121346Acquisition frames corresponding to volumeThe referenced image is the source of spatially-related frames from which the referencing 3D volume dataset was derived
121347Volume corresponding to spatially-related acquisition frames3D Volume containing the spatially-related frames in the referencing instance
121348Temporal PredecessorInstance acquired prior to the referencing instance in a set of consecutively acquired instances
121349Temporal SuccessorInstance acquired subsequent to the referencing instance in a set of consecutively acquired instances
121350Same acquisition at lower resolutionImage of the same target area at lower resolution acquired in the same acquisition process
121351Same acquisition at higher resolutionImage of the same target area at higher resolution acquired in the same acquisition process
121352Same acquisition at different focal depthImage of the same target area at different focal depth (Z-plane) acquired in the same acquisition process
121353Same acquisition at different spectral bandImage of the same target area at different spectral band acquired in the same acquisition process
121354Imaged container labelImage specifically targeting the container label
121358For Processing predecessorSource image from which FOR PRESENTATION images were created.
121360Replaced reportThe reference is to a predecessor report that has been replaced by the current report
121361Addended reportThe reference is to a predecessor report to which the current report provides and addendum
121362Preliminary reportA report that precedes the final report and may contain only limited information; it may be time sensitive, and it is not expected to contain all the reportable findings
121363Partial reportA report that is not complete.
121380Active Ingredient Undiluted ConcentrationConcentration of the chemically or physically interesting (active) ingredient of a drug or contrast agent as delivered in product form from the manufacturer, typically in mg/ml.
121381Contrast/Bolus Ingredient OpaqueX-Ray absorption of the active ingredient of a contrast agent ingredient is greater than the absorption of water (tissue).
121382Quantity administeredNumber of units of substance (e.g., tablets) administered to a patient
121383Mass administeredMass of substance administered to a patient
121401DerivationMethod of deriving or calculating a measured value (e.g., mean, or maximum of set)
121402NormalityAssessment of a measurement relative to a normal range of values; may be considered subtype of term (G-C0F2, SRT, “has interpretation”)
121403Level of SignificanceSignificance of a measurement
121404Selection StatusStatus of selection of a measurement for further processing or use
121405Population descriptionDescription of a population of measurements
121406Reference AuthorityBibliographic or clinical reference for a Description of a population of measurements
121407Normal Range descriptionDescription of a normal range of values for a measurement concept
121408Normal Range AuthorityBibliographic or clinical reference for a Description of a normal range of values
121410User chosen valueObservation value selected by user for further processing or use, or as most representative
121411Most recent value chosenObservation value is the recently obtained, and has been selected for further processing or use
121412Mean value chosenObservation value is the mean of several measurements, and has been selected for further processing or use
121414Standard deviation of populationStandard deviation of a measurement in a reference population
121415Percentile Ranking of measurementPercentile Ranking of an observation value with respect a reference population
121416Z-Score of measurementZ-score of an observation value with respect a reference population, expressed as the dimensionless quantity (x-m)/s, where (x-m) is the deviation of the observation value (x) from the population mean (m), and s is the standard deviation of the population.
1214172 Sigma deviation of population2 Sigma deviation of a measurement in a reference population
121420EquationFormula used to compute a derived measurement
121421Equation CitationBibliographic reference to a formula used to compute a derived measurement; reference may be to a specific equation in a journal article
121422Table of Values CitationBibliographic reference to a Table of Values used to look up a derived measurement
121423Method CitationBibliographic reference to a method used to compute a derived measurement
121424Table of ValuesA Table of Values used to look up a derived measurement
121425IndexFactor (divisor or multiplicand) for normalizing a measurement; e.g., body surface area used for normalizing hemodynamic measurements
121427EstimatedMeasurement obtained by observer estimation, rather than with a measurement tool or by calculation
121428CalculatedMeasurement obtained by calculation
121430ConcernIdentified issue about a state or process that has the potential to require intervention or management
121431DateTime Concern NotedDateTime concern noted (noted by whom is determined by context of use)
121432DateTime Concern ResolvedDateTime the concern was resolved
121433DateTime Problem ResolvedDateTime the problem was resolved
121434Service Delivery LocationPlace at which healthcare services may be provided
121435Service PerformerIdentification of a healthcare provider who performed a healthcare service; may be either a person or an organization
121436Medical Device UsedType or identifier of a medical device used on, in, or by a patient
121437Pharmacologic and exercise stress testCardiac stress test using pharmacologic and exercise stressors
121438Paced stress testCardiac stress test using an implanted or external cardiac pacing device
121439Correction of congenital cardiovascular deformityProcedure for correction of congenital cardiovascular deformity
121701RT Patient SetupProcess of placing patient in the anticipated treatment position, including specification and location of positioning aids, and other treatment delivery accessories
121702RT Patient Position Acquisition, single plane MVAcquisition of patient positioning information prior to treatment delivery, using single-plane megavoltage imaging
121703RT Patient Position Acquisition, dual plane MVAcquisition of patient positioning information prior to treatment delivery, using dual-plane megavoltage imaging
121704RT Patient Position Acquisition, single plane kVAcquisition of patient positioning information prior to treatment delivery, using single-plane kilovoltage imaging
121705RT Patient Position Acquisition, dual plane kVAcquisition of patient positioning information prior to treatment delivery, using dual-plane kilovoltage imaging
121706RT Patient Position Acquisition, dual plane kV/MVAcquisition of patient positioning information prior to treatment delivery, using dual-plane combination kilovoltage and megavoltage imaging
121707RT Patient Position Acquisition, CT kVAcquisition of patient positioning information prior to treatment delivery, using kilovoltage CT imaging
121708RT Patient Position Acquisition, CT MVAcquisition of patient positioning information prior to treatment delivery, using megavoltage CT imaging
121709RT Patient Position Acquisition, OpticalAcquisition of patient positioning information prior to treatment delivery, using optical imaging
121710RT Patient Position Acquisition, UltrasoundAcquisition of patient positioning information prior to treatment delivery, using ultrasound imaging
121711RT Patient Position Acquisition, Spatial FiducialsAcquisition of patient positioning information prior to treatment delivery, using spatial fiducials
121712RT Patient Position Registration, single planeRegistration of intended and actual patient position prior to treatment delivery, using single-plane images
121713RT Patient Position Registration, dual planeRegistration of intended and actual patient position prior to treatment delivery, using dual-plane images
121714RT Patient Position Registration, 3D CT generalRegistration of intended and actual patient position prior to treatment delivery, using 3D CT images and an unspecified registration approach
121715RT Patient Position Registration, 3D CT marker-basedRegistration of intended and actual patient position prior to treatment delivery, using 3D CT images and a marker-based registration approach
121716RT Patient Position Registration, 3D CT volume-basedRegistration of intended and actual patient position prior to treatment delivery, using 3D CT images and a volume-based registration approach
121717RT Patient Position Registration, 3D on 2D referenceRegistration of intended and actual patient position prior to treatment delivery, using 3D verification images and 2D reference images
121718RT Patient Position Registration, 2D on 3D referenceRegistration of intended and actual patient position prior to treatment delivery, using 2D verification images and 3D reference images
121719RT Patient Position Registration, OpticalRegistration of intended and actual patient position prior to treatment delivery, using optical images
121720RT Patient Position Registration, UltrasoundRegistration of intended and actual patient position prior to treatment delivery, using ultrasound images
121721RT Patient Position Registration, Spatial FiducialsRegistration of intended and actual patient position prior to treatment delivery, using spatial fiducials
121722RT Patient Position AdjustmentAdjustment of patient position such that the patient is correctly positioned for treatment.
121723RT Patient Position In-treatment-session ReviewReview of patient positioning information in the process of delivering a treatment session
121724RT Treatment Simulation with Internal VerificationSimulated radiotherapy treatment delivery using verification integral to the Treatment Delivery System
121725RT Treatment Simulation with External VerificationSimulated radiotherapy treatment delivery using verification by a external Machine Parameter Verifier
121726RT Treatment with Internal VerificationRadiotherapy treatment delivery using verification integral to the Treatment Delivery System
121727RT Treatment with External VerificationRadiotherapy treatment delivery using verification by a external Machine Parameter Verifier
121728RT Treatment QA with Internal VerificationQuality assurance of a radiotherapy treatment delivery using verification integral to the Treatment Delivery System
121729RT Treatment QA with External VerificationQuality assurance of a radiotherapy treatment delivery using verification by a external Machine Parameter Verifier
121730RT Machine QAQuality assurance of a Treatment Delivery Device
122001Patient called to procedure roomPatient called to procedure room
122002Patient admitted to procedure roomPatient admitted to procedure room
122003Patient given pre-procedure instructionPatient given pre-procedure instruction
122004Patient informed consent givenPatient informed consent given
122005Patient advance directive givenPatient advance directive given
122006Nil Per Os (NPO) status confirmedNil Per Os (NPO) status confirmed
122007Patient assisted to tablePatient assisted to table
122008Patient prepped and drapedPatient prepped and draped
122009Patient connected to continuous monitoringPatient connected to continuous monitoring
122010Patient transferred to holding areaPatient transferred to holding area
122011Patient transferred to surgeryPatient transferred to surgery
122012Patient transferred to CCUPatient transferred to CCU
122020Patient disorientedPatient disoriented
122021Patient reports nauseaPatient reports nausea
122022Patient reports discomfortPatient reports discomfort
122023Patient reports chest painPatient reports chest pain
122024Patient reports no painPatient reports no pain
122025Patient alertPatient alert
122026Patient restlessPatient restless
122027Patient sedatedPatient sedated
122028Patient asleepPatient asleep
122029Patient unresponsivePatient unresponsive
122030Patient has respiratory difficultyPatient has respiratory difficulty
122031Patient coughedPatient coughed
122032Patient disconnected from continuous monitoringPatient disconnected from continuous monitoring
122033Hemostasis achievedHemostasis achieved
122034Hemostasis not achieved – oozingHemostasis not achieved – oozing
122035Hemostasis not achieved – actively bleedingHemostasis not achieved – actively bleeding
122036Patient given post-procedure instructionPatient given post-procedure instruction
122037Patient discharged from departmentPatient discharged from department or laboratory
122038Patient pronounced deadPatient pronounced dead
122039Patient transferred to morguePatient transferred to morgue
122041Personnel ArrivedIdentified personnel or staff arrived in procedure room
122042Personnel DepartedIdentified personnel or staff departed procedure room
122043Page Sent ToPage sent to identified personnel or staff
122044Consultation WithConsultation with identified personnel or staff
122045Office calledOffice of identified personnel or staff was called
122046Equipment failureEquipment failure
122047Equipment brought to procedure roomEquipment brought to procedure room
122048Equipment readyEquipment ready for procedure
122049Equipment removedEquipment removed from procedure room
122052BioptomeDevice for obtaining biopsy sample
122053Valvular InterventionValvular Intervention
122054Aortic InterventionAortic Intervention
122055Septal Defect InterventionSeptal Defect Intervention
122056Vascular InterventionVascular Intervention
122057Myocardial biopsyMyocardial biopsy
122058Arterial conduit angiographyArterial conduit angiography
122059Single plane AngiographySingle plane Angiography
122060Bi-plane AngiographyBi-plane Angiography
122061Percutaneous Coronary InterventionPercutaneous Coronary Intervention
12206215-Lead ECG15-Lead electrocardiography
122072Pre-procedure logLog of events occuring prior to the current procedure
122073Current procedure evidenceAnalysis or measurements for current procedure (purpose of reference to evidence document)
122075Prior report for current patientPrior report for current patient
122076Consumable taken from inventoryIdentifier of Consumable taken from inventory
122077Consumable returned to inventoryIdentifier of Consumable returned to inventory
122078Remaining consumable disposedIdentifier of consumable whose remaining content has been disposed
122079Consumable unusableIdentifier of Consumable determined to be unusable
122081Drug startIdentifier of Drug whose administration has started
122082Drug endIdentifier of Drug whose administration has ended
122083Drug administeredIdentifier of Drug administered as part of procedure
122084Contrast startIdentifier of Contrast agent whose administration has started
122085Contrast endIdentifier of Contrast agent whose administration has ended
122086Contrast administeredIdentifier of Contrast agent administered
122087Infusate startIdentifier of Infusate whose administration has started
122088Infusate endIdentifier of Infusate whose administration has ended
122089Device crossed lesionAction of a device traversing a vascular lesion
122090Intervention ActionAction of a clinical professional performed on a patient for therapeutic purpose
122091Volume administeredVolume of Drug, Contrast agent, or Infusate administered
122092Undiluted dose administeredUndiluted dose of Drug, Contrast agent, or Infusate administered
122093ConcentrationConcentration of Drug, Contrast agent, or Infusate administered
122094Rate of administrationRate of Drug, Contrast agent, or Infusate administration
122095Duration of administrationDuration of Drug, Contrast agent, or Infusate administration
122096Volume unadministered or discardedVolume of Drug, Contrast agent, or Infusate unadministered or discarded
122097Catheter CurveNumeric parameter of Curvature of Catheter
122098Transmit FrequencyTransmit Frequency
122099ST change from baselineMeasured change of patient electrocardiographic ST level relative to baseline measurement
122101Aneurysm on cited vesselAnatomic term modifier indicating aneurysm on cited vessel is the subject of the finding
122102Graft to cited segment, proximal sectionAnatomic term modifier indicating proximal section of graft to cited vessel is the subject of the finding
122103Graft to cited segment, mid sectionAnatomic term modifier indicating mid section of graft to cited vessel is the subject of the finding
122104Graft to cited segment, distal sectionAnatomic term modifier indicating distal section of graft to cited vessel is the subject of the finding
122105DateTime of InterventionDateTime of Intervention
122106Duration of InterventionDuration of Intervention
122107Baseline Stenosis MeasurementLesion stenosis measured prior to any interventional procedure
122108Post-Intervention Stenosis MeasurementLesion stenosis measured after an interventional procedure
122109Baseline TIMI FlowAssessment of perfusion across a coronary lesion measured prior to any interventional procedure
122110Post-Intervention TIMI FlowAssessment of perfusion across a coronary lesion measured after an interventional procedure
122111Primary Intervention DeviceIndication that device is the primary (first and/or most significant) device used for interventional therapy of a particular pathology (e.g., lesion)
122112Normal MyocardiumNormal Myocardium
122113Scarred MyocardiumScarred Myocardium
122114Thinning MyocardiumThinning Myocardium
122120Hemodynamics ReportHemodynamics Report
122121Atrial pressure measurementsAtrial pressure measurements, report section
122122Ventricular pressure measurementsVentricular pressure measurements, report section
122123Gradient assessmentGradient assessment, report section
122124Blood velocity measurementsBlood velocity measurements, report section
122125Blood lab measurementsBlood lab measurements, report section
122126Derived Hemodynamic MeasurementsDerived Hemodynamic Measurements, report section
122127Clinical ContextClinical Context, report section
122128Patient Transferred FromLocation from which the patient was transferred
122129PCI during this procedureIndication that the procedure includes a percutaneous coronary intervention
122130Dose Area ProductRadiation dose times area of exposure
122131Degree of ThrombusFinding of probability and/or severity of thrombus
122132Severity of CalcificationSeverity of Calcification, property of lesion
122133Lesion MorphologyLesion Morphology; form and/or structural properties of lesion
122134Vessel MorphologyVessel Morphology; form and/or structural properties of vessel
122138Circulatory SupportTechnique (device or procedure) of support for patient circulatory system; hemodynamic support
122139Reason for ExamReason for Exam
122140Comparison with Prior Exam DoneIndication that the current exam data has been compared with prior exam data
122141Electrode PlacementElectrocardiographic electrode placement technique
122142Acquisition Device TypeAcquisition Device Type
122143Acquisition Device IDAcquisition Device ID
122144Quantitative AnalysisQuantitative Analysis, report section
122145Qualitative AnalysisQualitative Analysis, report section
122146Procedure DateTimeThe date and time on which a procedure was performed on a patient.
122147Clinical InterpretationClinical Interpretation, report section
122148Lead IDECG Lead Identifier
122149Beat NumberBeat Number; ordinal of cardiac cycle within an acquisition
122150Compound StatementComplex coded semantic unit, consisting of several coded components
122151TrendTrend (temporal progression) of a clinical condition, finding, or disease
122152StatementCoded semantic unit
122153Statement ModifierCoded modifier for a semantic unit
122154Conjunctive TermConjunctive term between semantic units
122157ProbabilityProbability
122158ECG Global MeasurementsECG Global Measurements, report section
122159ECG Lead MeasurementsECG Lead Measurements, report section
122160Derived Area, Non-ValveDerived cross-sectional area of a vessel or anatomic feature, other than a cardiac valve
122161Pulmonary FlowRate of blood flow through Pulmonary artery
122162Systemic FlowRate of blood flow through the aorta
122163Discharge DateTimeDateTime of patient discharge from hospital admission
122164Coronary Artery Bypass During This AdmissionIndication that a Coronary Artery Bypass operation was performed during the current hospital admission
122165Date of DeathDate of Death
122166Death During This AdmissionIndication that the patient died during the current hospital admission
122167Death During CatheterizationIndication that the patient died during the current Catheterization procedure
122170Type of Myocardial InfarctionFinding of type of Myocardial Infarction
122171Coronary lesion >= 50% stenosisFinding of Coronary lesion with greater than 50% stenosis
122172Acute MI PresentFinding of Acute Myocardial Infarction Presence as indication for interventional procedure
122173ST Elevation Onset DateTimeDateTime of first determination of elevated ECG ST segment, as indication of Myocardial Infarction
122175Number of lesion interventions attemptedNumber of lesion interventions attempted during current procedure
122176Number of lesion interventions successfulNumber of lesion interventions successful during current procedure, where the residual post intervention stenosis is less than or equal to 50% of the arterial luminal diameter, TIMI Flow is 3 and the minimal decrease in stenosis was 20%.
122177Procedure ResultOverall success of interventional procedure
122178Lesion Intervention InformationLesion Intervention Information, report section
122179Peri-procedural MI occurredIndication that Myocardial Infarction occurred during current procedure
122180CK-MB baselineCreatine Kinase–MB value at baseline (start of procedure)
122181CK-MB peakCreatine Kinase–MB highest value measured during procedure
122182R-R intervalTime interval between ECG R-wave peaks in subsequent cardiac cycles
122183Blood temperatureBlood temperature
122185Blood Oxygen contentBlood Oxygen content
122187Blood Carbon dioxide saturationBlood Carbon dioxide saturation
122188Pulmonary Arterial Content (FCpa)Pulmonary Arterial Content (FCpa)
122189Pulmonary Venous Content (FCpv)Pulmonary Venous Content (FCpv)
122190Max dp/dt/PMax dp/dt/P
122191Ventricular End Diastolic pressureVentricular End Diastolic pressure
122192Indicator appearance timeElapsed time from injection of an indicator bolus until it is observed at another location
122193Maximum pressure accelerationMaximum pressure acceleration
122194Ventricular Systolic blood pressureVentricular Systolic blood pressure
122195Pulse StrengthPulse Strength; palpable strength of systolic flow
122196C wave pressureThe secondary peak pressure in the atrium during atrial contraction
122197Gradient pressure, averageGradient pressure, average
122198Gradient pressure, peakGradient pressure, peak
122199Pressure at dp/dt maxPressure at dp/dt max
122201Diastolic blood velocity, meanDiastolic blood velocity, mean
122202Diastolic blood velocity, peakDiastolic blood velocity, peak
122203Systolic blood velocity, meanSystolic blood velocity, mean
122204Systolic blood velocity, peakSystolic blood velocity, peak
122205Blood velocity, meanBlood velocity, mean
122206Blood velocity, minimumBlood velocity, minimum
122207Blood velocity, peakBlood velocity, peak
122208x-descent pressureVenous or atrial pressure minimum during ventricular systole, after A-wave
122209y-descent pressureVenous or atrial pressure minimum when tricuspid valve opens during diastole, after V-wave
122210z-point pressureAtrial pressure upon closure of tricuspid and mitral valves
122211Left Ventricular ejection timeLeft Ventricular ejection time
122212Left Ventricular filling timeLeft Ventricular filling time
122213Right Ventricular ejection timeRight Ventricular ejection time
122214Right Ventricular filling timeRight Ventricular filling time
122215Total Pulmonary ResistanceTotal Pulmonary Resistance
122216Total Vascular ResistanceTotal Vascular Resistance
122217Coronary Flow reserveCoronary Flow reserve
122218Diastolic/Systolic velocity ratioDiastolic/Systolic velocity ratio
122219Hyperemic ratioHyperemic ratio
122220Hemodynamic Resistance IndexHemodynamic Resistance Index
122221Thorax diameter, sagittalThorax diameter, sagittal
122222Procedure Environmental CharacteristicsEnvironmental characteristics in the procedure room
122223Room oxygen concentrationOxygen concentration in the procedure room
122224Room temperatureTemperature in the procedure room
122225Room Barometric pressureBarometric pressure in the procedure room
122227Left to Right FlowLeft to Right Flow
122228Right to Left FlowRight to Left Flow
122229Arteriovenous differenceArteriovenous oxygen content difference
12223010 Year CHD RiskFramingham Study 10 Year CHD Risk
122231Comparrative Average 10 Year CHD RiskFramingham Study Comparrative Average 10 Year CHD Risk
122232Comparrative Low 10 Year CHD RiskFramingham Study Comparrative Low 10 Year CHD Risk
122233LDL Cholesterol Score Sheet for MenFramingham Study LDL Cholesterol Score Sheet for Men
122234LDL Cholesterol Score Sheet for WomenFramingham Study LDL Cholesterol Score Sheet for Women
122235Total Cholesterol Score Sheet for MenFramingham Study Total Cholesterol Score Sheet for Men
122236Total Cholesterol Score Sheet for WomenFramingham Study Total Cholesterol Score Sheet for Women
122237Corrected Sinus Node Recovery TimeCorrected Sinus Node Recovery Time
122238Max volume normalized to 50mmHg pulse pressureMax volume normalized to 50mmHg pulse pressure
122239Oxygen ConsumptionOxygen Consumption
122240BSA = 3.207*WT^(0.7285-0.0188 log (WT))*HT^0.3Body Surface Area computed from patient height and weight: BSA = 3.207*WT[g]^(0.7285-0.0188 log (WT[g]))*HT[cm]^0.3 [Boyd E, The growth of the surface area of the human body. Minneapolis: University of Minnesota Press, 1935, eq. (36)]
122241BSA = 0.007184*WT^0.425*HT^0.725Body Surface Area computed from patient height and weight: BSA = 0.007184*WT[kg]^0.425*HT[cm]^0.725 [Dubois and Dubois, Arch Int Med 1916 17:863-71]
122242BSA = 0.0235*WT^0.51456*HT^0.42246Body Surface Area computed from patient height and weight: BSA = 0.0235*WT[kg]^0.51456*HT[cm]^0.42246 [Gehan EA, George SL, ‘Estimation of human body surface area from height and weight’, Cancer Chemother Rep 1970 54:225-35]
122243BSA = 0.024265*WT^0.5378*HT^0.3964Body Surface Area computed from patient height and weight: BSA = 0.024265*WT[kg]^0.5378*HT[cm]^0.3964 [Haycock G.B., Schwartz G.J.,Wisotsky D.H. ‘Geometric method for measuring body surface area: A height weight formula validated in infants, children and adults.’ The Journal of Pediatrics 1978 93:1:62-66]
122244BSA = (HT * WT/36)^0.5Body Surface Area computed from patient height and weight: BSA = (HT[m] * WT[kg]/36)^0.5 [Mosteller, R.D. ‘Simplified Calculation of Body Surface Area.’ N Engl J Med 1987 Oct 22;317(17):1098]
122245BSA = 1321+0.3433*WTBody Surface Area computed from patient weight: BSA = 1321+0.3433*WT[kg] (for pediatrics 3-30 kg) [Current, J.D. ‘A Linear Equation For Estimating The Body Surface Area In Infants And Children’, The Internet Journal of Anesthesiology. 1998. 2:2]
122246BSA = 0.0004688*WT^(0.8168-0.0154*log(WT))BSA = 0.0004688*(1000*WT)^(0.8168-0.0154*log(1000*WT)) Where (WT is weight in kilogram) Units = m^2 Boyd, Edith. The Growth of the Surface Area of the Human Body (originally published in 1935 by the University of Minnesota Press), Greenwood Press, Westport, Connecticut, 1975, p. 102. Equation (35)
122247VO2male = BSA (138.1 - 11.49 * loge(age) + 0.378*HRf)Equation for estimated oxygen consumption: VO2male = BSA (138.1 - 11.49 * loge(age) + 0.378*HRf)
122248VO2female = BSA (138.1 - 17.04 * loge(age) + 0.378*HRf)Equation for estimated oxygen consumption: VO2female = BSA (138.1 - 17.04 * loge(age) + 0.378*HRf)
122249VO2 = VeSTPD * 10 * (FIO2 - FE02)Equation for estimated oxygen consumption: VO2 = VeSTPD * 10 * (FIO2 - FE02)
122250VO2 = 152 * BSAEquation for estimated oxygen consumption: VO2 = 152 * BSA
122251VO2 = 175 * BSAEquation for estimated oxygen consumption: VO2 = 175 * BSA
122252VO2 = 176 * BSAEquation for estimated oxygen consumption: VO2 = 176 * BSA
122253Robertson & Reid tableRobertson & Reid Table for estimated oxygen consumption
122254Fleisch tableFleisch table for estimated oxygen consumption
122255Boothby tableBoothby table for estimated oxygen consumption
122256if (prem age< 3days) P50= 19.9Estimate of Oxygen partial pressure at 50% saturation for premature infants less than 3 days old: P50= 19.9
122257if (age < 1day) P50= 21.6Estimate of Oxygen partial pressure at 50% saturation for infants less than 1 day old: P50= 21.6
122258if (age < 30day) P50= 24.6Estimate of Oxygen partial pressure at 50% saturation for infants less than 30 days old: P50= 24.6
122259if (age < 18y) P50= 27.2Estimate of Oxygen partial pressure at 50% saturation for patients less than 18 years old: P50= 27.2
122260if (age < 40y) P50= 27.4Estimate of Oxygen partial pressure at 50% saturation for patients less than 40 years old: P50= 27.4
122261if (age > 60y) P50= 29.3Estimate of Oxygen partial pressure at 50% saturation for patients more than 60 years old: P50= 29.3
122262Area = Flow / 44.5 * sqrt(Gradient[mmHg])Cardiac valve area computed from flow and pressure gradient: Area = Flow / 44.5 * sqrt(Gradient[mmHg]) [Gorlin and Gorlin, Am Heart J, 1951]
122263MVA = Flow / 38.0 * sqrt(Gradient[mmHg])Mitral valve area computed from flow and pressure gradient: Mitral valve Area = Flow / 38.0 * sqrt(Gradient[mmHg]) [Gorlin and Gorlin, Am Heart J, 1951]
122265BMI = Wt/Ht^2Body Mass Index computed from weight and height: BMI = Wt/Ht^2
122266BSA = 0.007358*WT^0.425*HT^0.725Body Surface Area computed from patient height and weight: BSA = 0.007358*WT[kg]^0.425* HT[cm]^0.725 (for East Asian adult, aged 15+ years) [Kanai Izumi, Masamitsu Kanai, 'Clinical examination method summary']
122267BSA = 0.010265*WT^0.423*HT^0.651Body Surface Area computed from patient height and weight: BSA = 0.010265*WT[kg]^0.423* HT[cm]^0.651 (For East Asian child aged 12-14 years)
122268BSA = 0.008883*WT^0.444*HT^0.663Body Surface Area computed from patient height and weight: BSA = 0.008883*WT[kg]^0.444* HT[cm]^0.663 (For East Asian child aged 6-11 years)
122269BSA = 0.038189*WT^0.423*HT^0.362Body Surface Area computed from patient height and weight: BSA = 0.038189*WT[kg]^0.423* HT[cm]^0.362 (For East Asian child aged 1-5 years)
122270BSA = 0.009568*WT^0.473*HT^0.655Body Surface Area computed from patient height and weight: BSA = 0.009568*WT[kg]^0.473* HT[cm]^0.655 (For East Asian child aged 0-12 months)
122271Skin Condition WarmSkin Condition Warm
122272Skin Condition CoolSkin Condition Cool
122273Skin Condition ColdSkin Condition Cold
122274Skin Condition DrySkin Condition Dry
122275Skin Condition ClammySkin Condition Clammy
122276Skin Condition DiaphoreticSkin Condition Diaphoretic
122277Skin Condition FlushSkin Condition Flush
122278Skin Condition MottledSkin Condition Mottled
122279Skin Condition PaleSkin Condition Pale
122281Airway unobstructedAirway unobstructed
122282Airway partially obstructedAirway partially obstructed
122283Airway severely obstructedAirway severely obstructed
122288Not VisualizedAnatomy could not be visualized for the purpose of evaluation
122291Quantitative Arteriography ReportQuantitative Arteriography Report
122292Quantitative Ventriculography ReportQuantitative Ventriculography Report
122301Guidewire crossing lesion unsuccessfulGuidewire crossing lesion unsuccessful
122302Guidewire crossing lesion successfulGuidewire crossing lesion successful
122303Angioplasty balloon inflatedAngioplasty balloon inflated
122304Angioplasty balloon deflatedAngioplasty balloon deflated
122305Device deployedDevice deployed
122306Stent re-expandedStent re-expanded
122307Object removedObject removed
122308Radiation appliedRadiation applied
122309Radiation removedRadiation removed
122310Interventional device placement unsuccessfulInterventional device placement unsuccessful
122311Interventional device placedInterventional device placed
122312Intervention performedIntervention performed
122313Interventional device withdrawnInterventional device withdrawn
122319Catheter SizeCatheter Size
122320Injectate TemperatureInjectate Temperature
122321Injectate VolumeInjectate Volume
122322Calibration FactorFactor by which a measured or calculated value is multiplied to obtain the estimated real-world value.
122325IVUS ReportIntravascular Ultrasound Report
122330EEM DiameterExternal Elastic Membrane (EEM) diameter measured through the center point of the vessel. Center point of the vessel is defined as the center of gravity of the EEM area. The EEM is a discrete interface at the border between the media and the adventitia.
122331Plaque Plus Media ThicknessThe distance from intimal leading edge to the external elastic membrane along any line passing through the luminal center, which is defined as the center of gravity of the lumen area.
122332Lumen PerimeterPlanimetered perimeter of the lumen.
122333EEM Cross-Sectional AreaVessel area measured at the External Elastic Membrane (EEM), a discrete interface at the border between the media and the adventitia.
122334Plaque plus Media Cross-Sectional AreaArea within the EEM occupied by atheroma, regardless of lumen compromise. Plaque plus Media Area = EEM cross-sectional area - vessel lumen cross-sectional area
122335In-Stent Neointimal Cross-Sectional AreaMeasurement of in-stent restenosis. In-Stent Intimal Area = Stent cross-sectional area – vessel lumen cross-sectional area
122336Vascular Volume measurement lengthLongitudinal extent of the Vascular Volume Measurement. This is the distance from the distal edge to the proximal edge of the Volume measurement.
122337Relative positionLongitudinal distance from the closest edge of a fiducial feature or reference location to the start of the vascular measurement. This value will be a positive if the measurement is distal to the fiducial feature or reference location, or negative if the measurement is proximal to the fiducial feature or reference location.
122339Stent Volume ObstructionIn-Stent Neointimal Volume / Stent Volume
122340Fiducial featureReference, normally anatomical, which is used for locating the position of a measurement.
122341Calcium LengthLongitudinal calcium length measurement
122343Lumen Eccentricity IndexMeasurement of vessel lumen eccentricity. Lumen Eccentricity Index = (maximum vessel lumen diameter - minimum vessel lumen diameter) / maximum vessel lumen diameter. Lumen diameters are measured through the center point of the lumen, which is defined as the center of gravity of the lumen area.
122344Plaque plus Media Eccentricity IndexPlaque plus Media Eccentricity Index = (maximum Plaque plus media thickness - minimum Plaque plus media thickness) / maximum Plaque plus media thickness
122345Remodeling IndexMeasurement of increase or decrease in EEM area that occurs during the development of atherosclerosis. Remodeling Index = Lesion EEM area / reference EEM area
122346Stent Symmetry IndexMeasurement of stent circularity. Stent Symmetry Index = (maximum stent diameter - minimum stent diameter) / maximum stent diameter
122347Stent Expansion IndexMeasurement of stent area relative to the reference lumen area. Stent Expansion Index = Minimum stent area / reference vessel lumen cross-sectional area
122348Lumen Shape IndexMeasurement of vessel lumen eccentricity. Lumen Shape Index = (2p * sqrt(Vessel lumen cross-sectional area / p) / Lumen Perimeter) 2 Reference: Tobis & Yock, “Intravascular Ultrasound Imaging”, Chapter 7
122350Lumen Diameter RatioLumen diameter ratio = minimum vessel lumen diameter / maximum vessel lumen diameter, measured at the same cross section in the vessel. Lumen diameters are measured through the center point of the lumen, which is defined as the center of gravity of the lumen area.
122351Stent Diameter RatioStent diameter ratio = Minimum stent diameter / Maximum stent diameter, measured at the same cross section in the vessel. Stent diameters are measured through the center point of the stent, which is defined as the center of gravity of the stent area.
122352EEM Diameter RatioEEM diameter ratio = minimum EEM diameter / maximum EEM diameter. Measured at the same cross section in the vessel.
122354Plaque BurdenFractional area within the External Elastic Membrane (EEM) occupied by atheroma. Plaque Burden = (EEM area - vessel lumen cross-sectional area) / EEM area
122355Arc of CalciumAngular measurement of a Calcium deposit with the apex located at the center of the lumen, which is defined as the center of gravity of the lumen area.
122356Soft plaquePlaque characterized by low density or echogenicity.
122357In-Stent NeointimaAbnormal thickening of the intima within the stented segment.
122360True LumenLumen surrounded by all three layers of the vessel-intima, media, and adventitia.
122361False LumenA channel, usually parallel to the true lumen, which does not communicate with the true lumen over a portion of its length.
122363Plaque RupturePlaque ulceration with a tear detected in a fibrous cap.
122364Stent GapLength of gap between two consecutive stents.
122367T-1 WorstWorst stenosis - the stenosis with the smallest lumen size within a vessel segment.
122368T-2 Secondary2nd most severe stenosis within a vessel segment.
122369T-3 Secondary3rd most severe stenosis within a vessel segment.
122370T-4 Secondary4th most severe stenosis within a vessel segment.
122371EEM VolumeExternal Elastic Membrane (EEM) volume measured within a specified region. The EEM is a discrete interface at the border between the media and the Adventitia.
122372Lumen VolumeLumen volume measured within a specified region.
122374In-Stent Neointimal VolumeThe amount of plaque between the lumen and stent, within the stent region; In-stent restenosis. In-Stent Neointimal Volume = Stent Volume - Lumen Volume
122375Native Plaque VolumeThe amount of plaque between the stent and the EEM, within the stent region.  Native Plaque Volume = EEM Volume - Stent Volume
122376Total Plaque VolumeTotal amount of plaque between the EEM and the Lumen, over the entire region that is measured.  Total Plaque Volume = EEM Volume - Lumen Volume.
122380Proximal ReferenceProximal reference segment measurement site. Typically the site with the largest lumen proximal to a stenosis but within the same segment (usually within 10 mm of the stenosis with no major intervening branches).
122381Distal ReferenceDistal reference segment measurement site. Typically the site with the largest lumen distal to a stenosis but within the same segment (usually within 10 mm of the stenosis with no major intervening branches).
122382Site of Lumen MinimumSite of the smallest lumen in a vessel, e.g., due to a stenotic lesion.
122383Entire PullbackMeasurement region that encompasses the entire vessel imaged in a single pullback acquisition
122384Stented RegionMeasurement region occupied by the stent
122385Proximal Stent MarginRegion starting at the proximal edge of the Stent and extending several millimeters (usually 5 mm) proximal to the Stent edge.
122386Distal Stent MarginRegion starting at the distal edge of the Stent and extending several millimeters (usually 5 mm) distal to the Stent edge.
122387Dissection ClassificationClassification of dissections in a vessel
122388Intra-stent DissectionSeparation of neointimal hyperplasia from stent struts, usually seen only after treatment of in-stent restenosis.
122389Vulnerable PlaquePlaque with a thin cap fibrous atheroma that is at increased risk of rupture and thrombosis (or re-thrombosis) and rapid stenosis progression.
122390Eroded PlaquePlaque erosions with no structural defect (beyond endothelial injury) or gap in the plaque.
122391Relative Stenosis SeverityStenosis severity classifications of multiple lesions in a vessel.
122393Restenotic LesionA finding of a previously treated lesion in which stenosis has reoccurred.
122394Fibro-Lipidic PlaqueLoosely packed bundles of collagen fibers with regions of lipid deposition present. Region is cellular and no cholesterol clefts or necrosis are present. Some macrophage infiltration. Increase in extra cellular matrix.
122395Necrotic-Lipidic PlaqueArea within the plaque with very low echogenicity separated from the lumen and surrounded by more echogenic structures (fibrous cap). Highly lipidic necrotic region with remnants of foam cells and dead lymphocytes present. No collagen fibers are visible and mechanical integrity is poor. Cholesterol clefts and micro calcifications are visible.
122398Intimal DissectionDissection limited to the intima or atheroma, and not extending to the media.
122399Medial DissectionDissection in the arterial Media, extending into the media.
122400Simultaneously AcquiredThe referenced information was acquired simultaneously with the information in the object in which the reference occurs.
122401Same AnatomyInformation acquired for the same anatomic region.
122402Same IndicationInformation acquired for the same indication (e.g. to elucidate the same diagnostic question).
122403For Attenuation CorrectionThe referenced information was used to correct the data for differential attenuation through different anatomic tissue.
122404ReconstructedValue estimated for a vessel in the absence of a stenosis
122405Algorithm ManufacturerManufacturer of application used
122406Left Atrial Ejection Fraction by AngiographyLeft Atrial Ejection Fraction by Angiography
122407Left Atrial ED VolumeLeft Atrial End Diastolic Volume
122408Left Atrial ES VolumeLeft Atrial End Systolic Volume
122410Contour RealignmentContour repositioning of End Diastolic relative to End Systolic contour
122411Threshold ValueThe minimum standard deviation to define the hypokinesis and hyperkinesis
122417Regional Abnormal Wall MotionReport of differentiation of wall motion compared to normal
122421Calibration ObjectObject used for Calibration
122422Calibration MethodMethod used for Calibration
122423Calibration Object SizeSize of calibration object
122428Area Length MethodMethod how long axis is positioned
122429Volume MethodModel for cardiac chamber volume calculation
122430Reference MethodMethod to define original diameter of the artery
122431Regression Slope EDRelation between calculated End Diastolic volume and ventricular End Diastolic volume. The specific meaning is dependent on volume method used.
122432Regression Offset EDCorrection factor for the calculated End Diastolic volume and ventricular End Diastolic volume. The specific meaning is dependent on volume method used.
122433Regression Slope ESRelation between calculated End Systolic volume and ventricular End Systolic volume. The specific meaning is dependent on volume method used.
122434Regression Offset ESCorrection factor for the calculated End Systolic volume and ventricular End Systolic volume. The specific meaning is dependent on volume method used.
122435Regression Volume ExponentExponent of volume in regression formula
122438Reference PointsContainer for spatial locations or coordinates used for calculation
122445Wall ThicknessAverage thickness of the chamber wall in the current view
122446Wall VolumeVolume of the chamber wall estimated from the current view
122447Wall MassMass of the chamber wall (myocardium)
122448Wall StressPeak systolic stress of chamber wall
122449Centerline Wall Motion AnalysisMethod to calculate wall motion [example: Sheehan, 1986]
122450Normalized Chord LengthThe length between End Diastolic and End Systolic contour perpendicular on the centerline normalized by a method dependent ventricular perimeter length. The centerline is the line equidistant between the End Diastolic and End Systolic contour [example: Sheehan, 1986]
122451Abnormal RegionThe report of the boundaries of the abnormal (hyperkinetic, hypokinetic, a-kinetic) regions associated with the territory of the artery [example: Sheehan, 1986]
122452First Chord of Abnormal RegionThe chord number specifying the begin of abnormal region [example: Sheehan, 1986]
122453Last Chord of Abnormal RegionThe chord number specifying the end of abnormal region [example: Sheehan, 1986]
122459Territory Region SeveritySeverity at the regional abnormality extent [example: Sheehan, 1986]
122461Opposite Region SeveritySeverity at the opposite regional abnormality extent [example: Sheehan, 1986]
122464LAD Region in RAO ProjectionBased on a total number of chords of 100 and RAO project the range of chords belonging to this circumferential extent lies between 5 – 85. [Sheehan, 1986]
122465RCA Region in ROA ProjectionBased on a total number of chords of 100 and RAO project the range of chords belonging to this circumferential extent lies between 25 – 85. [Sheehan, 1986]
122466Single LAD Region in RAO ProjectionBased on a total number of chords of 100 and RAO projection the range of chords belonging to this regional extent lies between 10 – 66 (hypokinetic) and 67 – 80 (hyperkinetic). [Sheehan, 1986]
122467Single RCA Region in RAO ProjectionBased on a total number of chords of 100 and RAO projection the range of chords belonging to this regional extent lies between 51 – 80 (hypokinetic) and 10 – 50 (hyperkinetic). [Sheehan, 1986]
122468Multiple LAD Region in RAO ProjectionBased on a total number of chords of 100 and RAO projection the range of chords belonging to this regional extent lies between 10 – 58 (hypokinetic) and 59 –80 (hyperkinetic). [Sheehan, 1986]
122469Multiple RCA Region in RAO ProjectionBased on a total number of chords of 100 and RAO projection the range of chords belonging to this regional extent lies between 59 – 80 (hypokinetic) and 10 – 58 (hyperkinetic). [Sheehan, 1986]
122470LAD Region in LAO ProjectionBased on a total number of chords of 100 and LAO projection the range of chords belonging to this regional extent lies between 50 –100 (hypokinetic) and 20 – 49 (hyperkinetic). [Sheehan, 1986]
122471RCA Region in LAO ProjectionBased on a total number of chords of 100 and LAO projection the range of chords belonging to this regional extent lies between 19 – 67 (hypokinetic) and 68 – 100 (hyperkinetic). [Sheehan, 1986]
122472CFX Region in LAO ProjectionBased on a total number of chords of 100 and LAO projection the range of chords belonging to this regional extent lies between 38 –74 (hypokinetic) and 75 – 100 (hyperkinetic). [Sheehan, 1986]
122473Circular MethodMethod based on assumption that the image object is circular.
122474Densitometric MethodMethod based on the gray value distribution of the image.
122475Center of GravityEnd Systolic contour realigned to End Diastolic contour based on the center of gravity
122476Long Axis BasedEnd Systolic contour realigned to End Diastolic contour based on the mid point of the long axis. The long axis end points are defined as the posterior and apex.
122477No RealignmentNo Contour Realignment applied
122480Vessel Lumen Cross-Sectional AreaCalculated Vessel Lumen Cross-Sectional Area based on the referenced method
122481Contour StartLocation of the beginning of a contour
122482Contour EndLocation of the end of a contour
122485SphereSphere is used as calibration object
122486Geometric IsocenterObject of interest in isocenter of image and pixel separation is calculated from geometric data
122487Geometric Non-IsocenterObject of interest not in isocenter of image and pixel separation is calculated from geometric data and out of isocenter distances
122488Calibration Object UsedObject used for calibration (e.g. sphere)
122489Curve Fitted ReferenceApplication dependent method to calculate the reference diameter based on the multiple diameter values.
122490Interpolated Local ReferenceApplication dependent method to calculate reference by interpolation, based on the diameter of two or more user defined reference positions.
122491Mean Local ReferenceApplication dependent method to calculate by averaging the reference, based on the diameter of one or more user defined reference positions.
122493Radial Based Wall Motion AnalysisMethod to calculate wall motion based on the lengths of the radials in the predefined regions [Ingels]
122495Regional Contribution to Ejection FractionContribution of Region to global Ejection factor based on radial or landmark based wall motion method
122496Radial ShorteningThe reduction of area between End Systolic and End Diastolic based on radial wall motion analysis
122497Landmark Based Wall Motion AnalysisMethod to calculate wall motion based on the move of landmarks on the wall [Slager]
122498Slice Contribution to Ejection FractionContribution to the ejection fraction of a specific slice region [Slager]
122499Frame to Frame AnalysisMethod to calculate volumes of heart chambers for every image in a range
122501Area of closed irregular polygonThe area is derived by considering a set of coordinates as a closed irregular polygon, accounting for inner angles. The exact method, such as by decomposition into triangles or quadrilaterals, is not specified, since it does not affect the numeric result, apart from the effect of numeric precision during computation of intermediate results.
122502Area of a closed NURBSThe area is derived by using a set of coordinates as control points for a Non Uniform Rational B-Spline (NURBS).
122503Integration of sum of closed areas on contiguous slicesThe volume derived by integrating the sum of the areas on adjacent slices across the slice interval; each area is defined by a regular planar shape or by considering a set of coordinates as a closed irregular polygon, accounting for inner angles.
122505CalibrationProcedure used to calibrate measurements or measurement devices
122507Left ContourLeft contour of lumen (direction proximal to distal)
122508Right ContourRight contour of lumen (direction proximal to distal)
122509Diameter GraphOrdered set of diameters values derived from contours (direction proximal to distal)
122510Length Luminal SegmentLength Luminal Segment
122511Graph IncrementIncrement value along X-axis in Diameter Graph
122516Site of Maximum LuminalLocation of the maximum lumen area in a lesion or vessel.
122517Densitometric Luminal Cross-sectional Area GraphOrdered set of cross-sectional Vessel Lumen Cross-Sectional Area values derived from contours (direction proximal to distal) based on densitometric method
122528Position of Proximal BorderPosition of proximal border of segment relative to the contour start (proximal end of analysis area)
122529Position of Distal BorderPosition of distal border of segment relative to the contour start (proximal end of analysis area)
122542Plaque AreaLongitudinal cross sectional area of plaque
122544Diameter SymmetrySymmetry of stenosis (0 = complete asymmetry, 1 = complete symmetry) [reference PS 3.17 X.2]
122545Area SymmetrySymmetry of plaque (0 = complete asymmetry, 1 = complete symmetry) [reference PS 3.17 X.2]
122546Inflow AngleThe average slope of the diameter function between the position of the minimum luminal diameter and the position of the proximal border of the segment
122547Outflow AngleThe average slope of the diameter function between the position of the minimum luminal diameter and the position of the distal border of the segment
122548Stenotic Flow ReserveThe relation between coronary pressure and coronary flow
122549Poiseuille ResistancePoiseuille Resistance at the location of the stenosis
122550Turbulence ResistanceTurbulence Resistance at the location of the stenosis
122551Pressure Drop at SFRPressure drop over the stenosis at maximum heart output
122554Segmentation MethodMethod for selection of vessel sub-segments
122555Estimated Normal FlowEstimate of the volume of blood flow in the absence of stenosis
122558Area Length KennedyArea Length method defined by Kennedy [Kennedy, 1970]
122559Area Length DodgeArea Length method defined by Dodge [Dodge, 1960]
122560Area Length WynneArea Length method defined by Wynne [Wynne]
122562Multiple SlicesVolume method based on multiple slice
122563BoakVolume method defined by Boak [Boak]
122564TS PyramidVolume method defined by Ferlinz [Ferlinz]
122565Two ChamberVolume method defined by Graham [Graham]
122566ParallelepipedVolume method defined by Arcilla [Arcilla]
122572BSA^1.219Corrected Body Surface area for indexing the hemodynamic measurements for a pediatric patient
122574Equidistant methodMethod for selecting sub-segments that are all of the same length
122575User selected methodManually selected start and end of sub-segment
122582Left ventricular posterobasal segmentLeft ventricular posterobasal segment
122600Cardiovascular Analysis ReportReport of a Cardiovascular Analysis, typically from a CT or MR study
122601Ventricular AnalysisVentricular Analysis
122602Myocardial Perfusion AnalysisMyocardial Perfusion Analysis
122603Calcium Scoring AnalysisCalcium Scoring Analysis
122604Flow QuantificationFlow Quantification Analysis
122605Vascular Morphological AnalysisVascular Morphological Analysis
122606Vascular Functional AnalysisVascular Functional Analysis
122607Thickening AnalysisAnalysis of myocardial wall thickening
122608Absolute Values Of Ventricular MeasurementsSection Heading for absolute values of ventricular measurements
122609Normalized Values Of Ventricular MeasurementsResults of normalizing ventricular measurements
122611Reference PointReference Point of a measurement
122612Central breathing positionCentral breathing position between inspiration and expiration
122616Peak Ejection RatePeak of the ventricular ejection rate
122617Peak Ejection TimeTime of the peak of ventricular ejection
122618Peak Filling RatePeak of the fluid filling rate
122619Peak Filling TimeTime interval from a given reference point (e.g. end systole) until time of peak filling
122620Papillary Muscle ExcludedPapillary muscle was excluded from the measurement
122621Papillary Muscle IncludedPapillary muscle was included in the measurement
122624Wall Thickness Ratio end-systolic to end-diastolicThe ratio of the end-systolic wall thickness compared to the end-diastolic wall thickness
122627Curve Fit MethodThe method to smooth a ventricular volume as a function of time
122628Baseline Result CorrectionBaseline correction used in the calculation of the results
122631Signal Earliest Peak TimeThe time in a dynamic set of images at which the first peak of the signal is observed for the analysed myocardial wall segments.
122633Signal Increase Start TimeThis is the time at which the signal begins to increase.
122634Signal Time to PeakTime interval between the beginning of the signal increase to the time at which the signal intensity reaches its first maximum in a dynamic set of images.
122635MR Perfusion PeakPeak of the MR perfusion signal
122636MR Perfusion SlopeSignal intensity as a function of time. It is the change in the signal intensity divided by the change in the time.
122637MR Perfusion Time IntegralMR perfusion time integral from baseline (foot time) to earliest peak
122638Signal Baseline StartFirst time point in a dynamic set of images used in the calculation of the baseline signal intensity for each myocardial wall segment.
122639Signal Baseline EndLast time point in a dynamic set of images used in the calculation of the baseline signal intensity for each myocardial wall segment.
122640Image IntervalThe time delta between images in a dynamic set of images.
122642Velocity Encoding Minimum ValueThe minimum velocity encoded by the phase encoding gradient
122643Velocity Encoding Maximum ValueThe maximum velocity encoded by the phase encoding gradient
122645Net Forward VolumeForward volume-reverse volume
122650Area Based MethodArea Based Method for estimating volume or area
122651Diameter Based MethodDiameter Based Method for estimating volume, area or diameter
122652Volume Based MethodVolume Based Method for estimating volume
122655NASCETA method of diameter measurements according to NASCET (North American Symptomatic Carotid Endarterectomy Trial)
122656ECSTA method of diameter measurements according to ECST (European Carotid Surgery Trial)
122657Agatston Score ThresholdAgatston Score Threshold
122658Calcium Mass ThresholdCalcium Mass Threshold
122659Calcium Scoring CalibrationCalcium Scoring Calibration
122660Calcium VolumeCalcium Volume
122661Calcium MassCalcium Mass
122664Late Contrast EnhancementDelayed hyperenhancement of a tissue observed in an image acquired after injection of contrast media.
122665Time interval since injection of contrast mediaTime interval since injection of contrast media
122666Time relative to R-wave peakTime relative to R-wave peak
122667Blood velocity vs. time of cardiac cycleRelationship between blood velocity and time relative to R-wave peak
122668Time interval since detection of contrast bolusTime interval since detection of contrast bolus
122670Papillary Muscle Included/ExcludedIndicates if the papillary muscle was included or excluded in the measurement
122675Anterior-PosteriorAnterior to Posterior direction
122680endoleakPersistent flow of blood into the stent-grafting
122683Stent FractureFracture of a stent
122684Stent DisintegrationDisintegration of a stent
122685Stent CompositionMaterial that a stent consists of
122686Parent Vessel FindingFinding about the characteristics of the parent vessel of a vessel
122687Site of Lumen MaximumSite of Maximal lumen diameter of a vessel
122698X-ConceptThe physical domain (time, space, etc.) to the horizontal axis of the graphical presentation.
122699Y-ConceptThe physical domain (time, space, etc.) to the vertical axis of the graphical presentation.
122700Indications for Pharmacological StressIndications for Pharmacological Stress
122701Procedure time baseReference time for measurement of elapsed time in a procedure
122702Treadmill speedTreadmill speed
122703Treadmill gradientTreadmill gradient
122704Ergometer powerErgometer power
122705Pharmacological Stress Agent Dose RatePharmacological Stress Agent Dose Rate
122706Rating of Perceived ExertionRating of Perceived Exertion
122707Number of Ectopic BeatsNumber of ectopic beats during a period of collection
122708Double ProductHeart rate times systolic blood pressure
122709Activity workloadPhysical activity workload (intensity) measurement
122710Time since start of stageElapsed time at stage
122711Exercise duration after stress agent injectionExercise duration after stress agent injection
122712Imaging Start TimeImaging Start Time
122713Attenuation correction methodAttenuation correction method
122715Pharmacological Stress Agent DosePharmacological Stress Agent Dose
122716Maximum Power Output AchievedMaximum power output achieved during course of procedure
122717Peak activity workloadPeak physical activity intensity measurement during course of procedure
122718Peak Double ProductPeak Double Product measurement during course of procedure
122720OSEM algorithmOrdered subsets expectation maximization reconstruction algorithm
122721Chang methodChang attenuation correction method
122726Algorithmic attenuation correctionAttenuation correction not based on image-based attenuation maps
122727NM transmission attenuation correctionNM transmission attenuation correction
122728CT–based attenuation correctionCT–based attenuation correction
122729No Attenuation CorrectionNo attenuation correction
122730Bazett QTc AlgorithmBazett QT Correction Algorithm; QT/(RR ^ 0.5); Bazett HC. "An analysis of the time-relations of electrocardiograms" Heart 7:353-370 (1920).
122731Hodges QTc AlgorithmHodges QT Correction Algorithm; QT + 1.75 (heart rate-60); Hodges M, Salerno Q, Erlien D. “Bazett's QT correction reviewed. Evidence that a linear QT correction for heart rate is better.” J Am Coll Cardiol 1:694 (1983)
122732Fridericia QTc AlgorithmFridericia QT Correction Algorithm; QT/(RR ^ 0.333); Fridericia LS. "The duration of systole in the electrocardiogram of normal subjects and of patients with heart disease" Acta Med Scand 53:469-486 (1920)
122733Framingham QTc AlgorithmFramingham QT Correction Algorithm; QT + 0.154 (1- RR); Sagie A, Larson MG, Goldberg RJ, et al. “An improved method for adjusting the QT interval for heart rate (the Framingham Heart Study).” Am J Cardiol 70:797-801(1992)
122734Borg RPE ScaleBorg Rating of Perceived Exertion Scale, range 6:20
122735Borg CR10 ScaleBorg category ratio scale, open ended range with nominal range 0:10
122739Overall study qualityOverall study quality
122740Excellent image qualityExcellent image quality
122741Good image qualityGood image quality
122742Poor image qualityPoor image quality
122743Body habitus attentuationImage attenuation due to body physique (overweight)
122744Breast attenuationImage attenuation due to breast tissue
122745Diaphragmatic attenuationImage attenuation due to diaphragm
122748False positive defect findingFinding of a defect (e.g., from automated analysis) is incorrect
122750Non-diagnostic - low heart rateECG is non-diagnostic due to low heart rate
122751Non-diagnostic - resting ST abnormalitiesECG is non-diagnostic due to resting ST abnormalities
122752Non-diagnostic - ventricular pacing or LBBBECG is non-diagnostic due to ventricular pacing or Left Bundle Branch Block
122755Strongly positiveStrongly positive finding
122756Strongly positive - ST elevationStrongly positive finding - ST elevation
122757ST Depression – HorizontalFinding of ST segment depression with no slope
122758ST Depression – UpslopingFinding of ST segment depression with upslope
122759ST Depression – DownslopingFinding of ST segment depression with downslope
122760Stress test scoreStress test score
122762Number of diseased vessel territoriesNumber of diseased vessel territories
122764Weight exceeds equipment limitPatient weight exceeds equipment limit
122768Difference in Ejection FractionDifference in Ejection Fraction
122769Difference in ED LV VolumeDifference in End Diastolic Left Ventricular Volume
122770Ratio of achieved to predicted maximal oxygen consumptionRatio of achieved to predicted maximal oxygen consumption
122771Ratio of achieved to predicted functional capacityRatio of achieved to predicted functional capacity
122772Aerobic indexWorkload (Watts) at target heart rate divided by body weight
122773ST/HR IndexST depression at peak exercise divided by the exercise-induced increase in heart rate [Kligfield P, Ameisen O, Okin PM. “Heart rate adjustment of ST segment depression for improved detection of coronary artery disease.” Circulation 1989;79:245-55.]
122775Agreement with prior findingsAgreement with prior findings
122776Disagreement with prior findingsDisagreement with prior findings
122781Rest thallium/stress technetium procedureNuclear Medicine Rest thallium/stress technetium procedure
122782Rest technetium/stress technetium 1 day procedureNuclear Medicine Rest technetium/stress technetium 1 day procedure
122783Rest technetium/stress technetium 2 day procedureNuclear Medicine Rest technetium/stress technetium 2 day procedure
122784Stress technetium/rest technetium 1 day procedureNuclear Medicine Stress technetium/rest technetium 1 day procedure
122785NM Myocardial Viability procedureNuclear Medicine Myocardial Viability procedure
122791PET Myocardial Perfusion, Rest onlyPositron Emission Tomography Perfusion Imaging procedure, rest only
122792PET Myocardial Perfusion, Stress onlyPositron Emission Tomography Perfusion Imaging procedure, stress only
122793PET Myocardial Perfusion, Rest and StressPositron Emission Tomography Perfusion Imaging procedure, rest and stress
122795PET Myocardial Viability, Rest onlyPositron Emission Tomography Myocardial Viability procedure, rest only
122796PET Myocardial Viability, Stress onlyPositron Emission Tomography Myocardial Viability procedure, stress only
122797PET Myocardial Viability, Rest and StressPositron Emission Tomography Myocardial Viability procedure, rest and stress
122799Anginal EquivalentGroup of symptoms heralding angina pectoris that does not include chest pain (dyspnea, diaphoresis, profuse vomiting in a diabetic patient, or arm or jaw pain).
123001RadiopharmaceuticalActive ingredient (molecular) used for radioactive tracing
123003Radiopharmaceutical Start TimeTime of radiopharmaceutical administration to the patient for imaging purposes
123004Radiopharmaceutical Stop TimeEnding time of radiopharmaceutical administration to the patient for imaging purposes
123005Radiopharmaceutical VolumeVolume of radiopharmaceutical administered to the patient
123006Radionuclide Total DoseTotal amount of radionuclide administered to the patient at Radiopharmaceutical Start Time
123007Radiopharmaceutical Specific ActivityActivity per unit mass of the radiopharmaceutical at Radiopharmaceutical Start Time
123009Radionuclide Syringe CountsPre-injection syringe acquisition count rate
123010Radionuclide Residual Syringe CountsSyringe acquisition count rate following patient injection
123011Contrast/Bolus AgentContrast or bolus agent
123012Pre-MedicationMedication to be administered at the beginning of the Scheduled Procedure Step
123014Target RegionAnatomic Region to be imaged
123015Imaging DirectionDirection of imaging (includes view, transducer orientation, patient orientation, and/or projection)
123016Imaging ConditionsImaging condition for refinement of protocol (includes secondary posture, instruction, X-Ray / electron beam energy or nuclide, and ultrasound modes), as used in JJ1017 v3.0
123019Caudal 10 degree distal-cranioproximal obliqueCaudal 10 degree distal-cranioproximal oblique radiographic projection, defined per Smallwood et al.
123101Neighborhood AnalysisSurface processing utilizing predefined weighting factors (i.e. kernels) applied to different data values depending on their location relative to other data values within the data domain. Includes Low Pass, High Pass, Gaussian, Laplacian, etc.
123102Adaptive FilteringSurface processing applied non-uniformly utilizing a priori knowledge of the system and/or relative locations of the data values within the data domain. Example: Neighborhood analysis where weighting factors are modified continuously based on predefined criteria.
123103Edge DetectionSurface processing through the exploitation of discontinuities in the data values within their domain. Includes Gradient filters.
123104Morphological OperationsSurface processing based on the connectivity of values based on the shape or structure of the data values within their domain. Includes erode, dilate, etc.
123105Histogram AnalysisSurface processing applied to the distribution of the data values. Includes thresholding, Bayesian Classification, etc.
123106Multi-Scale/Resolution FilteringSurface processing accomplished through varying the data domain size. Include deformable models.
123107Cluster AnalysisSurface processing accomplished by combining data values based on their relative location within their domain or value distribution. Includes K- and C-means, Fuzzy Analysis, Watershed, Seed Growing, etc.
123108Multispectral ProcessingSurface processing accomplished through the weighted combination of multiple data sets. Includes Principle Component Analysis, linear and non-linear weighed combinations, etc.
123109Manual ProcessingSurface processing accomplished through human interaction. Region drawing
123110Artificial IntelligenceSurface processing using Artificial Intelligence techniques, such as Machine Learning, Neural Networks, etc.
123111Deformable ModelsSurface processing using Deformable Model techniques, such as Point Distribution Models, Level Sets, Simplex Meshes, etc.
125000OB-GYN Ultrasound Procedure ReportDocument Title of OB-GYN procedure report
125001Fetal Biometry RatiosReport section for assessment of fetal growth using ratios and indexes
125002Fetal BiometryReport section for assessment of fetal growth
125003Fetal Long BonesReport section for assessment of fetal growth by long bone measurements
125004Fetal CraniumReport section for assessment of fetal cranium growth
125005Biometry GroupBiometric assessment of
125006Biophysical ProfileReport section for assessment of biophysical observations that evaluate fetal well-being according to Manning, Antepartum Fetal Evaluation: Development of a Fetal Bbiophysical Profile Score, Am. J Obsetet Gynecol, 1980;136:787.
125007Measurement GroupA grouping of related measurements and calculations that share a common context
125008Fetus SummaryReport section for fetus specific prodedure summary observations
125009Early GestationReport section for assessment of early gestation fetus
125010IdentifierA name to differentiate between multiple instances of some item
125011Pelvis and UterusReport section for assessment of pelvis and uterus
125012Growth Percentile rankThe rank of a measured growth indicator relative to a normal distribution expressed as a percentage.
125013Growth Z-scoreThe rank of a measured growth indicator relative to a normal distribution expressed as the dimensionless quantity z = (x-m)/s where (x-m) is the deviation of the value x, from from the distribution mean, m, and s is the standard deviation of the distribution.
125015Fetus CharacteristicsFetus characteristics (findings section title)
125016Fetal MeasurementsFetal Measurements (findings section title)
125021Frame of Reference IdentityThere is a defined equivalence between the Frame of Reference of the Registration SOP instance and the Frame of Reference of the referenced images.
125022Fiducial AlignmentThe registration is based on fiducials that represent patient or specimen features identified in each data set.
125023Acquisition Equipment AlignmentRegistration based on a-priori knowledge of the acquisition geometry. This is not an object registration as in fiducial registration. Rather, it specifies a known spatial relationship.
125024Image Content-based AlignmentComputed registration based on global image information
125025Visual AlignmentRegistration by visually guided manipulation.
125030Inter-Hemispheric PlaneA plane fiducial that specifies the location of the plane separating the two hemispheres of the brain.
125031Right Hemisphere Most AnteriorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the anterior limit of the right brain hemisphere
125032Right Hemisphere Most PosteriorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the posterior limit of the right brain hemisphere
125033Right Hemisphere Most SuperiorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the superior limit of the right brain hemisphere
125034Right Hemisphere Most InferiorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the inferior limit of the Right brain hemisphere
125035Left Hemisphere Most AnteriorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the anterior limit of the left brain hemisphere
125036Left Hemisphere Most PosteriorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the posterior limit of the left brain hemisphere
125037Left Hemisphere Most SuperiorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the superior limit of the left brain hemisphere
125038Left Hemisphere Most InferiorA point fiducial that specifies the location in the plane perpendicular to the Anterior- Posterior-Commissure axis and tangential to the inferior limit of the left brain hemisphere
125100Vascular Ultrasound Procedure ReportRoot Document Title for ultrasound vascular evidence reports (worksheets).
125101Vessel BranchThe particular vessel branch, such as the inferior, medial or lateral
125102Graft TypeA descriptor or elaboration of the type of graft
125105Measurement OrientationA modifier to a 2D distance measurement to describe its orientation. For example, a vascular distance measurement for a vessel plague could have a modifier Transverse or Longitudinal.
125106Doppler AngleThe angle formed between the Doppler beam line and the direction of blood flow within a region of interest in the body defined by the sample volume.
125107Sample Volume DepthThe depth of the center of the Doppler sample volume measured from skin line along the Doppler line.
125195Pediatric Cardiac Ultrasound ReportPediatric Cardiac Ultrasound Report (document title)
125196Fetal Cardiac Ultrasound ReportFetal Cardiac Ultrasound Report (document title)
125197Adult Congenital Cardiac Ultrasound ReportAdult Congenital Cardiac Ultrasound Report (document title)
125200Adult Echocardiography Procedure ReportDocument title of adult echocardiography procedure (evidence) report.
125201Illustration of FindingAn image that is a pictorial representation of findings. The concept is typically used as a purpose of reference to an image, such as a depiction of myocardium segments depicting wall motion function.
125202LV Wall Motion Score IndexThe average of all scored (non-zero) Left Ventricle segment wall motion scores.
125203Acquisition ProtocolA type of clinical acquisition protocol for creating images or image-derived measurements. Acquisition protocols may be specific to a manufacturer’s product.
125204Area-length biplaneMethod for calculating left ventricular volume from two orthogonal views containing the true long axis (usually the apical 4 and 2 chamber views). Volume = [p L1/6]*[(4A1)¸(pL1)]*[(4A2)¸(p L2)]
125205Area-Length Single PlaneMethod for calculating left ventricular volume from a view containing the true long axis (usually the apical 4-chamber view). Volume = [8(A)2]¸[3pL]
125206CubeMethod (formula) for calculating left ventricle volumes and function derivatives (EF, SV, SI, etc.) that estimates the volume as the cube of diameter.
125207Method of Disks, BiplaneMethod of calculating volume based on the summation of disk volumes. The disk axis is parallel to the left ventricular long axis and using a disk diameter averaged from the two chamber and four chamber views.
125208Method of Disks, Single PlaneMethod of calculating volume based on the summation of disk volumes. The disk axis is parallel to the left ventricular long axis with disk diameter taken from the four-chamber view.
125209TeichholzMethod (formula) for calculating left ventricle volumes and function derivatives (EF, SV, SI, etc.) Volume = [7.0/(2.4+D)]*D3
125210Area by Pressure Half-TimeMitral valve area (cm2) by Pressure Half-time = 220 (cm2.ms) / PHT (ms)
125211Biplane EllipseArea = P/4 X d1 X d2 d1 = anterior/posterior axis d2 = medial/lateral axis Hagen-Ansert, Sandra L., Textbook of Diagnostic Ultrasound, ed. 3, The C.V.Mosby Co., 1989, p. 73.
125212Continuity EquationFor conduits in series (“in continuity”), volume flow is equal: A1*V1 = A2*V2. where V is the velocity
125213Continuity Equation by Mean VelocityFor conduits in series (“in continuity”), volume flow is equal: A1*V1 = A2*V2. where V is the mean velocity
125214Continuity Equation by Peak VelocityFor conduits in series (“in continuity”), volume flow is equal: A1*V1 = A2*V2. where V is the peak velocity
125215Continuity Equation by Velocity Time IntegralFor conduits in series (“in continuity”), volume flow is equal: A1*V1 = A2*V2. where V is the velocity time integral
125216Proximal Isovelocity Surface AreaUtilizes aliasing velocity (by color Doppler) of flow into an orifice (often regurgitant or stenotic) to measure instantaneous flow rate, orifice area, and flow volume. The instantaneous flow rate = (2 π r2 vav ) * (α / π) where vav is the constant velocity known as aliasing velocity at radius r, vp is the peak velocity at the orifice, and α is the angle in radians of the constant velocity surface. Estimated Orifice area = Flow rate / vp, where vp is the peak velocity at the orifice and the flow rate is the PISA peak flow rate. The volume flow is then the product of the orifice area and Velocity Time Integral
125217Full BernoulliΔP = 4*(V12 – V22)
125218Simplified BernoulliΔP = 4*V2
125219Doppler Volume FlowVolume flow = Conduit CSA * ( Velocity Time Integral )
125220PlanimetryDirect measurement of an area by tracing an irregular perimeter
125221Left Ventricle Mass by M-modeMass = 1.04 * [(ST+LVID+PWT)3-LVID3] * 0.8+ 0.6. Mass unit is grams and length in cm.
125222Left Ventricle Mass by Truncated EllipseMass = 1.05 P ( (b + t)2 X (2/3 (a + t) + d – d3/3(a + t)2 ) – b2 (2/3a + d – d3/3a2) ) a = Semi-major axis from widest minor axis radius to apex. b = Short axis radius calculated from short axis cavity area t = Myocardial thickness calculated from short axis epicardial and cavity areas d = Truncated semi-major axis from widest short axis diameter to plane of mitral annulus. Mass unit is grams and length in cm. Schiller NB et al: Recommendations for quantification of the left ventricle by two-dimensional echocardiography, American Society of Echocardiography 2:364, 1989.
1252234 Point Segment Finding ScaleA four point, echocardiographic numeric scoring scheme of myocardium segments based on evaluation of wall motion and ventricle morphology. Recommendations for Quantitation of the Left Ventricle by Two-Dimensional Echocardiography, Journal of the American Society of Echocardiography, 2:358-367, 1989.
1252245 Point Segment Finding ScaleA five point, echocardiographic numeric scoring scheme of myocardium segments based on evaluation of wall motion and ventricle morphology. Recommendations for Quantitation of the Left Ventricle by Two-Dimensional Echocardiography, Journal of the American Society of Echocardiography, 2:358-367, 1989.
1252255 Point Segment Finding Scale With Graded HypokinesisA five point, echocardiographic numeric scoring scheme of myocardium segments based on evaluation of wall motion and ventricle morphology, with severity of hypokinesis graded. Recommendations for Quantitation of the Left Ventricle by Two-Dimensional Echocardiography, Journal of the American Society of Echocardiography, 2:358-367, 1989.
125226Single Plane EllipseMethod of estimating volume from a planar ellipse. Equivalent to Biplane Ellipse with an assumption that the ellipse in the orthogonal plane has identical major and minor diameters.
125227Modified SimpsonModified Simpson’s Method of estimating ventricular volume, based on the method of disks with paired apical views. Schiller NB, et al. “Recommendations for quantitation of the left ventricle by two-dimensional echocardiography. American Society of Echocardiography Committee on Standards, Subcommittee on Quantitation of Two-Dimensional Echocardiograms”. J Am Soc Echocardiogr. 1989 2(5):358-367. Sep-Oct.
125228Bullet MethodBullet method of estimating ventricular volume. Volume = 5/6 * L * S L : Left ventricle long axis length S : Left ventricle area, SAX view at level of Mitral Valve.
125230Power DopplerColor coded ultrasound images of blood flow which depict the amplitude, or power, of Doppler signals.
1252313D modeVolumetric ultrasound imaging
125233Start of drug dose administrationOnset of administration of dose of a drug
125234Start of contrast agent administrationOnset of contrast agent administration
125235Destruction of microbubblesDestruction of ultrasonic contrast microbubbles by a high-energy ultrasound pulse
125236Onset of exerciseInstant at which exercise begins
125237Cessation of exerciseInstant at which exercise ends
125238Onset of stimulationInstant at which stimulation begins
125239Cessation of stimulationInstant at which stimulation ends
125240Line scan patternUltrasound transducer scan pattern in which information is gathered along a line
125241Plane scan patternUltrasound transducer scan pattern in which information is gathered within a plane
125242Volume scan patternUltrasound transducer scan pattern in which information is gathered within a volume
125251Non-imaging Doppler ultrasound transducer geometryUltrasound transducer geometry characterized by a single scan line used for PW or CW Doppler scanning
125252Linear ultrasound transducer geometryUltrasonic transducer geometry characterized by parallel lines
125253Curved linear ultrasound transducer geometryUltrasonic transducer geometry characterized by radial lines normal to the outside of a curved surface
125254Sector ultrasound transducer geometryUltrasonic transducer geometry characterized by lines originating from a common apex
125255Radial ultrasound transducer geometryUltrasonic transducer geometry characterized by lines eminating radially from a single point
125256Ring ultrasound transducer geometryUltrasonic transducer geometry characterized by a circular ring of transducer elements
125257Fixed beam directionUltrasonic steering technique consisting of a single beam normal to the transducer face steered by the orientation of the probe
125258Mechanical beam steeringUltrasonic steering technique consisting of mechanically directing the beam
125259Phased beam steeringUltrasonic steering technique consisting of electronically-steered beams
125261External TransducerTransducer is designed to be placed onto the surface of the subject
125262Transesophageal TransducerTransducer is designed for insertion into the esophagus
125263Endovaginal TransducerTransducer is designed for insertion into the vagina
125264Endorectal TransducerTransducer is designed for insertion into the rectum
125265Intravascular TransducerTransducer is designed for insertion via a catheter
125270Left Ventricle Mass by Area Lengthmethod to measure the mass of the Left Ventricle via the ASE area-length method at end diastole. LV Mass = 1.05*(5/6*(A1*(L+t) ) - 5/6*(A2*L) ) A1 = Left Ventricle epicardial SAX area at the level of of the papillary muscle tips at end diastole. A2 = Left Ventricle endocardial SAX area cavity area at the level of the papillary muscle tips at end diastole. L = Left Ventricle apical view long axis length at end diastole. t = Myocardial thickness can be computed as : t = sqrt( A1/3.14) – sqrt ( A2/3.14) Reference: 1) Schiller, N.B., et al. “Recommendations for Quantification of the LV by Two-dimensional Echocardiography." J Am Soc Echo, Vol. 2, No. 5: 358-367, Sep-Oct 1989. 2) Reichek, N., et al. "Anatomic Validation of Left Ventricular Mass Estimates from Clinical Two-dimensional Echocardiography: Initial Results." Circulation, Vol. 67, No. 2: 348-52, February 1983.
125271Left Ventricle Mass by M-mode – adjusted by HeightEquation = Left Ventricle Mass by M-mode (in gram) / ( Height (in meter) )^2.7 Reference: Giovanni De Simone, et al. “Effect of Growth on Variability of Left Ventricular Mass: Assessment of Allometric Signals in Adults and Children and Their Capacity to Predict Cardiovascular Risk”. New York, New York and Cincinnati, Ohio.
125272Left Ventricle Mass by Truncated Ellipse – adjusted by HeightEquation = Left Ventricle Mass by Truncated Ellipse / Height^2.7 Reference: Giovanni De Simone, et al. “Effect of Growth on Variability of Left Ventricular Mass: Assessment of Allometric Signals in Adults and Children and Their Capacity to Predict Cardiovascular Risk”. New York, New York and Cincinnati, Ohio.
125273Left Ventricle Mass by Area Length – adjusted by HeightEquation = Left Ventricle Mass by Area Length / Height^2.7 Reference: Giovanni De Simone, et al. “Effect of Growth on Variability of Left Ventricular Mass: Assessment of Allometric Signals in Adults and Children and Their Capacity to Predict Cardiovascular Risk”. New York, New York and Cincinnati, Ohio.
125901CARDIOsphereCARDIOsphereTM ultrasonic contrast agent produced by POINT Biomedical
125902EchovistEchovist® ultrasonic contrast agent produced by Schering AG
125903ImagifyImagifyTM ultrasonic contrast agent produced by Accusphere Inc.
125904LevovistLevovist® ultrasonic contrast agent produced by Schering AG.
125905SonazoidSonazoidTM ultrasonic contrast agent produced by Daiichi Pharmaceutical / General Electric
125906SonoVueSonoVueTM ultrasonic contrast agent produced by Bracco Diagnostics
125907Targestar-BTargestarTM-B ultrasonic contrast agent produced by Targeson LLC
125908Targestar-PTargestarTM-P ultrasonic contrast agent produced by Targeson LLC
113900Dose Check Alert DetailsReport section about cumulative dose alerts during an examination.
113901DLP Alert Value ConfiguredFlag denoting whether a DLP Alert Value was configured.
113902CTDIvol Alert Value ConfiguredFlag denoting whether a CTDIvol Alert Value was configured.
113903DLP Alert ValueCumulative Dose Length Product value configured to trigger an alert. See NEMA XR 25-2010 Dose Check Standard.
113904CTDIvol Alert ValueCumulative CTDIvol value configured to trigger an alert. See NEMA XR 25-2010 Dose Check Standard.
113905Accumulated DLP Forward EstimateA forward estimate of the accumulated DLP plus the estimated DLP for the next Protocol Element Group. See NEMA XR 25-2010 Dose Check Standard.
113906Accumulated CTDIvol Forward EstimateA forward estimate at a given location of the accumulated CTDIvol plus the estimated CTDIvol for the next Protocol Element Group. See NEMA XR 25-2010 Dose Check Standard.
113907Reason for ProceedingReason provided for proceeding with a procedure that is projected to exceed a configured dose value.
113908Dose Check Notification DetailsReport section about dose notifications during a protocol element.
113909DLP Notification Value ConfiguredFlag denoting whether a DLP Notification Value was configured.
113910CTDIvol Notification Value ConfiguredFlag denoting whether a CTDIvol Notification Value was configured.
113911DLP Notification ValueDose Length Product value configured to trigger a notification for a given protocol element.
113912CTDIvol Notification ValueCTDIvol value configured to trigger a notification for a given protocol element.
113913DLP Forward EstimateA forward estimate of the DLP for the next Protocol Element Group. See NEMA XR 25-2010 Dose Check Standard.
113914CTDIvol Forward EstimateA forward estimate of the CTDIvol for the next Protocol Element Group. See NEMA XR 25-2010 Dose Check Standard.
ARCHIVEArchiveArchive device
ARAutorefractionAutorefraction device
ASAngioscopyAngioscopy device
AUAudioAudio object
BDUSUltrasound Bone DensitometryUltrasound Bone Densitometry (modality)
BIBiomagnetic imagingBiomagnetic imaging device
BMDBone Mineral DensitometryBone Mineral Densitometry by X-Ray (modality), including dual-energy X-Ray absorptiometry (DXA) and morphometric X-Ray absorptiometry (MXA)
CADComputer Assisted Detection/DiagnosisComputer Assisted Detection/Diagnosis device
CAPTUREImage CaptureImage Capture Device, includes video capture
CDColor flow DopplerColor flow Doppler
CFCinefluorographyCinefluorography
COMPComputation ServerComputation Server; includes radiotherapy planning
CPCulposcopyCulposcopy
CRComputed RadiographyComputed Radiography device
CSCystoscopyCystoscopy
CTComputed TomographyComputed Tomography device
DDDuplex DopplerDuplex Doppler
DFDigital fluoroscopyDigital fluoroscopy
DGDiaphanographyDiaphanography device
DMDigital microscopyDigital microscopy
DOCDDocument Digitizer EquipmentEquipment that digitized hardcopy documents and imported them.
DSDigital Subtraction AngiographyDigital Subtraction Angiography
DSSDepartment System SchedulerDepartment System Scheduler, workflow manager; includes RIS
DXDigital RadiographyDigital Radiography device
ECEchocardiographyEchocardiography
ECGElectrocardiographyElectrocardiography device
EPSCardiac ElectrophysiologyCardiac Electrophysiology device
ESEndoscopyEndoscopy device
FFemaleFemale sex
FAFluorescein angiographyFluorescein angiography
FCFemale changed to MaleFemale sex changed to Male sex
FILMDFilm DigitizerFilm Digitizer
FPFemale PseudohermaphroditeFemale Pseudohermaphrodite
FSFundoscopyFundoscopy
GMGeneral MicroscopyGeneral Microscopy device
HHermaphroditeHermaphrodite
HCHard CopyHard Copy
HDHemodynamic WaveformHemodynamic Waveform acquisition device
IOIntra-oral RadiographyIntra-oral Radiography device
IVUSIntravascular UltrasoundIntravascular Ultrasound device
KERKeratometryKeratometry device
KOKey Object SelectionKey Object Selection object
LENLensometryLensometry device
LOGProcedure LoggingProcedure Logging device; includes cath lab logging
LPLaparoscopyLaparoscopy
LSLaser surface scanLaser surface scan device
MMaleMale sex
MAMagnetic resonance angiographyMagnetic resonance angiography
MCMale changed to FemaleMale sex changed to Female sex
MCDMedia Creation DeviceA device that creates DICOM PS 3.10 interchange media. For example, a CD creator that is managed by the Media Creation Management Service Class.
MEDIMPortable Media Importer EquipmentEquipment that retrieved and imported objects from interchange Media.
MGMammographyMammography device
MPMale PseudohermaphroditeMale Pseudohermaphrodite
MRMagnetic ResonanceMagnetic Resonance device
MSMagnetic resonance spectroscopyMagnetic resonance spectroscopy
NEARLINENearlineInstances need to be retrieved from relatively slow media such as optical disk or tape
NMNuclear MedicineNuclear Medicine device
OAMOphthalmic Axial MeasurementsMeasurements of the axial length of the eye which are done by various devices
OCTOptical Coherence TomographyModality device that uses an interferometric, non-invasive optical tomographic technique to image 2D slices and 3D volumes of tissue using visible and near visible frequencies.
OFFLINEOfflineInstances need to be retrieved by manual intervention
ONLINEOnlineInstances are immediately available
OPOphthalmic photographyOphthalmic photography modality
OPMOphthalmic MappingModality device that measures corneal topography, corneal or retinal thickness, and other similar parameters that are typically displayed as maps.
OPROphthalmic RefractionModality device that measures the refractive characteristics of the eye.
OPTOphthalmic TomographyTomography of the eye acquired by a modality that is based on light and optical principles. Tomography based on other principles, such as ultrasound, is excluded.
OPVOphthalmic Visual FieldModality device that measures visual fields and perform visual perimetry.
OTOther ModalityOther Modality device
PRPresentation StatePresentation State object
PRINTHard Copy Print ServerHard Copy Print Server; includes printers with embedded DICOM print server
PTPositron emission tomographyPositron emission tomography (PET) device
PXPanoramic X-RayPanoramic X-Ray device
REGRegistrationRegistration
RFRadiofluoroscopyRadiofluoroscopy device
RGRadiographic imagingRadiographic imaging (conventional film/screen)
RTRadiation Therapy DeviceRadiation Therapy Device; includes linear accelerator, proton therapy
RTDOSERadiotherapy DoseRadiotherapy Dose
RTIMAGERadiotherapy ImageRadiotherapy Imaging device; includes portal imaging
RTPLANRadiotherapy PlanRadiotherapy Plan
RTRECORDRadiotherapy Treatment RecordRadiotherapy Treatment Record
RTSTRUCTRadiotherapy Structure SetRadiotherapy Structure Set
SEGSegmentationSegmentation
SMSlide MicroscopySlide Microscopy
SMRStereometric RelationshipStereometric image pairing modality
SRStructured Report DocumentStructured Report Document
SRFSubjective RefractionSubjective Refraction device
STSingle-photon emission computed tomographySingle-photon emission computed tomography (SPECT) device
TGThermographyThermography device
UUnknown SexUnknown Sex
UNAVAILABLEUnavailableInstances cannot be retrieved.
USUltrasoundUltrasound device
VAVisual AcuityVisual Acuity device
VFVideofluorographyVideofluorography
VIDDVideo Tape Digitizer EquipmentEquipment that digitizes video tape and imports it.
WSDWorkstationWorkstation
XAX-Ray AngiographyX-Ray Angiography device
XCExternal-camera PhotographyExternal-camera Photography device
+
+
+
+ + Valueset "http://hl7.org/fhir/valueset-systems" to support automated processing + http://hl7.org/fhir/valueset-systems + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
URIDescription
http://snomed.info/sctSNOMED CT: (http://ihtsdo.org)
http://loinc.orgLOINC (http://loinc.org)
http://unitsofmeasure.orgUCUM: (http://unitsofmeasure.org) Case Sensitive Codes)
http://hl7.org/fhir/sid/icd-10ICD-10 International (http://www.who.int/classifications/icd/en/)
http://hl7.org/fhir/sid/icd-9ICD-9 USA (http://www.cdc.gov/nchs/icd/icd9.htm)
http://www.whocc.no/atcAnatomical Therapeutic Chemical Classification System (http://www.whocc.no/atc/structure_and_principles/)
urn:std:iso:11073:10101Medical Device Codes defined in ISO 11073-10101 (http://hit-testing.nist.gov:13110/rtmms/index.htm#rosetta)
http://nema.org/dicom/dicmDICOM Code Definitions (http://nema.org/dicom/dicm)
urn:ietf:rfc:3986URIs (As defined by http://www.ietf.org/rfc/rfc3986.txt)
http://hl7.org/fhir/sid/us-ssnSSN (http://www.ssa.gov/ssnumber/)
urn:oid:2.16.840.1.113883.4.3.2 Alaska Driver's License
urn:oid:2.16.840.1.113883.4.3.1 Alabama Driver's License
urn:oid:2.16.840.1.113883.4.3.5 Arkansas Driver's License
urn:oid:2.16.840.1.113883.4.3.4 Arizona Driver's License
urn:oid:2.16.840.1.113883.4.3.6 California Driver's License
urn:oid:2.16.840.1.113883.4.3.8 Colorado Driver's License
urn:oid:2.16.840.1.113883.4.3.9 Connecticut Driver's License
urn:oid:2.16.840.1.113883.4.3.11 DC Driver's License
urn:oid:2.16.840.1.113883.4.3.10 Delaware Driver's License
urn:oid:2.16.840.1.113883.4.3.12 Florida Driver's License
urn:oid:2.16.840.1.113883.4.3.13 Georgia Driver's License
urn:oid:2.16.840.1.113883.4.3.15 Hawaii Driver's License
urn:oid:2.16.840.1.113883.4.3.19 Iowa Driver's License
urn:oid:2.16.840.1.113883.4.3.16 Idaho Driver's License
urn:oid:2.16.840.1.113883.4.3.17 Illinois Driver's License
urn:oid:2.16.840.1.113883.4.3.20 Kansas Driver's License
urn:oid:2.16.840.1.113883.4.3.21 Kentucky Driver's License
urn:oid:2.16.840.1.113883.4.3.22 Louisiana Driver's License
urn:oid:2.16.840.1.113883.4.3.25 Massachusetts Driver's License
urn:oid:2.16.840.1.113883.4.3.24 Maryland Driver's License
urn:oid:2.16.840.1.113883.4.3.23 Maine Driver's License
urn:oid:2.16.840.1.113883.4.3.26 Michigan Driver's License
urn:oid:2.16.840.1.113883.4.3.27 Minnesota Driver's License
urn:oid:2.16.840.1.113883.4.3.29 Missouri Driver's License
urn:oid:2.16.840.1.113883.4.3.28 Mississippi Driver's License
urn:oid:2.16.840.1.113883.4.3.30 Montana Driver's License
urn:oid:2.16.840.1.113883.4.3.36 NewYork Driver's License
urn:oid:2.16.840.1.113883.4.3.37 NorthCarolina Driver's License
urn:oid:2.16.840.1.113883.4.3.38 NorthDakota Driver's License
urn:oid:2.16.840.1.113883.4.3.31 Nebraska Driver's License
urn:oid:2.16.840.1.113883.4.3.33 NewHampshire Driver's License
urn:oid:2.16.840.1.113883.4.3.34 NewJersey Driver's License
urn:oid:2.16.840.1.113883.4.3.35 NewMexico Driver's License
urn:oid:2.16.840.1.113883.4.3.32 Nevada Driver's License
urn:oid:2.16.840.1.113883.4.3.39 Ohio Driver's License
urn:oid:2.16.840.1.113883.4.3.40 Oklahoma Driver's License
urn:oid:2.16.840.1.113883.4.3.41 Oregon Driver's License
urn:oid:2.16.840.1.113883.4.3.42 Pennsylvania Driver's License
urn:oid:2.16.840.1.113883.4.3.44 RhodeIsland Driver's License
urn:oid:2.16.840.1.113883.4.3.45 SouthCarolina Driver's License
urn:oid:2.16.840.1.113883.4.3.46 SouthDakota Driver's License
urn:oid:2.16.840.1.113883.4.3.47 Tennessee Driver's License
urn:oid:2.16.840.1.113883.4.3.48 Texas Driver's License
urn:oid:2.16.840.1.113883.4.3.49 Utah Driver's License
urn:oid:2.16.840.1.113883.4.3.51 Virginia Driver's License
urn:oid:2.16.840.1.113883.4.3.50 Vermont Driver's License
urn:oid:2.16.840.1.113883.4.3.53 Washington Driver's License
urn:oid:2.16.840.1.113883.4.3.55 Wisconsin Driver's License
urn:oid:2.16.840.1.113883.4.3.54 WestVirginia Driver's License
urn:oid:2.16.840.1.113883.4.3.56 Wyoming Driver's License
http://hl7.org/fhir/drivers-licenseDriver's licenses with no known issuing authority
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
URIDescription
http://snomed.info/sctSNOMED CT: (http://ihtsdo.org)
http://loinc.orgLOINC (http://loinc.org)
http://unitsofmeasure.orgUCUM: (http://unitsofmeasure.org) Case Sensitive Codes)
http://hl7.org/fhir/sid/icd-10ICD-10 International (http://www.who.int/classifications/icd/en/)
http://hl7.org/fhir/sid/icd-9ICD-9 USA (http://www.cdc.gov/nchs/icd/icd9.htm)
http://www.whocc.no/atcAnatomical Therapeutic Chemical Classification System (http://www.whocc.no/atc/structure_and_principles/)
urn:std:iso:11073:10101Medical Device Codes defined in ISO 11073-10101 (http://hit-testing.nist.gov:13110/rtmms/index.htm#rosetta)
http://nema.org/dicom/dicmDICOM Code Definitions (http://nema.org/dicom/dicm)
urn:ietf:rfc:3986URIs (As defined by http://www.ietf.org/rfc/rfc3986.txt)
http://hl7.org/fhir/sid/us-ssnSSN (http://www.ssa.gov/ssnumber/)
urn:oid:2.16.840.1.113883.4.3.2 Alaska Driver's License
urn:oid:2.16.840.1.113883.4.3.1 Alabama Driver's License
urn:oid:2.16.840.1.113883.4.3.5 Arkansas Driver's License
urn:oid:2.16.840.1.113883.4.3.4 Arizona Driver's License
urn:oid:2.16.840.1.113883.4.3.6 California Driver's License
urn:oid:2.16.840.1.113883.4.3.8 Colorado Driver's License
urn:oid:2.16.840.1.113883.4.3.9 Connecticut Driver's License
urn:oid:2.16.840.1.113883.4.3.11 DC Driver's License
urn:oid:2.16.840.1.113883.4.3.10 Delaware Driver's License
urn:oid:2.16.840.1.113883.4.3.12 Florida Driver's License
urn:oid:2.16.840.1.113883.4.3.13 Georgia Driver's License
urn:oid:2.16.840.1.113883.4.3.15 Hawaii Driver's License
urn:oid:2.16.840.1.113883.4.3.19 Iowa Driver's License
urn:oid:2.16.840.1.113883.4.3.16 Idaho Driver's License
urn:oid:2.16.840.1.113883.4.3.17 Illinois Driver's License
urn:oid:2.16.840.1.113883.4.3.20 Kansas Driver's License
urn:oid:2.16.840.1.113883.4.3.21 Kentucky Driver's License
urn:oid:2.16.840.1.113883.4.3.22 Louisiana Driver's License
urn:oid:2.16.840.1.113883.4.3.25 Massachusetts Driver's License
urn:oid:2.16.840.1.113883.4.3.24 Maryland Driver's License
urn:oid:2.16.840.1.113883.4.3.23 Maine Driver's License
urn:oid:2.16.840.1.113883.4.3.26 Michigan Driver's License
urn:oid:2.16.840.1.113883.4.3.27 Minnesota Driver's License
urn:oid:2.16.840.1.113883.4.3.29 Missouri Driver's License
urn:oid:2.16.840.1.113883.4.3.28 Mississippi Driver's License
urn:oid:2.16.840.1.113883.4.3.30 Montana Driver's License
urn:oid:2.16.840.1.113883.4.3.36 NewYork Driver's License
urn:oid:2.16.840.1.113883.4.3.37 NorthCarolina Driver's License
urn:oid:2.16.840.1.113883.4.3.38 NorthDakota Driver's License
urn:oid:2.16.840.1.113883.4.3.31 Nebraska Driver's License
urn:oid:2.16.840.1.113883.4.3.33 NewHampshire Driver's License
urn:oid:2.16.840.1.113883.4.3.34 NewJersey Driver's License
urn:oid:2.16.840.1.113883.4.3.35 NewMexico Driver's License
urn:oid:2.16.840.1.113883.4.3.32 Nevada Driver's License
urn:oid:2.16.840.1.113883.4.3.39 Ohio Driver's License
urn:oid:2.16.840.1.113883.4.3.40 Oklahoma Driver's License
urn:oid:2.16.840.1.113883.4.3.41 Oregon Driver's License
urn:oid:2.16.840.1.113883.4.3.42 Pennsylvania Driver's License
urn:oid:2.16.840.1.113883.4.3.44 RhodeIsland Driver's License
urn:oid:2.16.840.1.113883.4.3.45 SouthCarolina Driver's License
urn:oid:2.16.840.1.113883.4.3.46 SouthDakota Driver's License
urn:oid:2.16.840.1.113883.4.3.47 Tennessee Driver's License
urn:oid:2.16.840.1.113883.4.3.48 Texas Driver's License
urn:oid:2.16.840.1.113883.4.3.49 Utah Driver's License
urn:oid:2.16.840.1.113883.4.3.51 Virginia Driver's License
urn:oid:2.16.840.1.113883.4.3.50 Vermont Driver's License
urn:oid:2.16.840.1.113883.4.3.53 Washington Driver's License
urn:oid:2.16.840.1.113883.4.3.55 Wisconsin Driver's License
urn:oid:2.16.840.1.113883.4.3.54 WestVirginia Driver's License
urn:oid:2.16.840.1.113883.4.3.56 Wyoming Driver's License
http://hl7.org/fhir/drivers-licenseDriver's licenses with no known issuing authority
+
+
+
+ + Valueset "http://hl7.org/fhir/vs/restful-interaction" to support automated processing + http://hl7.org/fhir/vs/restful-interaction + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

FHIR Restful Interactions

The set of interactions defined by the RESTful part of the FHIR specification

This value set defines its own terms in the system http://hl7.org/fhir/restful-interaction

CodeDisplayDefinition
read readRead the current state of the resource
vread vreadRead the state of a specific version of the resource
update updateUpdate an existing resource by its id (or create it if it is new)
delete deleteDelete a resource
history historyRetrieve the update history for a particular resource, type of resource, or the entire system
..history-instance history-instanceRetrieve the update history for a particular resource
..history-type history-typeRetrieve the update history for a all resources of a particular type
..history-system history-systemRetrieve the update history for all resources on a system
create createCreate a new resource with a server assigned id
search searchSearch a resource type or all resources based on some filter criteria
..search-type search-typeSearch all resources of the specified type based on some filter criteria
..search-system search-systemSearch all resources based on some filter criteria
validate validateCheck that the content would be acceptable as an update
conformance conformanceGet a conformance statement for the system
transaction transactionUpdate, create or delete a set of resources as a single transaction
operation operationPerform an operation as defined by an OperationDefinition
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

FHIR Restful Interactions

The set of interactions defined by the RESTful part of the FHIR specification

This value set defines its own terms in the system http://hl7.org/fhir/restful-interaction

CodeDisplayDefinition
read readRead the current state of the resource
vread vreadRead the state of a specific version of the resource
update updateUpdate an existing resource by its id (or create it if it is new)
delete deleteDelete a resource
history historyRetrieve the update history for a particular resource, type of resource, or the entire system
..history-instance history-instanceRetrieve the update history for a particular resource
..history-type history-typeRetrieve the update history for a all resources of a particular type
..history-system history-systemRetrieve the update history for all resources on a system
create createCreate a new resource with a server assigned id
search searchSearch a resource type or all resources based on some filter criteria
..search-type search-typeSearch all resources of the specified type based on some filter criteria
..search-system search-systemSearch all resources based on some filter criteria
validate validateCheck that the content would be acceptable as an update
conformance conformanceGet a conformance statement for the system
transaction transactionUpdate, create or delete a set of resources as a single transaction
operation operationPerform an operation as defined by an OperationDefinition
+
+
+ + Valueset "http://hl7.org/fhir/vs/ucum-common" to support automated processing + http://hl7.org/fhir/vs/ucum-common + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Common UCUM units

Commonly encountered UCUM units (for purposes of helping populate look ups

Copyright Statement: UCUM is Copyright © 1999-2013 Regenstrief Institute, Inc. and The UCUM Organization, Indianapolis, IN. All rights reserved. See http://unitsofmeasure.org/trac//wiki/TermsOfUse for details

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://unitsofmeasure.org
    CodeDisplayDefinition
    %percent
    %/100{WBC}percent / 100 WBC
    %{0to3Hours}percent 0to3Hours
    %{Abnormal}percent Abnormal
    %{Activity}percent Activity
    %{BasalActivity}percent BasalActivity
    %{Binding}percent Binding
    %{Blockade}percent Blockade
    %{Carboxyhemoglobin}percent Carboxyhemoglobin
    %{Conversion}percent Conversion
    %{Cound}percent Cound
    %{EosSeen}percent EosSeen
    %{Excretion}percent Excretion
    %{Fat}percent Fat
    %{FetalErythrocytes}percent FetalErythrocytes
    %{Hemoglobin}percent Hemoglobin
    %{HemoglobinA1C}percent HemoglobinA1C
    %{HemoglobinSaturation}percent HemoglobinSaturation
    %{Hemolysis}percent Hemolysis
    %{HumanResponse}percent HumanResponse
    %{Index}percent Index
    %{Inhibition}percent Inhibition
    %{Live}percent Live
    %{Negative Control}percent Negative Control
    %{Normal}percent Normal
    %{NormalControl}percent NormalControl
    %{NormalPooledPlasma}percent NormalPooledPlasma
    %{ofAvailable}percent ofAvailable
    %{ofBacteria}percent ofBacteria
    %{OfLymphocytes}percent OfLymphocytes
    %{OfWBCs}percent OfWBCs
    %{Oxygen}percent Oxygen
    %{Positive}percent Positive
    %{Precipitate}percent Precipitate
    %{Reactivity}percent Reactivity
    %{response}percent response
    %{risk}percent risk
    %{SpermMotility}percent SpermMotility
    %{Total}percent Total
    %{TotalProtein}percent TotalProtein
    %{Tot'Cholesterol}percent Tot'Cholesterol
    %{Tot'Hgb}percent Tot'Hgb
    %{Uptake}percent Uptake
    %{vol}VolumePercent
    %{WeightToWeight}percent WeightToWeight
    /(12.h)per 12 * hour
    /[arb'U]per arbitrary unit
    /[HPF]per high power field
    /[iU]per international unit
    /[LPF]per low power field
    /{Entity}per Entity
    /{hpf}per hpf
    /{LPF}per LPF
    /{oif}per oif
    /{Specimen}per Specimen
    /{tot}per tot
    /10*10PerTenGiga
    /10*12PerTrillion
    /10*12{rbc}PerTrillionRedBloodCells
    /10*6PerMillion
    /10*9PerBillion
    /100per 100
    /100{cells}per 100 cells
    /100{neutrophils}per 100 neutrophils
    /100{spermatozoa}per 100 spermatozoa
    /100{WBC}Per100WBC
    /100{WBCs}Per100WBC
    /a/ year
    /cm[H2O]per centimeter of water
    /dper day
    /dLper deciliter
    /gper gram
    /g{creat}per gram creat
    /g{hgb}per gram hgb
    /g{tot'nit}per gram tot'nit
    /g{tot'prot}per gram tot'prot
    /g{wet'tis}per gram wet'tis
    /hper hour
    /kgper kilogram
    /kg{body'wt}per kilogram body wt
    /Lper liter
    /m2per square meter
    /mgper milligram
    /minper minute
    /mLper milliliter
    /mm3per cubic millimeter
    /mmolper millimole
    /moper month
    /sper second
    /Uper enzyme unit
    /ugper microgram
    /uLper microliter
    /wkper week
    [APL'U]IgA anticardiolipin unit
    [APL'U]/mLIgA anticardiolipin unit per milliliter
    [arb'U]arbitrary unit
    [arb'U]/Larbitary unit / liter
    [arb'U]/mLarbitrary unit per milliliter
    [AU]allergy unit
    [BAU]bioequivalent allergen unit
    [beth'U]Bethesda unit
    [beth'U]Bethesda unit
    [CFU]colony forming unit
    [CFU]/Lcolony forming unit per liter
    [CFU]/mLcolony forming unit per milliliter
    [Ch]French (catheter gauge)
    [cin_i]cubic inch
    [cup_us]cup
    [degF]degree Fahrenheit
    [dr_av]Dram (US and British)
    [drp]drop
    [drp]/{HPF}drop / HPF
    [drp]/hdrop / hour
    [drp]/mindrop / minute
    [drp]/mLdrop / milliliter
    [drp]/sdrop / second
    [fdr_us]fluid dram
    [foz_br]fluid ounce
    [foz_us]fluid ounce
    [ft_i]Feet
    [fth_i]fathom
    [gal_br]gallon
    [gal_us]Queen Anne's wine gallon
    [GPL'U]IgG anticardiolipin unit
    [gr]grain
    [in_i]inch (international)
    [iU]international unit
    [IU]/(2.h)international unit per 2 hour
    [IU]/(24.h)international unit per 24 hour
    [IU]/10*9{RBCs}international unit per billion red blood cells
    [IU]/dinternational unit per day
    [IU]/dLinternational unit per deciliter
    [IU]/ginternational unit per gram
    [IU]/g{Hb}international unit per gram of hemoglobin
    [iU]/g{Hgb}international unit / gram Hgb
    [IU]/hinternational unit per hour
    [IU]/kginternational unit per kilogram
    [IU]/kg/dinternational unit per kilogram per day
    [IU]/Linternational unit per liter
    [IU]/mininternational unit per minute
    [IU]/mLinternational unit per milliliter
    [lb_av]pound (US and British)
    [mi_i]statute mile
    [mi_us]mile
    [min_us]minim
    [MPL'U]IgM anticardiolipin unit
    [M'U]M unit
    [nmi_i]nautical mile
    [oz_av]ounce (US and British)
    [oz_tr]ounce
    [pH]pH
    [pi].rad/minthe number pi * radian / minute
    [ppb]part per billion
    [ppm]part per million
    [ppm]{v/v}part per million in volume per volume
    [ppt]part per trillion
    [ppth]parts per thousand
    [pptr]parts per trillion
    [psi]pound per square inch
    [pt_br]pint
    [qt_br]quart
    [qt_us]quart
    [sft_i]square foot (international)
    [sin_i]square inch (international)
    [ston_av]short ton U.S. ton
    [syd_i]square yard
    [tbs_us]tablespoon (US)
    [tb'U]tuberculin unit
    [todd'U]Todd unit
    [todd'U]Todd unit
    [tsp_us]teaspoon
    [yd_i]yard
    {# of calculi}# of calculi
    {# of donor informative markers}# of donor informative markers
    {# of fetuses}# of fetuses
    {# of informative markers}# of informative markers
    {#}#
    {2 or 3 times}/d2 or 3 times / day
    {3 times}/d3 times / day
    {4 times}/d4 times / day
    {5 times}/d5 times / day
    {absorbance}absorbance
    {Absorbance'U}Absorbance'U
    {Absorbance'U}/mLAbsorbance'U / milliliter
    {activity}activity
    {ActivityCoefficient}ActivityCoefficient
    {AHF'U}AHF'U
    {AntibodyResponse'U}AntibodyResponse'U
    {Applicator}Applicator
    {APS'U}IgA antiphosphatidylserine unit
    {AspirinReaction'U}AspirinReaction'U
    {Bead}Bead
    {Beats}/minBeats / minute
    {Bottle}Bottle
    {Bowls}/dBowls / day
    {Breaths}/minBreaths / minute
    {CAE'U}complement activity enzyme unit
    {CagRepeat}CagRepeat
    {Can}Can
    {Cans}/wkCans / week
    {Capsule}Capsule
    {Cell}Cell
    {cells}cells
    {cells}/[HPF]cells per high power field
    {Cells}/mLCells / milliliter
    {cells}/uLcells per microliter
    {CfTiter}CfTiter
    {cfu}cfu
    {cfu}/mLcfu / milliliter
    {CGG_repeats}CGG_repeats
    {CGG}CGG
    {CH100'U}complement CH100 unit
    {clock time}clock time
    {clock_time}clock_time
    {ComplementActivityEnzyme'U}ComplementActivityEnzyme'U
    {ComplementCH100'U}ComplementCH100'U
    {ComplementCH50'U}ComplementCH50'U
    {copies}/mLcopies per milliliter
    {copies}/ugcopies per microgram
    {Copies}/uLCopies / microliter
    {Count}Count
    {Counts}/minCounts / minute
    {Dalton}Dalton
    {DdTiter}DdTiter
    {DeltaOpticalDensity}DeltaOpticalDensity
    {Dilution}dilution
    {Disintegrations}/minDisintegrations / minute
    {Dose}Dose
    {Drinks}/dDrinks / day
    {Each}Each
    {Ehrlich'U}Ehrlich unit
    {Ehrlich'U}/(2.h)Ehrlich unit per 2 hour
    {Ehrlich'U}/100gEhrlich unit per 100 gram
    {Ehrlich'U}/dEhrlich unit per day
    {Ehrlich'U}/dLEhrilich unit per deciliter
    {Ehrlich'U}/mLEhrlich'U / milliliter
    {EIAIndex}EIA index
    {EIATiter}EIA titer
    {EIA'U}EIA unit
    {EIA'U}/UEIA unit per enzyme Unit
    {ElisaIndex}ElisaIndex
    {ELISA'U}ELISA unit
    {Elisa'U}/mLElisa'U / milliliter
    {ElisaValue}ElisaValue
    {ERY}/uLerythrocyte per microliter
    {Events}Events
    {FluorescenceIntensity'U}FluorescenceIntensity'U
    {G}UG unit
    {GliadinIndexValue}GliadinIndexValue
    {G-PortionPhospholipids}G-PortionPhospholipids
    {HaTiter}HaTiter
    {IfaIndex}IfaIndex
    {IfaTiter}IfaTiter
    {IgAAntiphosphatidyleserine'U}IgAAntiphosphatidyleserine'U
    {IgAPhospholipid'U}IgAPhospholipid'U
    {IgGAntiphosphatidyleserine'U}IgGAntiphosphatidyleserine'U
    {IgGIndex}IgGIndex
    {IgMAntiphosphatidyleserine'U}IgMAntiphosphatidyleserine'U
    {IgMIndex}IgMIndex
    {ImmuneComplex'U}immune complex unit
    {ImmuneStatusRatio}ImmuneStatusRatio
    {Immunity}Immunity
    {Index_val}Index_val
    {index}index
    {IndexValue}IndexValue
    {InhaledTobaccoUseAmountYears}InhaledTobaccoUseAmountYears
    {InhaledTobaccoUsePacks}/dInhaledTobaccoUsePacks / day
    {INR}international normalized ratio
    {INR'unit}INR'unit
    {JDF'U}Juvenile Diabetes Foundation unit
    {JDF'U}/LJuvenile Diabetes Foundation unit per liter
    {JuvenileDiabetesFound'U}JuvenileDiabetesFound'U
    {KCT'U}kaolin clotting time
    {KRONU'U}/LKronus unit per liter
    {KRONU'U}/mLKronus unit per milliliter
    {lgCopies}/mllgCopies / milliliter
    {log_copies}/mLlog (base 10) copies per milliliter
    {log_IU}/mLlog (base 10) international unit per milliliter
    {LymeIndexValue}LymeIndexValue
    {M.o.M.}M.o.M.
    {M.o.M}multiple of the median
    {Markers}Markers
    {minidrp}minidrp
    {Molecule}/{Platelet}Molecule / Platelet
    {M-PortionPhospholipids}M-PortionPhospholipids
    {MPS'U}IgM antiphosphatidylserine unit
    {MPS'U}/mLIgM antiphosphatidylserine unit per milliliter
    {MultOfMean}MultOfMean
    {NonspecifcOunce}NonspecifcOunce
    {Number}Number
    {OD_unit}optical density unit
    {Once}/dOnce / day
    {OpticalDensity}OpticalDensity
    {OpticalDensityIndex}OpticalDensityIndex
    {OpticalDensityRatio}OpticalDensityRatio
    {P2Y12 Reaction Units}P2Y12 Reaction Units
    {Package}Package
    {Packs}/dPacks / day
    {PackYears}PackYears
    {Patch}Patch
    {Percentile}Percentile
    {Pill}Pill
    {Pouches}/wkPouches / week
    {RadioactiveT3UptakeRatio}RadioactiveT3UptakeRatio
    {ratio}ratio
    {RBC}/uLred blood cell per microliter
    {RecTiter}RecTiter
    {Relative'U}Relative'U
    {RelativeViscosity}RelativeViscosity
    {RPI'U}RPI'U
    {RubellaVirus}RubellaVirus
    {SatIndex}SatIndex
    {Scoop}Scoop
    {ScoreOf}ScoreOf
    {shift}shift
    {spermatozoa}/mLspermatozoa per milliliter
    {spray}spray
    {StandardDeviation}StandardDeviation
    {StandardIgA'U}StandardIgA'U
    {StandardIgG'U}StandardIgG'U
    {StandardIgM'U}StandardIgM'U
    {StdDeviation'U}StdDeviation'U
    {StimulatingIndex}StimulatingIndex
    {Streptozyme'U}Streptozyme'U
    {ThyroxinUptake'U}ThyroxinUptake'U
    {TIBC'U}TIBC'U
    {Times}/wkTimes / week
    {Tine'U}Tine'U
    {titer}titer
    {ToxoplasmaIndexValue}ToxoplasmaIndexValue
    {Vial}Vial
    {Volume}/{Vvolume}Volume / Vvolume
    {WeeksDays}WeeksDays
    {WhiteBloodCell}WhiteBloodCell
    1/done per day
    1/minone per minute
    10*12/Ltrillion per liter
    10*3Thousand
    10*3.{RBC}Thousand Red Blood Cells
    10*3.UThousand Per * Unit
    10*3/LThousand Per Liter
    10*3/mLThousand Per MilliLiter
    10*3/uLThousands Per MicroLiter
    10*3{Copies}/mLThousand Copies Per MilliLiter
    10*-3{Polarization'U}(the number ten for arbitrary powers ^ -3) Polarization'U
    10*5OneHundredThousand
    10*6Million
    10*6.[iU]MillionInternationalUnit
    10*6.eq/mLMillionEquivalentsPerMilliLiter
    10*6.U(the number ten for arbitrary powers ^ 6) * Unit
    10*6/{Specimen}MillionPerSpecimen
    10*6/kgmillion per kilogram
    10*6/Lmillion per liter
    10*6/mLmillion per milliliter
    10*6/mm3(the number ten for arbitrary powers ^ 6) / (millimeter ^ 3)
    10*6/uLmillion per microliter
    10*-6{Immunofluorescence'U}(the number ten for arbitrary powers ^ -6) Immunofluorescence'U
    10*8TenToEighth
    10*9/Lbillion per liter
    10*9/mLbillion per milliliter
    10*9/uLbillion per microliter
    10.L/(min.m2)10 liter per minute per square meter
    10.L/min10 liter per minute
    10.uN.s/(cm.m2)10 * microNewton * second / centimeter * (meter ^ 2)
    10.uN.s/cm10 * microNewton * second / centimeter
    10.uN.s/cm210 * microNewton * second / (centimeter ^ 2)
    ayear
    A/mAmpère / meter
    atttechnical atmosphere
    barbar
    Celdegree Celsius
    cgcentigram
    cLcentiliter
    cmcentimeter
    cm[H2O]centimeter of water
    cm[H2O]/(s.m)centimeter of water column / second * meter
    cm[H2O]/L/scentimeter of water per liter per second
    cm[Hg]centimeter of mercury
    cm2square centimeter
    cm2/ssquare centimeter per second
    cm3cubic centimeter
    cPcentiPoise
    cStcentiStokes
    dday
    dBdecibel
    degdegree
    deg/sdegree per second
    dgdecagram
    dLdecaliter
    dmdecimeter
    dm2/s2square decimeter per square second
    eqequivalents
    eq/Lequivalents / liter
    eq/mLequivalents / milliliter
    eq/mmolequivalents / millimole
    eq/umolequivalents / micromole
    ergerg
    eVelectronvolt
    fgfemtogram
    fLfemtoliter
    fL/nLfemtoliter / nanoliter
    fmfemtometer
    fmolfemtomole
    fmol/gfemtomole per gram
    fmol/Lfemtomole per liter
    fmol/mgfemtomole / milligram
    fmol/mLfemtomole / milliliter
    ggram
    g.mgram * meter
    g.m/({hb}.m2)gram * meter / hb * (meter ^ 2)
    g.m/{hb}gram * meter / hb
    g/(100.g)gram per 100 gram
    g/(12.h)gram per 12 hour
    g/(24.h)gram per 24 hour
    g/(3.d)gram per 3 days
    g/(4.h)gram per 4 hour
    g/(48.h)gram per 48 hour
    g/(5.h)gram per 5 hour
    g/(6.h)gram per 6 hour
    g/(72.h)gram per 72 hour
    g/(8.h)gram / 8 * hour
    g/(8.kg.h)gram / 8 * kilogram * hour
    g/(kg.h)gram / kilogram * hour
    g/(kg.min)gram / kilogram * minute
    g/{TotalWeight}gram / TotalWeight
    g/dgram per day
    g/dLgram per deciliter
    g/ggram per gram
    g/g{Cre}gram / gram Cre
    g/g{creat}gram / gram creat
    g/g{tissue}gram per gram of tissue
    g/hgram per hour
    g/h/m2gram per hour per square meter
    g/kggram per kilogram
    g/kg/dgram per kilogram per day
    g/Lgram per liter
    g/m2grams Per Square Meter
    g/mggram per milligram
    g/mingram per minute
    g/mLgram per milliliter
    g/mmolgram per millimole
    g/mmol{creat}gram / millimole creat
    g/molgram per mole
    GBqgigaBecquerel
    hhour
    hLhectoliter
    HzHertz
    iUinternational unit
    Jjoule
    J/Ljoule per liter
    KKelvin
    K/WKelvin / Watt
    k[IU]/Lkilo international unit per liter
    k[IU]/mLkilo international unit per milliliter
    kat/kgkatal / kilogram
    kat/Lkatal / liter
    kBqkiloBecquerel
    kcalkilocalorie
    kcal/(8.h)kilocalorie / 8 * hour
    kcal/hkilocalorie per hour
    kgkilogram
    kg.m/skilogram meter per second
    kg/(s.m2)kilogram per second per square meter
    kg/hkilogram per hour
    kg/Lkilogram per liter
    kg/m2kilogram / (meter ^ 2)
    kg/m3kilogram / (meter ^ 3)
    kg/minkilogram / minute
    kg/molkilogram per mole
    kg/skilogram / second
    kLkiloliter
    kmkilometer
    kPakiloPascal
    kskilosecond
    kU/gkiloenzyme Unit per gram
    kU/hkiloUnit / hour
    kU/Lkiloenzyme Unit per liter
    kU/mLkilo enzyme unit per milliliter
    Lliter
    L.s2/sliter * (second ^ 2) / second
    L/(8.h)liter per 8 hour
    L/(min.m2)liter per minute per square meter
    L/dliter per day
    L/hliter per hour
    L/kgliter per kilogram
    L/Lliter per liter
    L/minliter per minute
    L/sliter / second
    lm/m2lumen / (meter ^ 2)
    mmeter
    m/smeter per second
    m/s2meter per square second
    m[iU]milliinternational unit
    m[IU]/Lmilli international unit per liter
    m[IU]/mLmilli international unit per milliliter
    m2square meter
    m2/ssquare meter per second
    m3/scubic meter per second
    mAmilliAmpère
    mbarmillibar
    mbar.s/Lmillibar second per liter
    MBqmegaBecquerel
    mCimilliCurie
    meqmilliequivalent
    meq/(12.h)milliequivalent per 12 hour
    meq/(2.h)milliequivalent per 2 hour
    meq/(24.h)milliequivalent per 24 hour
    meq/(8.h)milliequivalent per 8 hour
    meq/(8.h.kg)milliequivalents / 8 * hour * kilogram
    meq/(kg.d)milliequivalents / kilogram * day
    meq/{Specimen}milliequivalents / Specimen
    meq/dmilliequivalent per day
    meq/dLmilliequivalent per deciliter
    meq/gmilliequivalent per gram
    meq/g{Cre}milliequivalents / gram Cre
    meq/hmilliequivalent per hour
    meq/kgmilliequivalent per kilogram
    meq/kg/hmilliequivalent per kilogram per hour
    meq/kg/minmilliequivalents / kilogram / minute
    meq/Lmilliequivalent per liter
    meq/m2milliequivalent per square meter
    meq/minmilliequivalent per minute
    meq/mLmilliequivalent per milliliter
    mgmilligram
    mg/(10.h)milligram per 10 hour
    mg/(12.h)milligram per 12 hour
    mg/(18.h)milligram per 18 hour
    mg/(2.h)milligram per 2 hour
    mg/(24.h)milligram per 24 hour
    mg/(72.h)milligram per 72 hour
    mg/(8.h)milligram per 8 hour
    mg/(8.h.kg)milligram / 8 * hour * kilogram
    mg/(kg.h)milligram / kilogram * hour
    mg/{Hgb}/gmilligram / Hgb / gram
    mg/{Specimen}milligram / Specimen
    mg/{Tot'Volume}milligram / Tot'Volume
    mg/{Volume}milligram / Volume
    mg/dmilligram per day
    mg/d/(173.10*-2.m2)milligram / day / 173 * (the number ten for arbitrary powers ^ -2) * (meter ^ 2)
    mg/dLmilligram per deciliter
    mg/gmilligram per gram
    mg/g{Cre}milligram / gram Cre
    mg/g{creat}milligram per gram of creatinine
    mg/hmilligram per hour
    mg/kgmilligram per kilogram
    mg/kg/(24.h)milligram / kilogram / 24 * hour
    mg/kg/dmilligram per kilogram per day
    mg/kg/minmilligram per kilogram per minute
    mg/Lmilligram per liter
    mg/m2milligram per square meter
    mg/m3milligram per cubic meter
    mg/mgmilligram per milligram
    mg/mg{cre}milligram / milligram cre
    mg/minmilligram per minute
    mg/mLmilligram per milliliter
    mg/mmolmilligram per millimole
    mg/mmol{Cre}milligram / millimole Cre
    mg/mmol{creat}milligram per millimole of creatinine
    mg/wkmilligram per week
    mg{Phenylketones}/dLmilligram Phenylketones / deciliter
    minminute
    mLmilliliter
    mL/({h'b}.m2)milliliter / h'b * (meter ^ 2)
    mL/(10.h)milliliter per 10 hour
    mL/(12.h)milliliter per 12 hour
    mL/(2.h)milliliter per 2 hour
    mL/(24.h)milliliter per 24 hour
    mL/(4.h)milliliter per 4 hour
    mL/(72.h)milliliter per 72 hour
    mL/(8.h)milliliter per 8 hour
    mL/(kg.min)milliliter / kilogram * minute
    mL/[sin_i]milliliter per square inch (international)
    mL/{h'b}MilliLitersPerHeartbeat [SI Volume Units]
    mL/cm[H2O]milliliter / centimeter of water column
    mL/dmilliliter per day
    mL/dLmilliliter per deciliter
    mL/hmilliliter per hour
    mL/kgmilliliter per kilogram
    mL/kg/(8.h)milliliter per kilogram per 8 hour
    mL/kg/dmilliliter per kilogram per day
    mL/kg/hmilliliter per kilogram per hour
    mL/kg/minmilliliter per kilogram per minute
    mL/Lmilliliter per liter
    mL/m2milliliter per square meter
    mL/mbarmilliliter per millibar
    mL/minmilliliter per minute
    mL/min/(173.10*-2.m2)milliliter / minute / 173 * (the number ten for arbitrary powers ^ -2) * (meter ^ 2)
    mL/min/{1.73_m2}milliliter per minute per 1.73 square meter
    mL/min/m2milliliter per minute per square meter
    mL/mmmilliliter per millimeter
    mL/smilliliter per second
    mmmillimeter
    mm/hmillimeter per hour
    mm/minmillimeter per minute
    mm[H2O]millimeter of water
    mm[Hg]millimeter of mercury
    mm2square millimeter
    mm3cubic millimeter
    mmolmillimole
    mmol/(12.h)millimole per 12 hour
    mmol/(18.h)millimole per 18 hour
    mmol/(2.h)millimole per 2 hour
    mmol/(24.h)millimole per 24 hour
    mmol/(6.h)millimole per 6 hour
    mmol/(8.h)millimole per 8 hour
    mmol/(8.h.kg)millimole / 8 * hour * kilogram
    mmol/{Tot'Volume}millimole / Tot'Volume
    mmol/dmillimole per day
    mmol/dLmillimole per deciliter
    mmol/gmillimole per gram
    mmol/g{creat}millimole per gram of creatinine
    mmol/g{hemoglobin}millimole per gram of hemoglobin
    mmol/hmillimole per hour
    mmol/h/mg{Hb}millimole per hour per milligram of hemoglobin
    mmol/h/mg{protein}millimole per hour per milligram of protein
    mmol/kgmillimole per kilogram
    mmol/kg/dmillimole per kilogram per day
    mmol/kg/hmillimole per kilogram per hour
    mmol/kg/minmillimole per kilogram per minute
    mmol/kg[H20]millimole per kilogram of water
    mmol/Lmillimole per liter
    mmol/L/smillimole per liter per second
    mmol/mmillimole / meter
    mmol/m2millimole per square meter
    mmol/minmillimole per minute
    mmol/mmolmillimole per millimole
    mmol/molmillimole per mole
    mmol/mol{creat}millimole per mole of creatinine
    mmol/s/Lmillimole per second per liter
    momonth
    molmole
    mol/dmole per day
    mol/kgmole per kilogram
    mol/kg/smole per kilogram per second
    mol/Lmole per liter
    mol/m3mole per cubic meter
    mol/mLmole per milliliter
    mol/molmole per mole
    mol/mol{creat}mole / mole creat
    mol/smole per second
    mosmmilliosmole
    mosm/kgmilliosmole per kilogram
    mosm/Lmilliosmole per liter
    mPamillipascal
    msmillisecond
    mUmillienzyme Unit
    mU/gmillienzyme Unit per gram
    mU/g{Hgb}milliUnit / gram Hgb
    mU/Lmillienzyme Unit per liter
    mU/mgmilliUnit / milligram
    mU/mg{Cre}milliUnit / milligram Cre
    mU/minmilliUnit / minute
    mU/mLmillienzyme Unit per milliliter
    mU/mL/minmillienzyme Unit per milliliter per minute
    mU/mmol{creatinine}millienzyme Unit per millimole of creatinine
    mU/mmol{RBCs}millienzyme Unit per millimole of red blood cells
    mVmilliVolt
    NNewton
    N.cmNewton centimeter
    N.sNewton second
    nCinanoCurie
    ngnanogram
    ng/(24.h)nanogram per 24 hour
    ng/(8.h)nanogram per 8 hour
    ng/(8.h.kg)nanogram / 8 * hour * kilogram
    ng/(kg.d)nanogram / kilogram * day
    ng/(kg.h)nanogram / kilogram * hour
    ng/(kg.min)nanogram / kilogram * minute
    ng/10*6nanogram per million
    ng/dnanogram per day
    ng/dLnanogram per deciliter
    ng/dL/hnanogram / deciliter / hour
    ng/gnanogram per gram
    ng/g{Cre}nanogram / gram Cre
    ng/g{creat}nanogram per gram of creatinine
    ng/hnanogram per hour
    ng/kgnanogram per kilogram
    ng/kg/(8.h)nanogram per kilogram per 8 hour
    ng/kg/hnanogram per kilogram per hour
    ng/kg/minnanogram per kilogram per minute
    ng/Lnanogram per liter
    ng/m2nanogram per square meter
    ng/mgnanogram per milligram
    ng/mg/hnanogram per milligram per hour
    ng/mg{Protein}nanogram / milligram Protein
    ng/minnanogram per minute
    ng/mLnanogram per millliiter
    ng/mL/hnanogram per milliliter per hour
    ng/mL{rbc}nanogram / milliliter rbc
    ng/snanogram per second
    nkatnanokatal
    nLnanoliter
    nmnanometer
    nm/s/Lnanometer per second per liter
    nmolnanomole
    nmol/(24.h)nanomole per 24 hour
    nmol/dnanomole per day
    nmol/dLnanomole per deciliter
    nmol/gnanomole per gram
    nmol/g{Cre}nanomole / gram Cre
    nmol/g{creat}nanomole per gram of creatinine
    nmol/g{dry_wt}nanomole per gram of dry weight
    nmol/h/Lnanomole per hour per liter
    nmol/h/mg{protein}nanomole per hour per milligram of protein
    nmol/h/mLnanomole per hour per milliliter
    nmol/Lnanomole per liter
    nmol/L/mmol{creat}nanomole per liter per millimole of creatinine
    nmol/L/snanomole per liter per second
    nmol/L{RBCs}nanomole per liter of red blood cells
    nmol/m/mg{protein}nanomole per meter per milligram of protein
    nmol/mgnanomole per milligram
    nmol/mg/hnanomole per milligram per hour
    nmol/min/mg{hemoglobin}nanomole per minute per milligram of hemoglobin
    nmol/min/mg{protein}nanomole per minute per milligram of protein
    nmol/min/mLnanomole per minute per milliliter
    nmol/mLnanomole per milliliter
    nmol/mL/hnanomole per milliliter per hour
    nmol/mL/minnanomole per milliliter per minute
    nmol/mmolnanomole per millimole
    nmol/mmol{Cre}nanomole / millimole Cre
    nmol/mmol{creat}nanomole per millimole of creatinine
    nmol/molnanomole per mole
    nmol/nmolnanomole per nanomole
    nmol/snanomole per second
    nmol/s/Lnanomole per second per liter
    nmol/umol{creat}nanomole per micromole of creatinine
    nsnanosecond
    OhmOhm
    osm/kgosmole per kilogram
    osm/Losmole per liter
    PaPascal
    pgpicogram
    pg/dLpicogram per deciliter
    pg/Lpicogram per liter
    pg/mgpicogram per milligram
    pg/mLpicogram per milliliter
    pg/mmpicogram per millimeter
    pkatpicokatal
    pLpicoliter
    pmpicometer
    pmolpicomole
    pmol/dpicomole per day
    pmol/dLpicomole per deciliter
    pmol/gpicomole per gram
    pmol/h/mg{protein}picomole per hour per milligram of protein
    pmol/h/mLpicomole per hour per milliliter
    pmol/Lpicomole per liter
    pmol/mg{protein}picomole per milligram of protein
    pmol/minpicomole per minute
    pmol/min/mg{protein}picomole per minute per milligram of protein
    pmol/mLpicomole per milliliter
    pmol/mmolpicomole per millimole
    pmol/mmol{creat}picomole per millimole of creatinine
    pmol/molpicomole per mole
    pmol/umolpicomole per micromole
    pmol/umol{creat}picomole per micromole of creatinine
    pspicosecond
    pTpicotesla
    ssecond
    StStokes
    ttonne
    Uenzyme Unit
    U/(1.h)enzyme Unit per 1 hour
    U/(12.h)enzyme unit per 12 hour
    U/(18.h)enzyme Unit per 18 hour
    U/(2.h)enzyme unit per 2 hour
    U/(24.h)enzyme unit per 24 hour
    U/10*10{cells}enzyme unit per 10 billion cells
    U/10*12enzyme unit per trillion
    U/10*6enzyme unit per million
    U/10*9enzyme unit per billion
    U/denzyme unit per day
    U/dLenzyme unit per deciliter
    U/genzyme unit per gram
    U/g{Cre}Unit / gram Cre
    U/g{Hb}enzyme unit per gram of hemoglobin
    U/g{hemoglobin}enzyme Unit per gram of hemoglobin
    U/g{Hgb}UnitsPerGramHemoglobin
    U/henzyme unit per hour
    U/kg/hUnit / kilogram / hour
    U/kg{Hb}enzyme unit per kilogram of hemoglobin
    U/kg{hemoglobin}enzyme Unit per kilogram of hemoglobin
    U/Lenzyme unit per liter
    U/minenzyme unit per minute
    U/mLenzyme unit per milliliter
    U/mL{RBC}Unit / milliliter RBC
    U/mL{RBCs}enzyme unit per milliliter of red blood cells
    U/mmol{creat}enzyme unit per millimole of creatinine
    U/molenzyme Unit per mole
    U/senzyme unit per second
    U/umolenzyme Unit per micromole
    u[IU]micro international unit
    u[IU]/Lmicrointernational unit per liter
    u[IU]/mLmicro international unit per milliliter
    ueqmicroequivalents
    ueq/Lmicroequivalent per liter
    ueq/mLmicroequivalent per milliliter
    ugmicrogram
    ug/(24.h)microgram per 24 hour
    ug/(8.h)microgram per 8 hour
    ug/(kg.d)microgram / kilogram * day
    ug/(kg.h)microgram / kilogram * hour
    ug/{Specimen}microgram / Specimen
    ug/{TotalVolume}MicroGramsPerTotalVolume
    ug/dmicrogram per day
    ug/dLmicrogram per deciliter
    ug/dL{rbc}microgram / deciliter rbc
    ug/gmicrogram per gram
    ug/g{Cre}microgram / gram Cre
    ug/g{creat}microgram per gram of creatinine
    ug/g{DryWeight}microgram / gram DryWeight
    ug/g{Hgb}microgram / gram Hgb
    ug/g{Tissue}microgram / gram Tissue
    ug/hmicrogram per hour
    ug/kgmicrogram per kilogram
    ug/kg/(8.h)microgram per kilogram per 8 hour
    ug/kg/dmicrogram per kilogram per day
    ug/kg/hmicrogram per kilogram per hour
    ug/kg/minmicrogram per kilogram per minute
    ug/Lmicrogram per liter
    ug/L/(24.h)microgram per liter per 24 hour
    ug/L{DDU}microgram / liter DDU
    ug/m2microgram per square meter
    ug/mgmicrogram per milligram
    ug/mg{Cre}microgram / milligram Cre
    ug/mg{creat}microgram per milligram of creatinine
    ug/minmicrogram per minute
    ug/mLmicrogram per milliliter
    ug/mL{FEU}microgram / milliliter FEU
    ug/mmolmicrogram per millimole
    ug/ngmicrogram per nanogram
    ug{T4}/dLmicrogram T4 / deciliter
    ukatmicrokatal
    uLmicroliter
    uL/(2.h)microliter per 2 hour
    uL/hmicroliter per hour
    ummicrometer
    um/smicrometer per second
    umolmicromole
    umol/(24.h)micromole per 24 hour
    umol/dmicromole per day
    umol/dLmicromole per deciliter
    umol/gmicromole per gram
    umol/g{Cre}micromole / gram Cre
    umol/g{creat}micromole per gram of creatinine
    umol/g{Hb}micromole per gram of hemoglobin
    umol/g{hemoglobin}micromole per gram of hemoglobin
    umol/g{Hgb}micromole / gram Hgb
    umol/hmicromole per hour
    umol/h/gmicromole / hour / gram
    umol/h/Lmicromole per hour per liter
    umol/h/mg{protein}micromole per hour per milligram of protein
    umol/kgmicromole per kilogram
    umol/Lmicromole per liter
    umol/L/hmicromole per liter per hour
    umol/L{rbc}micromole per liter of red blood cells
    umol/mmicromole / meter
    umol/mgmicromole per milligram
    umol/mg{Cre}micromole / milligram Cre
    umol/minmicromole per minute
    umol/min/gmicromole per minute per gram
    umol/min/g{prot}micromole / minute / gram prot
    umol/min/g{protein}micromole per minute per gram of protein
    umol/min/Lmicromole per minute per liter
    umol/mLmicromole per milliliter
    umol/mL/minmicromole per milliliter per minute
    umol/mmolmicromole per millimole
    umol/molmicromole per mole
    umol/mol{Cre}micromole / mole Cre
    umol/mol{creat}micromole per mole of creatinine
    umol/mol{Hb}micromole per mole of hemoglobin
    umol/umolmicromole per micromole
    uOhmmicroOhm
    usmicrosecond
    uUmicroUnit
    uU/gmicro enzyme unit per gram
    uU/Lmicro enzyme unit per liter
    uU/mLmicro enzyme unit per milliliter
    uVmicrovolt
    Vvolt
    wkweek
    10.uN.s/(cm5.m2)10 micronewton second per centimeter to the fifth power per square meter
    10*4/uL10 thousand per microliter
    24.h24 hour
    AAmpère
    {ARU}aspirin response unit
    atmstandard atmosphere
    ag/{cell}attogram per cell
    BqBecquerel
    {binding_index}binding index
    [bdsk'U]Bodansky unit
    {CAG_repeats}CAG trinucleotide repeats
    calcalorie
    cm[H2O]/s/mcentimeter of water per second per meter
    {delta_OD}change in (delta) optical density
    {copies}copies
    {count}count
    {CPM}counts per minute
    {CPM}/10*3{cell}counts per minute per thousand cells
    daL/mindekaliter per minute
    daL/min/m2dekaliter per minute per square meter
    {dilution}dilution
    dyn.s/cmdyne second per centimeter
    dyn.s/(cm.m2)dyne second per centimeter per square meter
    {Ehrlich'U}/100.gEhrlich unit per 100 gram
    {EIA_index}EIA index
    {EIA_titer}EIA titer
    {EV}EIA value
    U/10enzyme unit per 10
    U/10*10enzyme unit per 10 billion
    U/(10.g){feces}enzyme unit per 10 gram of feces
    U/g{creat}enzyme unit per gram of creatinine
    U/g{protein}enzyme unit per gram of protein
    U{25Cel}/Lenzyme unit per liter at 25 deg Celsius
    U{37Cel}/Lenzyme unit per liter at 37 deg Celsius
    U/10*12{RBCs}enzyme unit per trillion red blood cells
    FFarad
    fmol/mg{cytosol_protein}femtomole per milligram of cytosol protein
    fmol/mg{protein}femtomole per milligram of protein
    {FIU}fluorescent intensity unit
    {fraction}fraction
    {GAA_repeats}GAA trinucleotide repeats
    {genomes}/mLgenomes per milliliter
    {Globules}/[HPF]globules (drops) per high power field
    g.m/{beat}gram meter per heart beat
    g{creat}gram of creatinine
    g{Hb}gram of hemoglobin
    g{total_nit}gram of total nitrogen
    g{total_prot}gram of total protein
    g{wet_tissue}gram of wet tissue
    g/kg/(8.h)gram per kilogram per 8 hour
    g/(8.h){shift}gram per 8 hour shift
    g/cm3gram per cubic centimeter
    g/g{globulin}gram per gram of globulin
    g/kg/(8.h){shift}gram per kilogram per 8 hour shift
    g/kg/hgram per kilogram per hour
    g/kg/mingram per kilogram per minute
    g/mol{creat}gram per mole of creatinine
    g/{specimen}gram per specimen
    g/{total_output}gram per total output
    g/{total_weight}gram per total weight
    GyGray
    {beats}/minheart beats per minute
    HHenry
    [HPF]high power field
    [GPL'U]/mLIgG anticardiolipin unit per milliliter**
    {GPS'U}IgG antiphosphatidylserine unit
    [MPL'U]/mLIgM anticardiolipin unit per milliliter**
    {ISR}immune status ratio
    {IFA_index}immunofluorescence assay index
    {IFA_titer}Immunofluorescence assay titer
    [in_i'H2O]inch (international) of water
    {index_val}index value
    {HA_titer}influenza hemagglutination titer
    [IU]international unit
    [IU]/L{37Cel}international unit per liter at 37 degrees Celsius
    [IU]/mg{creat}international unit per milligram of creatinine
    katkatal
    kUkilo enzyme unit
    kU/L{class}kilo enzyme unit per liter class
    kcal/dkilocalorie per day
    kcal/kg/(24.h)kilocalorie per kilogram per 24 hour
    kcal/[oz_av]kilocalorie per ounce (US & British)
    [ka'U]King Armstrong unit
    L/(24.h)liter per 24 hour
    L/s/s2liter per second per square second
    {Log_copies}/mLlog (base 10) copies per milliliter
    {Log_IU}log (base 10) international unit
    {Log_IU}/mLlog (base 10) international unit per milliliter
    {Log}log base 10
    [LPF]low power field
    lmlumen
    lm.m2lumen square meter
    {Lyme_index_value}Lyme index value
    [mclg'U]Mac Lagan unit
    Msmegasecond
    ug/g{feces}microgram per gram of feces
    ug{FEU}/mLmicrogram fibrinogen equivalent unit per milliliter
    ug/(100.g)microgram per 100 gram
    ug/m3microgram per cubic meter
    ug/dL{RBCs}microgram per deciliter of red blood cells
    ug/g{dry_tissue}microgram per gram of dry tissue
    ug/g{dry_wt}microgram per gram of dry weight
    ug/g{hair}microgram per gram of hair
    ug/g{Hb}microgram per gram of hemoglobin
    ug/g{tissue}microgram per gram of tissue
    ug/L{RBCs}microgram per liter of red blood cells
    ug/mL{class}microgram per milliliter class
    ug/mL{eqv}microgram per milliliter equivalent
    ug/mmol{creat}microgram per millimole of creatinine
    ug/{specimen}microgram per specimen
    ug/[sft_i]microgram per square foot (international)
    umol{BCE}/molmicromole bone collagen equivalent per mole
    umol/(2.h)micromole per 2 hour
    umol/(8.h)micromole per 8 hour
    umol/dL{GF}micromole per deciliter of glomerular filtrate
    umol/kg{feces}micromole per kilogram of feces
    umol/L{RBCs}micromole per liter of red blood cells
    umol/umol{creat}micromole per micromole of creatinine
    umol/mg{creat}micromole per milligram of creatinine
    umol/mmol{creat}micromole per millimole of creatinine
    umol/min/g{mucosa}micromole per minute per gram of mucosa
    mU/mmol{creat}milli enzyme unit per millimole of creatinine
    mU/g{Hb}milli enzyme unit per gram of hemoglobin
    mU/g{protein}milli enzyme unit per gram of protein
    mU/mg{creat}milli enzyme unit per milligram of creatinine
    mbar/L/smillibar per liter per second
    meq/g{creat}milliequivalent per gram of creatinine
    meq/{specimen}milliequivalent per specimen
    meq/{total_volume}milliequivalent per total volume
    mg{FEU}/Lmilligram fibrinogen equivalent unit per liter
    mg/(6.h)milligram per 6 hour
    mg/{collection}milligram per collection
    mg/d/{1.73_m2}milligram per day per 1.73 square meter
    mg/dL{RBCs}milligram per deciliter of red blood cells
    mg/g{dry_tissue}milligram per gram of dry tissue
    mg/g{feces}milligram per gram of feces
    mg/g{tissue}milligram per gram of tissue
    mg/g{wet_tissue}milligram per gram of wet tissue
    mg/kg/(8.h)milligram per kilogram per 8 hour
    mg/kg/hmilligram per kilogram per hour
    mg/L{RBCs}milligram per liter of red blood cells
    mg/mg{creat}milligram per milligram of creatinine
    mg/{specimen}milligram per specimen
    mg/{total_output}milligram per total output
    mg/{total_volume}milligram per total volume
    mL{fetal_RBCs}milliliter of fetal red blood cells
    mL/(5.h)milliliter per 5 hour
    mL/(6.h)milliliter per 6 hour
    mL/{beat}milliliter per heart beat
    mL/{beat}/m2milliliter per heart beat per square meter
    mmol/(5.h)millimole per 5 hour
    mmol/{ejaculate}millimole per ejaculate
    mmol/kg/(8.h)millimole per kilogram per 8 hour
    mmol/L{RBCs}millimole per liter of red blood cells
    mmol/mmol{urea}millimole per millimole of urea
    mmol/mmol{creat}millimole per millmole of creatinine
    mmol/{specimen}millimole per specimen
    mmol/{total_vol}millimole per total volume
    10*6.[CFU]/Lmillion colony forming unit per liter
    10*6.[IU]million international unit
    10*6/(24.h)million per 24 hour
    mPa.smillipascal second
    {minidrop}/minminidrop per minute
    {minidrop}/sminidrop per second
    {molecule}/{platelet}molecule per platelet
    {mm/dd/yyyy}month-day-year
    {mutation}mutation
    nU/mLnanoenzyme unit per milliliter
    nU/{RBC}nanoenzyme unit per red blood cell
    ng{FEU}/mLnanogram fibrinogen equivalent unit per milliliter
    ng/Unanogram per enzyme unit
    ng/mg{creat}nanogram per milligram of creatinine
    ng/mg{protein}nanogram per milligram of protein
    ng/mL{RBCs}nanogram per milliliter of red blood cells
    ng/10*6{RBCs}nanogram per million red blood cells
    nmol{BCE}nanomole bone collagen equivalent
    nmol{BCE}/Lnanomole bone collagen equivalent per liter
    nmol{BCE}/mmol{creat}nanomole bone collagen equivalent per millimole of creatinine
    nmol{1/2cys}/mg{protein}nanomole of 1/2 cystine per milligram of protein
    nmol{ATP}nanomole of ATP
    nmol/dL{GF}nanomole per deciliter of glomerular filtrate
    nmol/mg{creat}nanomole per milligram of creatinine
    nmol/mg{protein}nanomole per milligram of protein
    nmol/mg{protein}/hnanomole per milligram of protein per hour
    nmol/minnanomole per minute
    nmol/min/mg{Hb}nanomole per minute per milligram of hemoglobin
    nmol/min/10*6{cells}nanomole per minute per million cells
    {#}/[HPF]number per high power field
    {#}/Lnumber per liter
    {#}/[LPF]number per low power field
    {#}/uLnumber per microliter
    {#}/mLnumber per milliliter
    {#}/minnumber per minute
    Ohm.mOhm meter
    osmosmole
    {Pan_Bio'U}panbio unit
    /10*4{RBCs}per 10 thousand red blood cells
    /m3per cubic meter
    /{entity}per entity
    /g{Hb}per gram of hemoglobin
    /g{tot_nit}per gram of total nitrogen
    /g{tot_prot}per gram of total protein
    /g{wet_tis}per gram of wet tissue
    /[IU]per international unit
    /kg{body_wt}per kilogram of body weight
    /mmper millimeter
    /mmol{creat}per millimole of creatinine
    /{OIF}per oil immersion field
    /10*3per thousand
    /10*3.{RBCs}per thousand red blood cells
    /10*12{RBCs}per trillion red blood cells
    %{loss_AChR}percent loss of acetylcholine receptor
    %{penetration}percent penetration
    %{abnormal}percent abnormal
    %{activity}percent activity
    %{aggregation}percent aggregation
    %{at_60_min}percent at 60 minute
    %{basal_activity}percent basal activity
    %{binding}percent binding
    %{blockade}percent blockade
    %{blocked}percent blocked
    %{bound}percent bound
    %{breakdown}percent breakdown
    %{deficient}percent deficient
    %{dose}percent dose
    %{excretion}percent excretion
    %{Hb}percent hemoglobin
    %{hemolysis}percent hemolysis
    %{index}percent index
    %{inhibition}percent inhibition
    %{loss}percent loss
    %{lysis}percent lysis
    %{normal}percent normal
    %{normal_pooled_plasma}percent normal pooled plasma
    %{bacteria}percent of bacteria
    %{baseline}percent of baseline
    %{cells}percent of cells
    %{RBCs}percent of red blood cells
    %{WBCs}percent of white blood cells
    %{positive}percent positive
    %{reactive}percent reactive
    %{recovery}percent recovery
    %{reference}percent reference
    %{residual}percent residual
    %{saturation}percent saturation
    %{total}percent total
    %{uptake}percent uptake
    %{viable}percent viable
    {percentile}percentile
    {phenotype}phenotype
    pApicoampere
    pg/{cell}picogram per cell
    pg/mg{creat}picogram per milligram of creatinine
    pg/{RBC}picogram per red blood cell
    pmol/(24.h)picomole per 24 hour
    pmol/{RBC}picomole per red blood cell
    [pt_us]pint
    %{relative}relative percent
    {relative_saturation}relative saturation
    {Rubella_virus}rubella virus
    {saturation}saturation
    s/{control}second per control
    SSiemens
    SvSievert
    {s_co_ratio}signal to cutoff ratio
    {STDV}standard deviation
    TTesla
    10*3{copies}/mLthousand copies per milliliter
    10*3{RBCs}thousand red blood cells
    {TSI_index}thyroid-stimulating immunoglobulin index
    WbWeber
    {WBCs}white blood cells
    11*
    'minute
    ''second
    %[slope]percent of slope
    %{Bound}PercentBound
    /100{Spermatozoa}Per100Spermatozoa
    /g{HGB}PerGramHemoglobin
    [acr_br]acre
    [acr_us]acre
    [Amb'a'1'U]Amb a 1 units
    [bbl_us]barrel
    [bf_i]board foot
    [Btu]British thermal unit
    [Btu_39]British thermal unit at 39 °F
    [Btu_59]British thermal unit at 59 °F
    [Btu_60]British thermal unit at 60 °F
    [Btu_IT]international table British thermal unit
    [Btu_m]mean British thermal unit
    [Btu_th]thermochemical British thermal unit
    [bu_br]bushel
    [bu_us]bushel
    [c]velocity of light
    [Cal]nutrition label Calories
    [car_Au]carat of gold alloys
    [car_m]metric carat
    [CCID_50]CELL CULTURE INFECTIOUS DOSE 50%
    [cft_i]cubic foot
    [ch_br]Gunter's chain
    [ch_us]Gunter's chain Surveyor's chain
    [cicero]cicero Didot's pica
    [cml_i]circular mil
    [cr_i]cord
    [crd_us]cord
    [cyd_i]cubic yard
    [D'ag'U]D-ANTIGEN UNITS
    [didot]didot Didot's point
    [diop]diopter
    [dpt_us]dry pint
    [dqt_us]dry quart
    [dr_ap]dram drachm
    [dye'U]Dye unit
    [e]elementary charge
    [eps_0]permittivity of vacuum
    [fdr_br]fluid dram
    [FFU]FOCUS-FORMING UNITS
    [ft_br]foot
    [ft_us]foot
    [fth_br]fathom
    [fth_us]fathom
    [fur_us]furlong
    [G]Newtonian constant of gravitation
    [gal_wi]historical winchester gallon
    [gil_br]gill
    [gil_us]gill
    [h]Planck constant
    [hd_i]hand
    [hnsf'U]Hounsfield unit
    [HP]horsepower
    [hp_C]HOMEOPATHIC POTENCY OF CENTESIMAL SERIES
    [hp_M]HOMEOPATHIC POTENCY OF MILLESIMAL SERIES
    [hp_Q]HOMEOPATHIC POTENCY OF QUINTAMILLESIMAL SERIES
    [hp_X]HOMEOPATHIC POTENCY OF DECIMAL SERIES
    [in_br]inch
    [in_i'Hg]inch of mercury column
    [in_us]inch
    [iU]/dLInternationalUnitsPerDeciLiter
    [iU]/gInternationalUnitsPerGram
    [iU]/kgInternationalUnitsPerKilogram
    [iU]/LInternationalUnitsPerLiter
    [iU]/mLInternationalUnitsPerMilliLiter
    [k]Boltzmann constant
    [kn_br]knot
    [kn_i]knot
    [knk'U]Kunkel unit
    [lb_ap]pound
    [lb_tr]pound
    [lbf_av]pound force
    [lcwt_av]long hunderdweight British hundredweight
    [Lf]LIMIT OF FLOCCULATION
    [ligne]ligne French line
    [lk_br]link for Gunter's chain
    [lk_us]link for Gunter's chain
    [lne]line
    [lton_av]long ton British ton
    [ly]light-year
    [m_e]electron mass
    [m_p]proton mass
    [mesh_i]mesh
    [MET]metabolic equivalent
    [mi_br]mile
    [mil_i]mil
    [mil_us]mil
    [min_br]minim
    [mu_0]permeability of vacuum
    [nmi_br]nautical mile
    [oz_ap]ounce (US and British)
    [pc_br]pace
    [pca]pica
    [pca_pr]Printer's pica
    [p'diop]prism diopter
    [PFU]PLAQUE-FORMING UNITS
    [pi]the number pi
    [pied]pied French foot
    [pk_br]peck
    [pk_us]peck
    [pnt]point
    [pnt_pr]Printer's point
    [PNU]PROTEIN NITROGEN UNITS
    [pouce]pouce French inch
    [PRU]peripheral vascular resistance unit
    [pwt_tr]pennyweight
    [rch_us]Ramden's chain Engineer's chain
    [rd_br]rod
    [rd_us]rod
    [rlk_us]link for Ramden's chain
    [S]Svedberg unit
    [sc_ap]scruple
    [sct]section
    [scwt_av]short hundredweight U.S. hundredweight
    [smgy'U]Somogyi unit
    [smi_us]square mile
    [smoot]Smoot
    [srd_us]square rod
    [stone_av]stone British stone
    [TCID_50]TISSUE CULTURE INFECTIOUS DOSE 50%
    [twp]township
    [USP'U]UNITED STATES PHARMACOPEIA UNIT
    [yd_br]yard
    [yd_us]yard
    {Cells}/uLCellsPerMicroLiter
    {Copies}/mLCopiesPerMilliLiter
    {Ct}crossing threshold
    {Ehrlich_U}/dLEhrlichUnitsPerDeciLiter
    {EhrlichU}/dLEhrlichUnitsPerDeciLiter [Arbitrary Concentration Units]
    {Elisa_U}/mLElisaUnitsPerMilliLiter
    {ElisaU}/mLElisaUnitsPerMilliLiter [Arbitrary Concentration Units]
    {kp_C}HOMEOPATHIC POTENCY OF CENTESIMAL KORSAKOVIAN SERIES
    {rbc}red blood cell count
    {Spermatozoa}/mLSpermatozoaPerMilliLiter
    {tbl}tablets
    {tot}particles total count
    10*the number ten for arbitrary powers
    10^the number ten for arbitrary powers
    a_gmean Gregorian year
    a_jmean Julian year
    a_ttropical year
    AoÅngström
    arare
    AUastronomic unit
    bbarn
    Bbel
    B[kW]bel kilowatt
    B[mV]bel millivolt
    B[SPL]bel sound pressure
    B[uV]bel microvolt
    B[V]bel volt
    B[W]bel watt
    Bdbaud
    BiBiot
    bitbit
    bit_sbit
    Bybyte
    CCoulomb
    cal_[15]calorie at 15 °C
    cal_[20]calorie at 20 °C
    cal_ITinternational table calorie
    cal_mmean calorie
    cal_ththermochemical calorie
    cdcandela
    CiCURIE
    circcircle
    dyndyne
    GGauss
    g%gram percent
    g.m/{H.B.}gram meter per heartbeat
    GalGal
    GbGilbert
    gfgram-force
    gongon grade
    k[iU]/mLKiloInternationalUnitsPerMilliLiter
    kg{wet'tis}kilogram of wet tissue
    KyKayser
    LmbLambert
    lxlux
    m[H2O]meter of water column
    m[Hg]meter of mercury column
    mg/{TotalVolume}MilliGramPerTotalVolume
    mg/mg{Cre}MilligramsPerMilligramCreatinine
    mg{creat}milligram of creatinine
    mhomho
    mmol/{TotalVolume}MilliMolesPerTotalVolume [Substance Units]
    mmol/mol{Cre}MilliMolesPerMoleCreatinine
    mo_gmean Gregorian month
    mo_jmean Julian month
    mo_ssynodal month
    MxMaxwell
    Npneper
    OeOersted
    PPoise
    pcparsec
    phphot
    RRoentgen
    radradian
    RADradiation absorbed dose
    REMradiation equivalent man
    sbstilb
    sphspere
    srsteradian
    ststere
    uunified atomic mass unit
    uCiMICROCURIE
    WWatt
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Common UCUM units

Commonly encountered UCUM units (for purposes of helping populate look ups

Copyright Statement: UCUM is Copyright © 1999-2013 Regenstrief Institute, Inc. and The UCUM Organization, Indianapolis, IN. All rights reserved. See http://unitsofmeasure.org/trac//wiki/TermsOfUse for details

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://unitsofmeasure.org
    CodeDisplayDefinition
    %percent
    %/100{WBC}percent / 100 WBC
    %{0to3Hours}percent 0to3Hours
    %{Abnormal}percent Abnormal
    %{Activity}percent Activity
    %{BasalActivity}percent BasalActivity
    %{Binding}percent Binding
    %{Blockade}percent Blockade
    %{Carboxyhemoglobin}percent Carboxyhemoglobin
    %{Conversion}percent Conversion
    %{Cound}percent Cound
    %{EosSeen}percent EosSeen
    %{Excretion}percent Excretion
    %{Fat}percent Fat
    %{FetalErythrocytes}percent FetalErythrocytes
    %{Hemoglobin}percent Hemoglobin
    %{HemoglobinA1C}percent HemoglobinA1C
    %{HemoglobinSaturation}percent HemoglobinSaturation
    %{Hemolysis}percent Hemolysis
    %{HumanResponse}percent HumanResponse
    %{Index}percent Index
    %{Inhibition}percent Inhibition
    %{Live}percent Live
    %{Negative Control}percent Negative Control
    %{Normal}percent Normal
    %{NormalControl}percent NormalControl
    %{NormalPooledPlasma}percent NormalPooledPlasma
    %{ofAvailable}percent ofAvailable
    %{ofBacteria}percent ofBacteria
    %{OfLymphocytes}percent OfLymphocytes
    %{OfWBCs}percent OfWBCs
    %{Oxygen}percent Oxygen
    %{Positive}percent Positive
    %{Precipitate}percent Precipitate
    %{Reactivity}percent Reactivity
    %{response}percent response
    %{risk}percent risk
    %{SpermMotility}percent SpermMotility
    %{Total}percent Total
    %{TotalProtein}percent TotalProtein
    %{Tot'Cholesterol}percent Tot'Cholesterol
    %{Tot'Hgb}percent Tot'Hgb
    %{Uptake}percent Uptake
    %{vol}VolumePercent
    %{WeightToWeight}percent WeightToWeight
    /(12.h)per 12 * hour
    /[arb'U]per arbitrary unit
    /[HPF]per high power field
    /[iU]per international unit
    /[LPF]per low power field
    /{Entity}per Entity
    /{hpf}per hpf
    /{LPF}per LPF
    /{oif}per oif
    /{Specimen}per Specimen
    /{tot}per tot
    /10*10PerTenGiga
    /10*12PerTrillion
    /10*12{rbc}PerTrillionRedBloodCells
    /10*6PerMillion
    /10*9PerBillion
    /100per 100
    /100{cells}per 100 cells
    /100{neutrophils}per 100 neutrophils
    /100{spermatozoa}per 100 spermatozoa
    /100{WBC}Per100WBC
    /100{WBCs}Per100WBC
    /a/ year
    /cm[H2O]per centimeter of water
    /dper day
    /dLper deciliter
    /gper gram
    /g{creat}per gram creat
    /g{hgb}per gram hgb
    /g{tot'nit}per gram tot'nit
    /g{tot'prot}per gram tot'prot
    /g{wet'tis}per gram wet'tis
    /hper hour
    /kgper kilogram
    /kg{body'wt}per kilogram body wt
    /Lper liter
    /m2per square meter
    /mgper milligram
    /minper minute
    /mLper milliliter
    /mm3per cubic millimeter
    /mmolper millimole
    /moper month
    /sper second
    /Uper enzyme unit
    /ugper microgram
    /uLper microliter
    /wkper week
    [APL'U]IgA anticardiolipin unit
    [APL'U]/mLIgA anticardiolipin unit per milliliter
    [arb'U]arbitrary unit
    [arb'U]/Larbitary unit / liter
    [arb'U]/mLarbitrary unit per milliliter
    [AU]allergy unit
    [BAU]bioequivalent allergen unit
    [beth'U]Bethesda unit
    [beth'U]Bethesda unit
    [CFU]colony forming unit
    [CFU]/Lcolony forming unit per liter
    [CFU]/mLcolony forming unit per milliliter
    [Ch]French (catheter gauge)
    [cin_i]cubic inch
    [cup_us]cup
    [degF]degree Fahrenheit
    [dr_av]Dram (US and British)
    [drp]drop
    [drp]/{HPF}drop / HPF
    [drp]/hdrop / hour
    [drp]/mindrop / minute
    [drp]/mLdrop / milliliter
    [drp]/sdrop / second
    [fdr_us]fluid dram
    [foz_br]fluid ounce
    [foz_us]fluid ounce
    [ft_i]Feet
    [fth_i]fathom
    [gal_br]gallon
    [gal_us]Queen Anne's wine gallon
    [GPL'U]IgG anticardiolipin unit
    [gr]grain
    [in_i]inch (international)
    [iU]international unit
    [IU]/(2.h)international unit per 2 hour
    [IU]/(24.h)international unit per 24 hour
    [IU]/10*9{RBCs}international unit per billion red blood cells
    [IU]/dinternational unit per day
    [IU]/dLinternational unit per deciliter
    [IU]/ginternational unit per gram
    [IU]/g{Hb}international unit per gram of hemoglobin
    [iU]/g{Hgb}international unit / gram Hgb
    [IU]/hinternational unit per hour
    [IU]/kginternational unit per kilogram
    [IU]/kg/dinternational unit per kilogram per day
    [IU]/Linternational unit per liter
    [IU]/mininternational unit per minute
    [IU]/mLinternational unit per milliliter
    [lb_av]pound (US and British)
    [mi_i]statute mile
    [mi_us]mile
    [min_us]minim
    [MPL'U]IgM anticardiolipin unit
    [M'U]M unit
    [nmi_i]nautical mile
    [oz_av]ounce (US and British)
    [oz_tr]ounce
    [pH]pH
    [pi].rad/minthe number pi * radian / minute
    [ppb]part per billion
    [ppm]part per million
    [ppm]{v/v}part per million in volume per volume
    [ppt]part per trillion
    [ppth]parts per thousand
    [pptr]parts per trillion
    [psi]pound per square inch
    [pt_br]pint
    [qt_br]quart
    [qt_us]quart
    [sft_i]square foot (international)
    [sin_i]square inch (international)
    [ston_av]short ton U.S. ton
    [syd_i]square yard
    [tbs_us]tablespoon (US)
    [tb'U]tuberculin unit
    [todd'U]Todd unit
    [todd'U]Todd unit
    [tsp_us]teaspoon
    [yd_i]yard
    {# of calculi}# of calculi
    {# of donor informative markers}# of donor informative markers
    {# of fetuses}# of fetuses
    {# of informative markers}# of informative markers
    {#}#
    {2 or 3 times}/d2 or 3 times / day
    {3 times}/d3 times / day
    {4 times}/d4 times / day
    {5 times}/d5 times / day
    {absorbance}absorbance
    {Absorbance'U}Absorbance'U
    {Absorbance'U}/mLAbsorbance'U / milliliter
    {activity}activity
    {ActivityCoefficient}ActivityCoefficient
    {AHF'U}AHF'U
    {AntibodyResponse'U}AntibodyResponse'U
    {Applicator}Applicator
    {APS'U}IgA antiphosphatidylserine unit
    {AspirinReaction'U}AspirinReaction'U
    {Bead}Bead
    {Beats}/minBeats / minute
    {Bottle}Bottle
    {Bowls}/dBowls / day
    {Breaths}/minBreaths / minute
    {CAE'U}complement activity enzyme unit
    {CagRepeat}CagRepeat
    {Can}Can
    {Cans}/wkCans / week
    {Capsule}Capsule
    {Cell}Cell
    {cells}cells
    {cells}/[HPF]cells per high power field
    {Cells}/mLCells / milliliter
    {cells}/uLcells per microliter
    {CfTiter}CfTiter
    {cfu}cfu
    {cfu}/mLcfu / milliliter
    {CGG_repeats}CGG_repeats
    {CGG}CGG
    {CH100'U}complement CH100 unit
    {clock time}clock time
    {clock_time}clock_time
    {ComplementActivityEnzyme'U}ComplementActivityEnzyme'U
    {ComplementCH100'U}ComplementCH100'U
    {ComplementCH50'U}ComplementCH50'U
    {copies}/mLcopies per milliliter
    {copies}/ugcopies per microgram
    {Copies}/uLCopies / microliter
    {Count}Count
    {Counts}/minCounts / minute
    {Dalton}Dalton
    {DdTiter}DdTiter
    {DeltaOpticalDensity}DeltaOpticalDensity
    {Dilution}dilution
    {Disintegrations}/minDisintegrations / minute
    {Dose}Dose
    {Drinks}/dDrinks / day
    {Each}Each
    {Ehrlich'U}Ehrlich unit
    {Ehrlich'U}/(2.h)Ehrlich unit per 2 hour
    {Ehrlich'U}/100gEhrlich unit per 100 gram
    {Ehrlich'U}/dEhrlich unit per day
    {Ehrlich'U}/dLEhrilich unit per deciliter
    {Ehrlich'U}/mLEhrlich'U / milliliter
    {EIAIndex}EIA index
    {EIATiter}EIA titer
    {EIA'U}EIA unit
    {EIA'U}/UEIA unit per enzyme Unit
    {ElisaIndex}ElisaIndex
    {ELISA'U}ELISA unit
    {Elisa'U}/mLElisa'U / milliliter
    {ElisaValue}ElisaValue
    {ERY}/uLerythrocyte per microliter
    {Events}Events
    {FluorescenceIntensity'U}FluorescenceIntensity'U
    {G}UG unit
    {GliadinIndexValue}GliadinIndexValue
    {G-PortionPhospholipids}G-PortionPhospholipids
    {HaTiter}HaTiter
    {IfaIndex}IfaIndex
    {IfaTiter}IfaTiter
    {IgAAntiphosphatidyleserine'U}IgAAntiphosphatidyleserine'U
    {IgAPhospholipid'U}IgAPhospholipid'U
    {IgGAntiphosphatidyleserine'U}IgGAntiphosphatidyleserine'U
    {IgGIndex}IgGIndex
    {IgMAntiphosphatidyleserine'U}IgMAntiphosphatidyleserine'U
    {IgMIndex}IgMIndex
    {ImmuneComplex'U}immune complex unit
    {ImmuneStatusRatio}ImmuneStatusRatio
    {Immunity}Immunity
    {Index_val}Index_val
    {index}index
    {IndexValue}IndexValue
    {InhaledTobaccoUseAmountYears}InhaledTobaccoUseAmountYears
    {InhaledTobaccoUsePacks}/dInhaledTobaccoUsePacks / day
    {INR}international normalized ratio
    {INR'unit}INR'unit
    {JDF'U}Juvenile Diabetes Foundation unit
    {JDF'U}/LJuvenile Diabetes Foundation unit per liter
    {JuvenileDiabetesFound'U}JuvenileDiabetesFound'U
    {KCT'U}kaolin clotting time
    {KRONU'U}/LKronus unit per liter
    {KRONU'U}/mLKronus unit per milliliter
    {lgCopies}/mllgCopies / milliliter
    {log_copies}/mLlog (base 10) copies per milliliter
    {log_IU}/mLlog (base 10) international unit per milliliter
    {LymeIndexValue}LymeIndexValue
    {M.o.M.}M.o.M.
    {M.o.M}multiple of the median
    {Markers}Markers
    {minidrp}minidrp
    {Molecule}/{Platelet}Molecule / Platelet
    {M-PortionPhospholipids}M-PortionPhospholipids
    {MPS'U}IgM antiphosphatidylserine unit
    {MPS'U}/mLIgM antiphosphatidylserine unit per milliliter
    {MultOfMean}MultOfMean
    {NonspecifcOunce}NonspecifcOunce
    {Number}Number
    {OD_unit}optical density unit
    {Once}/dOnce / day
    {OpticalDensity}OpticalDensity
    {OpticalDensityIndex}OpticalDensityIndex
    {OpticalDensityRatio}OpticalDensityRatio
    {P2Y12 Reaction Units}P2Y12 Reaction Units
    {Package}Package
    {Packs}/dPacks / day
    {PackYears}PackYears
    {Patch}Patch
    {Percentile}Percentile
    {Pill}Pill
    {Pouches}/wkPouches / week
    {RadioactiveT3UptakeRatio}RadioactiveT3UptakeRatio
    {ratio}ratio
    {RBC}/uLred blood cell per microliter
    {RecTiter}RecTiter
    {Relative'U}Relative'U
    {RelativeViscosity}RelativeViscosity
    {RPI'U}RPI'U
    {RubellaVirus}RubellaVirus
    {SatIndex}SatIndex
    {Scoop}Scoop
    {ScoreOf}ScoreOf
    {shift}shift
    {spermatozoa}/mLspermatozoa per milliliter
    {spray}spray
    {StandardDeviation}StandardDeviation
    {StandardIgA'U}StandardIgA'U
    {StandardIgG'U}StandardIgG'U
    {StandardIgM'U}StandardIgM'U
    {StdDeviation'U}StdDeviation'U
    {StimulatingIndex}StimulatingIndex
    {Streptozyme'U}Streptozyme'U
    {ThyroxinUptake'U}ThyroxinUptake'U
    {TIBC'U}TIBC'U
    {Times}/wkTimes / week
    {Tine'U}Tine'U
    {titer}titer
    {ToxoplasmaIndexValue}ToxoplasmaIndexValue
    {Vial}Vial
    {Volume}/{Vvolume}Volume / Vvolume
    {WeeksDays}WeeksDays
    {WhiteBloodCell}WhiteBloodCell
    1/done per day
    1/minone per minute
    10*12/Ltrillion per liter
    10*3Thousand
    10*3.{RBC}Thousand Red Blood Cells
    10*3.UThousand Per * Unit
    10*3/LThousand Per Liter
    10*3/mLThousand Per MilliLiter
    10*3/uLThousands Per MicroLiter
    10*3{Copies}/mLThousand Copies Per MilliLiter
    10*-3{Polarization'U}(the number ten for arbitrary powers ^ -3) Polarization'U
    10*5OneHundredThousand
    10*6Million
    10*6.[iU]MillionInternationalUnit
    10*6.eq/mLMillionEquivalentsPerMilliLiter
    10*6.U(the number ten for arbitrary powers ^ 6) * Unit
    10*6/{Specimen}MillionPerSpecimen
    10*6/kgmillion per kilogram
    10*6/Lmillion per liter
    10*6/mLmillion per milliliter
    10*6/mm3(the number ten for arbitrary powers ^ 6) / (millimeter ^ 3)
    10*6/uLmillion per microliter
    10*-6{Immunofluorescence'U}(the number ten for arbitrary powers ^ -6) Immunofluorescence'U
    10*8TenToEighth
    10*9/Lbillion per liter
    10*9/mLbillion per milliliter
    10*9/uLbillion per microliter
    10.L/(min.m2)10 liter per minute per square meter
    10.L/min10 liter per minute
    10.uN.s/(cm.m2)10 * microNewton * second / centimeter * (meter ^ 2)
    10.uN.s/cm10 * microNewton * second / centimeter
    10.uN.s/cm210 * microNewton * second / (centimeter ^ 2)
    ayear
    A/mAmpère / meter
    atttechnical atmosphere
    barbar
    Celdegree Celsius
    cgcentigram
    cLcentiliter
    cmcentimeter
    cm[H2O]centimeter of water
    cm[H2O]/(s.m)centimeter of water column / second * meter
    cm[H2O]/L/scentimeter of water per liter per second
    cm[Hg]centimeter of mercury
    cm2square centimeter
    cm2/ssquare centimeter per second
    cm3cubic centimeter
    cPcentiPoise
    cStcentiStokes
    dday
    dBdecibel
    degdegree
    deg/sdegree per second
    dgdecagram
    dLdecaliter
    dmdecimeter
    dm2/s2square decimeter per square second
    eqequivalents
    eq/Lequivalents / liter
    eq/mLequivalents / milliliter
    eq/mmolequivalents / millimole
    eq/umolequivalents / micromole
    ergerg
    eVelectronvolt
    fgfemtogram
    fLfemtoliter
    fL/nLfemtoliter / nanoliter
    fmfemtometer
    fmolfemtomole
    fmol/gfemtomole per gram
    fmol/Lfemtomole per liter
    fmol/mgfemtomole / milligram
    fmol/mLfemtomole / milliliter
    ggram
    g.mgram * meter
    g.m/({hb}.m2)gram * meter / hb * (meter ^ 2)
    g.m/{hb}gram * meter / hb
    g/(100.g)gram per 100 gram
    g/(12.h)gram per 12 hour
    g/(24.h)gram per 24 hour
    g/(3.d)gram per 3 days
    g/(4.h)gram per 4 hour
    g/(48.h)gram per 48 hour
    g/(5.h)gram per 5 hour
    g/(6.h)gram per 6 hour
    g/(72.h)gram per 72 hour
    g/(8.h)gram / 8 * hour
    g/(8.kg.h)gram / 8 * kilogram * hour
    g/(kg.h)gram / kilogram * hour
    g/(kg.min)gram / kilogram * minute
    g/{TotalWeight}gram / TotalWeight
    g/dgram per day
    g/dLgram per deciliter
    g/ggram per gram
    g/g{Cre}gram / gram Cre
    g/g{creat}gram / gram creat
    g/g{tissue}gram per gram of tissue
    g/hgram per hour
    g/h/m2gram per hour per square meter
    g/kggram per kilogram
    g/kg/dgram per kilogram per day
    g/Lgram per liter
    g/m2grams Per Square Meter
    g/mggram per milligram
    g/mingram per minute
    g/mLgram per milliliter
    g/mmolgram per millimole
    g/mmol{creat}gram / millimole creat
    g/molgram per mole
    GBqgigaBecquerel
    hhour
    hLhectoliter
    HzHertz
    iUinternational unit
    Jjoule
    J/Ljoule per liter
    KKelvin
    K/WKelvin / Watt
    k[IU]/Lkilo international unit per liter
    k[IU]/mLkilo international unit per milliliter
    kat/kgkatal / kilogram
    kat/Lkatal / liter
    kBqkiloBecquerel
    kcalkilocalorie
    kcal/(8.h)kilocalorie / 8 * hour
    kcal/hkilocalorie per hour
    kgkilogram
    kg.m/skilogram meter per second
    kg/(s.m2)kilogram per second per square meter
    kg/hkilogram per hour
    kg/Lkilogram per liter
    kg/m2kilogram / (meter ^ 2)
    kg/m3kilogram / (meter ^ 3)
    kg/minkilogram / minute
    kg/molkilogram per mole
    kg/skilogram / second
    kLkiloliter
    kmkilometer
    kPakiloPascal
    kskilosecond
    kU/gkiloenzyme Unit per gram
    kU/hkiloUnit / hour
    kU/Lkiloenzyme Unit per liter
    kU/mLkilo enzyme unit per milliliter
    Lliter
    L.s2/sliter * (second ^ 2) / second
    L/(8.h)liter per 8 hour
    L/(min.m2)liter per minute per square meter
    L/dliter per day
    L/hliter per hour
    L/kgliter per kilogram
    L/Lliter per liter
    L/minliter per minute
    L/sliter / second
    lm/m2lumen / (meter ^ 2)
    mmeter
    m/smeter per second
    m/s2meter per square second
    m[iU]milliinternational unit
    m[IU]/Lmilli international unit per liter
    m[IU]/mLmilli international unit per milliliter
    m2square meter
    m2/ssquare meter per second
    m3/scubic meter per second
    mAmilliAmpère
    mbarmillibar
    mbar.s/Lmillibar second per liter
    MBqmegaBecquerel
    mCimilliCurie
    meqmilliequivalent
    meq/(12.h)milliequivalent per 12 hour
    meq/(2.h)milliequivalent per 2 hour
    meq/(24.h)milliequivalent per 24 hour
    meq/(8.h)milliequivalent per 8 hour
    meq/(8.h.kg)milliequivalents / 8 * hour * kilogram
    meq/(kg.d)milliequivalents / kilogram * day
    meq/{Specimen}milliequivalents / Specimen
    meq/dmilliequivalent per day
    meq/dLmilliequivalent per deciliter
    meq/gmilliequivalent per gram
    meq/g{Cre}milliequivalents / gram Cre
    meq/hmilliequivalent per hour
    meq/kgmilliequivalent per kilogram
    meq/kg/hmilliequivalent per kilogram per hour
    meq/kg/minmilliequivalents / kilogram / minute
    meq/Lmilliequivalent per liter
    meq/m2milliequivalent per square meter
    meq/minmilliequivalent per minute
    meq/mLmilliequivalent per milliliter
    mgmilligram
    mg/(10.h)milligram per 10 hour
    mg/(12.h)milligram per 12 hour
    mg/(18.h)milligram per 18 hour
    mg/(2.h)milligram per 2 hour
    mg/(24.h)milligram per 24 hour
    mg/(72.h)milligram per 72 hour
    mg/(8.h)milligram per 8 hour
    mg/(8.h.kg)milligram / 8 * hour * kilogram
    mg/(kg.h)milligram / kilogram * hour
    mg/{Hgb}/gmilligram / Hgb / gram
    mg/{Specimen}milligram / Specimen
    mg/{Tot'Volume}milligram / Tot'Volume
    mg/{Volume}milligram / Volume
    mg/dmilligram per day
    mg/d/(173.10*-2.m2)milligram / day / 173 * (the number ten for arbitrary powers ^ -2) * (meter ^ 2)
    mg/dLmilligram per deciliter
    mg/gmilligram per gram
    mg/g{Cre}milligram / gram Cre
    mg/g{creat}milligram per gram of creatinine
    mg/hmilligram per hour
    mg/kgmilligram per kilogram
    mg/kg/(24.h)milligram / kilogram / 24 * hour
    mg/kg/dmilligram per kilogram per day
    mg/kg/minmilligram per kilogram per minute
    mg/Lmilligram per liter
    mg/m2milligram per square meter
    mg/m3milligram per cubic meter
    mg/mgmilligram per milligram
    mg/mg{cre}milligram / milligram cre
    mg/minmilligram per minute
    mg/mLmilligram per milliliter
    mg/mmolmilligram per millimole
    mg/mmol{Cre}milligram / millimole Cre
    mg/mmol{creat}milligram per millimole of creatinine
    mg/wkmilligram per week
    mg{Phenylketones}/dLmilligram Phenylketones / deciliter
    minminute
    mLmilliliter
    mL/({h'b}.m2)milliliter / h'b * (meter ^ 2)
    mL/(10.h)milliliter per 10 hour
    mL/(12.h)milliliter per 12 hour
    mL/(2.h)milliliter per 2 hour
    mL/(24.h)milliliter per 24 hour
    mL/(4.h)milliliter per 4 hour
    mL/(72.h)milliliter per 72 hour
    mL/(8.h)milliliter per 8 hour
    mL/(kg.min)milliliter / kilogram * minute
    mL/[sin_i]milliliter per square inch (international)
    mL/{h'b}MilliLitersPerHeartbeat [SI Volume Units]
    mL/cm[H2O]milliliter / centimeter of water column
    mL/dmilliliter per day
    mL/dLmilliliter per deciliter
    mL/hmilliliter per hour
    mL/kgmilliliter per kilogram
    mL/kg/(8.h)milliliter per kilogram per 8 hour
    mL/kg/dmilliliter per kilogram per day
    mL/kg/hmilliliter per kilogram per hour
    mL/kg/minmilliliter per kilogram per minute
    mL/Lmilliliter per liter
    mL/m2milliliter per square meter
    mL/mbarmilliliter per millibar
    mL/minmilliliter per minute
    mL/min/(173.10*-2.m2)milliliter / minute / 173 * (the number ten for arbitrary powers ^ -2) * (meter ^ 2)
    mL/min/{1.73_m2}milliliter per minute per 1.73 square meter
    mL/min/m2milliliter per minute per square meter
    mL/mmmilliliter per millimeter
    mL/smilliliter per second
    mmmillimeter
    mm/hmillimeter per hour
    mm/minmillimeter per minute
    mm[H2O]millimeter of water
    mm[Hg]millimeter of mercury
    mm2square millimeter
    mm3cubic millimeter
    mmolmillimole
    mmol/(12.h)millimole per 12 hour
    mmol/(18.h)millimole per 18 hour
    mmol/(2.h)millimole per 2 hour
    mmol/(24.h)millimole per 24 hour
    mmol/(6.h)millimole per 6 hour
    mmol/(8.h)millimole per 8 hour
    mmol/(8.h.kg)millimole / 8 * hour * kilogram
    mmol/{Tot'Volume}millimole / Tot'Volume
    mmol/dmillimole per day
    mmol/dLmillimole per deciliter
    mmol/gmillimole per gram
    mmol/g{creat}millimole per gram of creatinine
    mmol/g{hemoglobin}millimole per gram of hemoglobin
    mmol/hmillimole per hour
    mmol/h/mg{Hb}millimole per hour per milligram of hemoglobin
    mmol/h/mg{protein}millimole per hour per milligram of protein
    mmol/kgmillimole per kilogram
    mmol/kg/dmillimole per kilogram per day
    mmol/kg/hmillimole per kilogram per hour
    mmol/kg/minmillimole per kilogram per minute
    mmol/kg[H20]millimole per kilogram of water
    mmol/Lmillimole per liter
    mmol/L/smillimole per liter per second
    mmol/mmillimole / meter
    mmol/m2millimole per square meter
    mmol/minmillimole per minute
    mmol/mmolmillimole per millimole
    mmol/molmillimole per mole
    mmol/mol{creat}millimole per mole of creatinine
    mmol/s/Lmillimole per second per liter
    momonth
    molmole
    mol/dmole per day
    mol/kgmole per kilogram
    mol/kg/smole per kilogram per second
    mol/Lmole per liter
    mol/m3mole per cubic meter
    mol/mLmole per milliliter
    mol/molmole per mole
    mol/mol{creat}mole / mole creat
    mol/smole per second
    mosmmilliosmole
    mosm/kgmilliosmole per kilogram
    mosm/Lmilliosmole per liter
    mPamillipascal
    msmillisecond
    mUmillienzyme Unit
    mU/gmillienzyme Unit per gram
    mU/g{Hgb}milliUnit / gram Hgb
    mU/Lmillienzyme Unit per liter
    mU/mgmilliUnit / milligram
    mU/mg{Cre}milliUnit / milligram Cre
    mU/minmilliUnit / minute
    mU/mLmillienzyme Unit per milliliter
    mU/mL/minmillienzyme Unit per milliliter per minute
    mU/mmol{creatinine}millienzyme Unit per millimole of creatinine
    mU/mmol{RBCs}millienzyme Unit per millimole of red blood cells
    mVmilliVolt
    NNewton
    N.cmNewton centimeter
    N.sNewton second
    nCinanoCurie
    ngnanogram
    ng/(24.h)nanogram per 24 hour
    ng/(8.h)nanogram per 8 hour
    ng/(8.h.kg)nanogram / 8 * hour * kilogram
    ng/(kg.d)nanogram / kilogram * day
    ng/(kg.h)nanogram / kilogram * hour
    ng/(kg.min)nanogram / kilogram * minute
    ng/10*6nanogram per million
    ng/dnanogram per day
    ng/dLnanogram per deciliter
    ng/dL/hnanogram / deciliter / hour
    ng/gnanogram per gram
    ng/g{Cre}nanogram / gram Cre
    ng/g{creat}nanogram per gram of creatinine
    ng/hnanogram per hour
    ng/kgnanogram per kilogram
    ng/kg/(8.h)nanogram per kilogram per 8 hour
    ng/kg/hnanogram per kilogram per hour
    ng/kg/minnanogram per kilogram per minute
    ng/Lnanogram per liter
    ng/m2nanogram per square meter
    ng/mgnanogram per milligram
    ng/mg/hnanogram per milligram per hour
    ng/mg{Protein}nanogram / milligram Protein
    ng/minnanogram per minute
    ng/mLnanogram per millliiter
    ng/mL/hnanogram per milliliter per hour
    ng/mL{rbc}nanogram / milliliter rbc
    ng/snanogram per second
    nkatnanokatal
    nLnanoliter
    nmnanometer
    nm/s/Lnanometer per second per liter
    nmolnanomole
    nmol/(24.h)nanomole per 24 hour
    nmol/dnanomole per day
    nmol/dLnanomole per deciliter
    nmol/gnanomole per gram
    nmol/g{Cre}nanomole / gram Cre
    nmol/g{creat}nanomole per gram of creatinine
    nmol/g{dry_wt}nanomole per gram of dry weight
    nmol/h/Lnanomole per hour per liter
    nmol/h/mg{protein}nanomole per hour per milligram of protein
    nmol/h/mLnanomole per hour per milliliter
    nmol/Lnanomole per liter
    nmol/L/mmol{creat}nanomole per liter per millimole of creatinine
    nmol/L/snanomole per liter per second
    nmol/L{RBCs}nanomole per liter of red blood cells
    nmol/m/mg{protein}nanomole per meter per milligram of protein
    nmol/mgnanomole per milligram
    nmol/mg/hnanomole per milligram per hour
    nmol/min/mg{hemoglobin}nanomole per minute per milligram of hemoglobin
    nmol/min/mg{protein}nanomole per minute per milligram of protein
    nmol/min/mLnanomole per minute per milliliter
    nmol/mLnanomole per milliliter
    nmol/mL/hnanomole per milliliter per hour
    nmol/mL/minnanomole per milliliter per minute
    nmol/mmolnanomole per millimole
    nmol/mmol{Cre}nanomole / millimole Cre
    nmol/mmol{creat}nanomole per millimole of creatinine
    nmol/molnanomole per mole
    nmol/nmolnanomole per nanomole
    nmol/snanomole per second
    nmol/s/Lnanomole per second per liter
    nmol/umol{creat}nanomole per micromole of creatinine
    nsnanosecond
    OhmOhm
    osm/kgosmole per kilogram
    osm/Losmole per liter
    PaPascal
    pgpicogram
    pg/dLpicogram per deciliter
    pg/Lpicogram per liter
    pg/mgpicogram per milligram
    pg/mLpicogram per milliliter
    pg/mmpicogram per millimeter
    pkatpicokatal
    pLpicoliter
    pmpicometer
    pmolpicomole
    pmol/dpicomole per day
    pmol/dLpicomole per deciliter
    pmol/gpicomole per gram
    pmol/h/mg{protein}picomole per hour per milligram of protein
    pmol/h/mLpicomole per hour per milliliter
    pmol/Lpicomole per liter
    pmol/mg{protein}picomole per milligram of protein
    pmol/minpicomole per minute
    pmol/min/mg{protein}picomole per minute per milligram of protein
    pmol/mLpicomole per milliliter
    pmol/mmolpicomole per millimole
    pmol/mmol{creat}picomole per millimole of creatinine
    pmol/molpicomole per mole
    pmol/umolpicomole per micromole
    pmol/umol{creat}picomole per micromole of creatinine
    pspicosecond
    pTpicotesla
    ssecond
    StStokes
    ttonne
    Uenzyme Unit
    U/(1.h)enzyme Unit per 1 hour
    U/(12.h)enzyme unit per 12 hour
    U/(18.h)enzyme Unit per 18 hour
    U/(2.h)enzyme unit per 2 hour
    U/(24.h)enzyme unit per 24 hour
    U/10*10{cells}enzyme unit per 10 billion cells
    U/10*12enzyme unit per trillion
    U/10*6enzyme unit per million
    U/10*9enzyme unit per billion
    U/denzyme unit per day
    U/dLenzyme unit per deciliter
    U/genzyme unit per gram
    U/g{Cre}Unit / gram Cre
    U/g{Hb}enzyme unit per gram of hemoglobin
    U/g{hemoglobin}enzyme Unit per gram of hemoglobin
    U/g{Hgb}UnitsPerGramHemoglobin
    U/henzyme unit per hour
    U/kg/hUnit / kilogram / hour
    U/kg{Hb}enzyme unit per kilogram of hemoglobin
    U/kg{hemoglobin}enzyme Unit per kilogram of hemoglobin
    U/Lenzyme unit per liter
    U/minenzyme unit per minute
    U/mLenzyme unit per milliliter
    U/mL{RBC}Unit / milliliter RBC
    U/mL{RBCs}enzyme unit per milliliter of red blood cells
    U/mmol{creat}enzyme unit per millimole of creatinine
    U/molenzyme Unit per mole
    U/senzyme unit per second
    U/umolenzyme Unit per micromole
    u[IU]micro international unit
    u[IU]/Lmicrointernational unit per liter
    u[IU]/mLmicro international unit per milliliter
    ueqmicroequivalents
    ueq/Lmicroequivalent per liter
    ueq/mLmicroequivalent per milliliter
    ugmicrogram
    ug/(24.h)microgram per 24 hour
    ug/(8.h)microgram per 8 hour
    ug/(kg.d)microgram / kilogram * day
    ug/(kg.h)microgram / kilogram * hour
    ug/{Specimen}microgram / Specimen
    ug/{TotalVolume}MicroGramsPerTotalVolume
    ug/dmicrogram per day
    ug/dLmicrogram per deciliter
    ug/dL{rbc}microgram / deciliter rbc
    ug/gmicrogram per gram
    ug/g{Cre}microgram / gram Cre
    ug/g{creat}microgram per gram of creatinine
    ug/g{DryWeight}microgram / gram DryWeight
    ug/g{Hgb}microgram / gram Hgb
    ug/g{Tissue}microgram / gram Tissue
    ug/hmicrogram per hour
    ug/kgmicrogram per kilogram
    ug/kg/(8.h)microgram per kilogram per 8 hour
    ug/kg/dmicrogram per kilogram per day
    ug/kg/hmicrogram per kilogram per hour
    ug/kg/minmicrogram per kilogram per minute
    ug/Lmicrogram per liter
    ug/L/(24.h)microgram per liter per 24 hour
    ug/L{DDU}microgram / liter DDU
    ug/m2microgram per square meter
    ug/mgmicrogram per milligram
    ug/mg{Cre}microgram / milligram Cre
    ug/mg{creat}microgram per milligram of creatinine
    ug/minmicrogram per minute
    ug/mLmicrogram per milliliter
    ug/mL{FEU}microgram / milliliter FEU
    ug/mmolmicrogram per millimole
    ug/ngmicrogram per nanogram
    ug{T4}/dLmicrogram T4 / deciliter
    ukatmicrokatal
    uLmicroliter
    uL/(2.h)microliter per 2 hour
    uL/hmicroliter per hour
    ummicrometer
    um/smicrometer per second
    umolmicromole
    umol/(24.h)micromole per 24 hour
    umol/dmicromole per day
    umol/dLmicromole per deciliter
    umol/gmicromole per gram
    umol/g{Cre}micromole / gram Cre
    umol/g{creat}micromole per gram of creatinine
    umol/g{Hb}micromole per gram of hemoglobin
    umol/g{hemoglobin}micromole per gram of hemoglobin
    umol/g{Hgb}micromole / gram Hgb
    umol/hmicromole per hour
    umol/h/gmicromole / hour / gram
    umol/h/Lmicromole per hour per liter
    umol/h/mg{protein}micromole per hour per milligram of protein
    umol/kgmicromole per kilogram
    umol/Lmicromole per liter
    umol/L/hmicromole per liter per hour
    umol/L{rbc}micromole per liter of red blood cells
    umol/mmicromole / meter
    umol/mgmicromole per milligram
    umol/mg{Cre}micromole / milligram Cre
    umol/minmicromole per minute
    umol/min/gmicromole per minute per gram
    umol/min/g{prot}micromole / minute / gram prot
    umol/min/g{protein}micromole per minute per gram of protein
    umol/min/Lmicromole per minute per liter
    umol/mLmicromole per milliliter
    umol/mL/minmicromole per milliliter per minute
    umol/mmolmicromole per millimole
    umol/molmicromole per mole
    umol/mol{Cre}micromole / mole Cre
    umol/mol{creat}micromole per mole of creatinine
    umol/mol{Hb}micromole per mole of hemoglobin
    umol/umolmicromole per micromole
    uOhmmicroOhm
    usmicrosecond
    uUmicroUnit
    uU/gmicro enzyme unit per gram
    uU/Lmicro enzyme unit per liter
    uU/mLmicro enzyme unit per milliliter
    uVmicrovolt
    Vvolt
    wkweek
    10.uN.s/(cm5.m2)10 micronewton second per centimeter to the fifth power per square meter
    10*4/uL10 thousand per microliter
    24.h24 hour
    AAmpère
    {ARU}aspirin response unit
    atmstandard atmosphere
    ag/{cell}attogram per cell
    BqBecquerel
    {binding_index}binding index
    [bdsk'U]Bodansky unit
    {CAG_repeats}CAG trinucleotide repeats
    calcalorie
    cm[H2O]/s/mcentimeter of water per second per meter
    {delta_OD}change in (delta) optical density
    {copies}copies
    {count}count
    {CPM}counts per minute
    {CPM}/10*3{cell}counts per minute per thousand cells
    daL/mindekaliter per minute
    daL/min/m2dekaliter per minute per square meter
    {dilution}dilution
    dyn.s/cmdyne second per centimeter
    dyn.s/(cm.m2)dyne second per centimeter per square meter
    {Ehrlich'U}/100.gEhrlich unit per 100 gram
    {EIA_index}EIA index
    {EIA_titer}EIA titer
    {EV}EIA value
    U/10enzyme unit per 10
    U/10*10enzyme unit per 10 billion
    U/(10.g){feces}enzyme unit per 10 gram of feces
    U/g{creat}enzyme unit per gram of creatinine
    U/g{protein}enzyme unit per gram of protein
    U{25Cel}/Lenzyme unit per liter at 25 deg Celsius
    U{37Cel}/Lenzyme unit per liter at 37 deg Celsius
    U/10*12{RBCs}enzyme unit per trillion red blood cells
    FFarad
    fmol/mg{cytosol_protein}femtomole per milligram of cytosol protein
    fmol/mg{protein}femtomole per milligram of protein
    {FIU}fluorescent intensity unit
    {fraction}fraction
    {GAA_repeats}GAA trinucleotide repeats
    {genomes}/mLgenomes per milliliter
    {Globules}/[HPF]globules (drops) per high power field
    g.m/{beat}gram meter per heart beat
    g{creat}gram of creatinine
    g{Hb}gram of hemoglobin
    g{total_nit}gram of total nitrogen
    g{total_prot}gram of total protein
    g{wet_tissue}gram of wet tissue
    g/kg/(8.h)gram per kilogram per 8 hour
    g/(8.h){shift}gram per 8 hour shift
    g/cm3gram per cubic centimeter
    g/g{globulin}gram per gram of globulin
    g/kg/(8.h){shift}gram per kilogram per 8 hour shift
    g/kg/hgram per kilogram per hour
    g/kg/mingram per kilogram per minute
    g/mol{creat}gram per mole of creatinine
    g/{specimen}gram per specimen
    g/{total_output}gram per total output
    g/{total_weight}gram per total weight
    GyGray
    {beats}/minheart beats per minute
    HHenry
    [HPF]high power field
    [GPL'U]/mLIgG anticardiolipin unit per milliliter**
    {GPS'U}IgG antiphosphatidylserine unit
    [MPL'U]/mLIgM anticardiolipin unit per milliliter**
    {ISR}immune status ratio
    {IFA_index}immunofluorescence assay index
    {IFA_titer}Immunofluorescence assay titer
    [in_i'H2O]inch (international) of water
    {index_val}index value
    {HA_titer}influenza hemagglutination titer
    [IU]international unit
    [IU]/L{37Cel}international unit per liter at 37 degrees Celsius
    [IU]/mg{creat}international unit per milligram of creatinine
    katkatal
    kUkilo enzyme unit
    kU/L{class}kilo enzyme unit per liter class
    kcal/dkilocalorie per day
    kcal/kg/(24.h)kilocalorie per kilogram per 24 hour
    kcal/[oz_av]kilocalorie per ounce (US & British)
    [ka'U]King Armstrong unit
    L/(24.h)liter per 24 hour
    L/s/s2liter per second per square second
    {Log_copies}/mLlog (base 10) copies per milliliter
    {Log_IU}log (base 10) international unit
    {Log_IU}/mLlog (base 10) international unit per milliliter
    {Log}log base 10
    [LPF]low power field
    lmlumen
    lm.m2lumen square meter
    {Lyme_index_value}Lyme index value
    [mclg'U]Mac Lagan unit
    Msmegasecond
    ug/g{feces}microgram per gram of feces
    ug{FEU}/mLmicrogram fibrinogen equivalent unit per milliliter
    ug/(100.g)microgram per 100 gram
    ug/m3microgram per cubic meter
    ug/dL{RBCs}microgram per deciliter of red blood cells
    ug/g{dry_tissue}microgram per gram of dry tissue
    ug/g{dry_wt}microgram per gram of dry weight
    ug/g{hair}microgram per gram of hair
    ug/g{Hb}microgram per gram of hemoglobin
    ug/g{tissue}microgram per gram of tissue
    ug/L{RBCs}microgram per liter of red blood cells
    ug/mL{class}microgram per milliliter class
    ug/mL{eqv}microgram per milliliter equivalent
    ug/mmol{creat}microgram per millimole of creatinine
    ug/{specimen}microgram per specimen
    ug/[sft_i]microgram per square foot (international)
    umol{BCE}/molmicromole bone collagen equivalent per mole
    umol/(2.h)micromole per 2 hour
    umol/(8.h)micromole per 8 hour
    umol/dL{GF}micromole per deciliter of glomerular filtrate
    umol/kg{feces}micromole per kilogram of feces
    umol/L{RBCs}micromole per liter of red blood cells
    umol/umol{creat}micromole per micromole of creatinine
    umol/mg{creat}micromole per milligram of creatinine
    umol/mmol{creat}micromole per millimole of creatinine
    umol/min/g{mucosa}micromole per minute per gram of mucosa
    mU/mmol{creat}milli enzyme unit per millimole of creatinine
    mU/g{Hb}milli enzyme unit per gram of hemoglobin
    mU/g{protein}milli enzyme unit per gram of protein
    mU/mg{creat}milli enzyme unit per milligram of creatinine
    mbar/L/smillibar per liter per second
    meq/g{creat}milliequivalent per gram of creatinine
    meq/{specimen}milliequivalent per specimen
    meq/{total_volume}milliequivalent per total volume
    mg{FEU}/Lmilligram fibrinogen equivalent unit per liter
    mg/(6.h)milligram per 6 hour
    mg/{collection}milligram per collection
    mg/d/{1.73_m2}milligram per day per 1.73 square meter
    mg/dL{RBCs}milligram per deciliter of red blood cells
    mg/g{dry_tissue}milligram per gram of dry tissue
    mg/g{feces}milligram per gram of feces
    mg/g{tissue}milligram per gram of tissue
    mg/g{wet_tissue}milligram per gram of wet tissue
    mg/kg/(8.h)milligram per kilogram per 8 hour
    mg/kg/hmilligram per kilogram per hour
    mg/L{RBCs}milligram per liter of red blood cells
    mg/mg{creat}milligram per milligram of creatinine
    mg/{specimen}milligram per specimen
    mg/{total_output}milligram per total output
    mg/{total_volume}milligram per total volume
    mL{fetal_RBCs}milliliter of fetal red blood cells
    mL/(5.h)milliliter per 5 hour
    mL/(6.h)milliliter per 6 hour
    mL/{beat}milliliter per heart beat
    mL/{beat}/m2milliliter per heart beat per square meter
    mmol/(5.h)millimole per 5 hour
    mmol/{ejaculate}millimole per ejaculate
    mmol/kg/(8.h)millimole per kilogram per 8 hour
    mmol/L{RBCs}millimole per liter of red blood cells
    mmol/mmol{urea}millimole per millimole of urea
    mmol/mmol{creat}millimole per millmole of creatinine
    mmol/{specimen}millimole per specimen
    mmol/{total_vol}millimole per total volume
    10*6.[CFU]/Lmillion colony forming unit per liter
    10*6.[IU]million international unit
    10*6/(24.h)million per 24 hour
    mPa.smillipascal second
    {minidrop}/minminidrop per minute
    {minidrop}/sminidrop per second
    {molecule}/{platelet}molecule per platelet
    {mm/dd/yyyy}month-day-year
    {mutation}mutation
    nU/mLnanoenzyme unit per milliliter
    nU/{RBC}nanoenzyme unit per red blood cell
    ng{FEU}/mLnanogram fibrinogen equivalent unit per milliliter
    ng/Unanogram per enzyme unit
    ng/mg{creat}nanogram per milligram of creatinine
    ng/mg{protein}nanogram per milligram of protein
    ng/mL{RBCs}nanogram per milliliter of red blood cells
    ng/10*6{RBCs}nanogram per million red blood cells
    nmol{BCE}nanomole bone collagen equivalent
    nmol{BCE}/Lnanomole bone collagen equivalent per liter
    nmol{BCE}/mmol{creat}nanomole bone collagen equivalent per millimole of creatinine
    nmol{1/2cys}/mg{protein}nanomole of 1/2 cystine per milligram of protein
    nmol{ATP}nanomole of ATP
    nmol/dL{GF}nanomole per deciliter of glomerular filtrate
    nmol/mg{creat}nanomole per milligram of creatinine
    nmol/mg{protein}nanomole per milligram of protein
    nmol/mg{protein}/hnanomole per milligram of protein per hour
    nmol/minnanomole per minute
    nmol/min/mg{Hb}nanomole per minute per milligram of hemoglobin
    nmol/min/10*6{cells}nanomole per minute per million cells
    {#}/[HPF]number per high power field
    {#}/Lnumber per liter
    {#}/[LPF]number per low power field
    {#}/uLnumber per microliter
    {#}/mLnumber per milliliter
    {#}/minnumber per minute
    Ohm.mOhm meter
    osmosmole
    {Pan_Bio'U}panbio unit
    /10*4{RBCs}per 10 thousand red blood cells
    /m3per cubic meter
    /{entity}per entity
    /g{Hb}per gram of hemoglobin
    /g{tot_nit}per gram of total nitrogen
    /g{tot_prot}per gram of total protein
    /g{wet_tis}per gram of wet tissue
    /[IU]per international unit
    /kg{body_wt}per kilogram of body weight
    /mmper millimeter
    /mmol{creat}per millimole of creatinine
    /{OIF}per oil immersion field
    /10*3per thousand
    /10*3.{RBCs}per thousand red blood cells
    /10*12{RBCs}per trillion red blood cells
    %{loss_AChR}percent loss of acetylcholine receptor
    %{penetration}percent penetration
    %{abnormal}percent abnormal
    %{activity}percent activity
    %{aggregation}percent aggregation
    %{at_60_min}percent at 60 minute
    %{basal_activity}percent basal activity
    %{binding}percent binding
    %{blockade}percent blockade
    %{blocked}percent blocked
    %{bound}percent bound
    %{breakdown}percent breakdown
    %{deficient}percent deficient
    %{dose}percent dose
    %{excretion}percent excretion
    %{Hb}percent hemoglobin
    %{hemolysis}percent hemolysis
    %{index}percent index
    %{inhibition}percent inhibition
    %{loss}percent loss
    %{lysis}percent lysis
    %{normal}percent normal
    %{normal_pooled_plasma}percent normal pooled plasma
    %{bacteria}percent of bacteria
    %{baseline}percent of baseline
    %{cells}percent of cells
    %{RBCs}percent of red blood cells
    %{WBCs}percent of white blood cells
    %{positive}percent positive
    %{reactive}percent reactive
    %{recovery}percent recovery
    %{reference}percent reference
    %{residual}percent residual
    %{saturation}percent saturation
    %{total}percent total
    %{uptake}percent uptake
    %{viable}percent viable
    {percentile}percentile
    {phenotype}phenotype
    pApicoampere
    pg/{cell}picogram per cell
    pg/mg{creat}picogram per milligram of creatinine
    pg/{RBC}picogram per red blood cell
    pmol/(24.h)picomole per 24 hour
    pmol/{RBC}picomole per red blood cell
    [pt_us]pint
    %{relative}relative percent
    {relative_saturation}relative saturation
    {Rubella_virus}rubella virus
    {saturation}saturation
    s/{control}second per control
    SSiemens
    SvSievert
    {s_co_ratio}signal to cutoff ratio
    {STDV}standard deviation
    TTesla
    10*3{copies}/mLthousand copies per milliliter
    10*3{RBCs}thousand red blood cells
    {TSI_index}thyroid-stimulating immunoglobulin index
    WbWeber
    {WBCs}white blood cells
    11*
    'minute
    ''second
    %[slope]percent of slope
    %{Bound}PercentBound
    /100{Spermatozoa}Per100Spermatozoa
    /g{HGB}PerGramHemoglobin
    [acr_br]acre
    [acr_us]acre
    [Amb'a'1'U]Amb a 1 units
    [bbl_us]barrel
    [bf_i]board foot
    [Btu]British thermal unit
    [Btu_39]British thermal unit at 39 °F
    [Btu_59]British thermal unit at 59 °F
    [Btu_60]British thermal unit at 60 °F
    [Btu_IT]international table British thermal unit
    [Btu_m]mean British thermal unit
    [Btu_th]thermochemical British thermal unit
    [bu_br]bushel
    [bu_us]bushel
    [c]velocity of light
    [Cal]nutrition label Calories
    [car_Au]carat of gold alloys
    [car_m]metric carat
    [CCID_50]CELL CULTURE INFECTIOUS DOSE 50%
    [cft_i]cubic foot
    [ch_br]Gunter's chain
    [ch_us]Gunter's chain Surveyor's chain
    [cicero]cicero Didot's pica
    [cml_i]circular mil
    [cr_i]cord
    [crd_us]cord
    [cyd_i]cubic yard
    [D'ag'U]D-ANTIGEN UNITS
    [didot]didot Didot's point
    [diop]diopter
    [dpt_us]dry pint
    [dqt_us]dry quart
    [dr_ap]dram drachm
    [dye'U]Dye unit
    [e]elementary charge
    [eps_0]permittivity of vacuum
    [fdr_br]fluid dram
    [FFU]FOCUS-FORMING UNITS
    [ft_br]foot
    [ft_us]foot
    [fth_br]fathom
    [fth_us]fathom
    [fur_us]furlong
    [G]Newtonian constant of gravitation
    [gal_wi]historical winchester gallon
    [gil_br]gill
    [gil_us]gill
    [h]Planck constant
    [hd_i]hand
    [hnsf'U]Hounsfield unit
    [HP]horsepower
    [hp_C]HOMEOPATHIC POTENCY OF CENTESIMAL SERIES
    [hp_M]HOMEOPATHIC POTENCY OF MILLESIMAL SERIES
    [hp_Q]HOMEOPATHIC POTENCY OF QUINTAMILLESIMAL SERIES
    [hp_X]HOMEOPATHIC POTENCY OF DECIMAL SERIES
    [in_br]inch
    [in_i'Hg]inch of mercury column
    [in_us]inch
    [iU]/dLInternationalUnitsPerDeciLiter
    [iU]/gInternationalUnitsPerGram
    [iU]/kgInternationalUnitsPerKilogram
    [iU]/LInternationalUnitsPerLiter
    [iU]/mLInternationalUnitsPerMilliLiter
    [k]Boltzmann constant
    [kn_br]knot
    [kn_i]knot
    [knk'U]Kunkel unit
    [lb_ap]pound
    [lb_tr]pound
    [lbf_av]pound force
    [lcwt_av]long hunderdweight British hundredweight
    [Lf]LIMIT OF FLOCCULATION
    [ligne]ligne French line
    [lk_br]link for Gunter's chain
    [lk_us]link for Gunter's chain
    [lne]line
    [lton_av]long ton British ton
    [ly]light-year
    [m_e]electron mass
    [m_p]proton mass
    [mesh_i]mesh
    [MET]metabolic equivalent
    [mi_br]mile
    [mil_i]mil
    [mil_us]mil
    [min_br]minim
    [mu_0]permeability of vacuum
    [nmi_br]nautical mile
    [oz_ap]ounce (US and British)
    [pc_br]pace
    [pca]pica
    [pca_pr]Printer's pica
    [p'diop]prism diopter
    [PFU]PLAQUE-FORMING UNITS
    [pi]the number pi
    [pied]pied French foot
    [pk_br]peck
    [pk_us]peck
    [pnt]point
    [pnt_pr]Printer's point
    [PNU]PROTEIN NITROGEN UNITS
    [pouce]pouce French inch
    [PRU]peripheral vascular resistance unit
    [pwt_tr]pennyweight
    [rch_us]Ramden's chain Engineer's chain
    [rd_br]rod
    [rd_us]rod
    [rlk_us]link for Ramden's chain
    [S]Svedberg unit
    [sc_ap]scruple
    [sct]section
    [scwt_av]short hundredweight U.S. hundredweight
    [smgy'U]Somogyi unit
    [smi_us]square mile
    [smoot]Smoot
    [srd_us]square rod
    [stone_av]stone British stone
    [TCID_50]TISSUE CULTURE INFECTIOUS DOSE 50%
    [twp]township
    [USP'U]UNITED STATES PHARMACOPEIA UNIT
    [yd_br]yard
    [yd_us]yard
    {Cells}/uLCellsPerMicroLiter
    {Copies}/mLCopiesPerMilliLiter
    {Ct}crossing threshold
    {Ehrlich_U}/dLEhrlichUnitsPerDeciLiter
    {EhrlichU}/dLEhrlichUnitsPerDeciLiter [Arbitrary Concentration Units]
    {Elisa_U}/mLElisaUnitsPerMilliLiter
    {ElisaU}/mLElisaUnitsPerMilliLiter [Arbitrary Concentration Units]
    {kp_C}HOMEOPATHIC POTENCY OF CENTESIMAL KORSAKOVIAN SERIES
    {rbc}red blood cell count
    {Spermatozoa}/mLSpermatozoaPerMilliLiter
    {tbl}tablets
    {tot}particles total count
    10*the number ten for arbitrary powers
    10^the number ten for arbitrary powers
    a_gmean Gregorian year
    a_jmean Julian year
    a_ttropical year
    AoÅngström
    arare
    AUastronomic unit
    bbarn
    Bbel
    B[kW]bel kilowatt
    B[mV]bel millivolt
    B[SPL]bel sound pressure
    B[uV]bel microvolt
    B[V]bel volt
    B[W]bel watt
    Bdbaud
    BiBiot
    bitbit
    bit_sbit
    Bybyte
    CCoulomb
    cal_[15]calorie at 15 °C
    cal_[20]calorie at 20 °C
    cal_ITinternational table calorie
    cal_mmean calorie
    cal_ththermochemical calorie
    cdcandela
    CiCURIE
    circcircle
    dyndyne
    GGauss
    g%gram percent
    g.m/{H.B.}gram meter per heartbeat
    GalGal
    GbGilbert
    gfgram-force
    gongon grade
    k[iU]/mLKiloInternationalUnitsPerMilliLiter
    kg{wet'tis}kilogram of wet tissue
    KyKayser
    LmbLambert
    lxlux
    m[H2O]meter of water column
    m[Hg]meter of mercury column
    mg/{TotalVolume}MilliGramPerTotalVolume
    mg/mg{Cre}MilligramsPerMilligramCreatinine
    mg{creat}milligram of creatinine
    mhomho
    mmol/{TotalVolume}MilliMolesPerTotalVolume [Substance Units]
    mmol/mol{Cre}MilliMolesPerMoleCreatinine
    mo_gmean Gregorian month
    mo_jmean Julian month
    mo_ssynodal month
    MxMaxwell
    Npneper
    OeOersted
    PPoise
    pcparsec
    phphot
    RRoentgen
    radradian
    RADradiation absorbed dose
    REMradiation equivalent man
    sbstilb
    sphspere
    srsteradian
    ststere
    uunified atomic mass unit
    uCiMICROCURIE
    WWatt
+
+
+ + Valueset "security-event-action" to support automated processing + http://hl7.org/fhir/vs/security-event-action + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SecurityEventAction

Indicator for type of action performed during the event that generated the audit.

This value set defines its own terms in the system http://hl7.org/fhir/security-event-action

CodeDisplayDefinition
C CreateCreate a new database object, such as Placing an Order.
R Read/View/PrintDisplay or print data, such as a Doctor Census.
U UpdateUpdate data, such as Revise Patient Information.
D DeleteDelete items, such as a doctor master file record.
E ExecutePerform a system or application function such as log-on, program execution or use of an object's method, or perform a query/search operation.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SecurityEventAction

Indicator for type of action performed during the event that generated the audit.

This value set defines its own terms in the system http://hl7.org/fhir/security-event-action

CodeDisplayDefinition
C CreateCreate a new database object, such as Placing an Order.
R Read/View/PrintDisplay or print data, such as a Doctor Census.
U UpdateUpdate data, such as Revise Patient Information.
D DeleteDelete items, such as a doctor master file record.
E ExecutePerform a system or application function such as log-on, program execution or use of an object's method, or perform a query/search operation.
+
+
+ + Valueset "diagnostic-report-status" to support automated processing + http://hl7.org/fhir/vs/diagnostic-report-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DiagnosticReportStatus

The status of the diagnostic report as a whole

This value set defines its own terms in the system http://hl7.org/fhir/diagnostic-report-status

CodeDisplayDefinition
registered The existence of the report is registered, but there is nothing yet available.
partial This is a partial (e.g. initial, interim or preliminary) report: data in the report may be incomplete or unverified.
final The report is complete and verified by an authorized person.
corrected The report has been modified subsequent to being Final, and is complete and verified by an authorized person.
amended The report has been modified subsequent to being Final, and is complete and verified by an authorized person, and data has been changed.
appended The report has been modified subsequent to being Final, and is complete and verified by an authorized person. New content has been added, but existing content hasn't changed.
cancelled The report is unavailable because the measurement was not started or not completed (also sometimes called "aborted").
entered in error The report has been withdrawn following previous Final release.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

DiagnosticReportStatus

The status of the diagnostic report as a whole

This value set defines its own terms in the system http://hl7.org/fhir/diagnostic-report-status

CodeDisplayDefinition
registered The existence of the report is registered, but there is nothing yet available.
partial This is a partial (e.g. initial, interim or preliminary) report: data in the report may be incomplete or unverified.
final The report is complete and verified by an authorized person.
corrected The report has been modified subsequent to being Final, and is complete and verified by an authorized person.
amended The report has been modified subsequent to being Final, and is complete and verified by an authorized person, and data has been changed.
appended The report has been modified subsequent to being Final, and is complete and verified by an authorized person. New content has been added, but existing content hasn't changed.
cancelled The report is unavailable because the measurement was not started or not completed (also sometimes called "aborted").
entered in error The report has been withdrawn following previous Final release.
+
+
+ + Valueset "questionnaire-status" to support automated processing + http://hl7.org/fhir/vs/questionnaire-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

QuestionnaireStatus

Lifecycle status of the questionnaire

This value set defines its own terms in the system http://hl7.org/fhir/questionnaire-status

CodeDisplayDefinition
draft draftThis Questionnaire is not ready for official use.
published publishedThis Questionnaire is ready for use.
retired retiredThis Questionnaire should no longer be used to gather data.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

QuestionnaireStatus

Lifecycle status of the questionnaire

This value set defines its own terms in the system http://hl7.org/fhir/questionnaire-status

CodeDisplayDefinition
draft draftThis Questionnaire is not ready for official use.
published publishedThis Questionnaire is ready for use.
retired retiredThis Questionnaire should no longer be used to gather data.
+
+
+ + Valueset "medication-dispense-status" to support automated processing + http://hl7.org/fhir/vs/medication-dispense-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

MedicationDispenseStatus

A code specifying the state of the dispense event.

Describes the lifecycle of the dispense.

This value set defines its own terms in the system http://hl7.org/fhir/medication-dispense-status

CodeDisplayDefinitionv3 Map (ctStatus)
in progress The dispense has started but has not yet completed.active
on hold Actions implied by the administration have been temporarily halted, but are expected to continue later. May also be called "suspended".suspended
completed All actions that are implied by the dispense have occurred.completed
entered in error The dispense was entered in error and therefore nullified.nullified
stopped Actions implied by the dispense have been permanently halted, before all of them occurred.aborted
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

MedicationDispenseStatus

A code specifying the state of the dispense event.

Describes the lifecycle of the dispense.

This value set defines its own terms in the system http://hl7.org/fhir/medication-dispense-status

CodeDisplayDefinitionv3 Map (ctStatus)
in progress The dispense has started but has not yet completed.active
on hold Actions implied by the administration have been temporarily halted, but are expected to continue later. May also be called "suspended".suspended
completed All actions that are implied by the dispense have occurred.completed
entered in error The dispense was entered in error and therefore nullified.nullified
stopped Actions implied by the dispense have been permanently halted, before all of them occurred.aborted
+
+
+ + Valueset "causalityExpectation" to support automated processing + http://hl7.org/fhir/vs/causalityExpectation + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

CausalityExpectation

How likely is it that the given exposure caused a reaction

This value set defines its own terms in the system http://hl7.org/fhir/causalityExpectation

CodeDisplayDefinition
likely Likely that this specific exposure caused the reaction.
unlikely Unlikely that this specific exposure caused the reaction - the exposure is being linked to for information purposes.
confirmed It has been confirmed that this exposure was one of the causes of the reaction.
unknown It is unknown whether this exposure had anything to do with the reaction.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

CausalityExpectation

How likely is it that the given exposure caused a reaction

This value set defines its own terms in the system http://hl7.org/fhir/causalityExpectation

CodeDisplayDefinition
likely Likely that this specific exposure caused the reaction.
unlikely Unlikely that this specific exposure caused the reaction - the exposure is being linked to for information purposes.
confirmed It has been confirmed that this exposure was one of the causes of the reaction.
unknown It is unknown whether this exposure had anything to do with the reaction.
+
+
+ + Valueset "sensitivitytype" to support automated processing + http://hl7.org/fhir/vs/sensitivitytype + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SensitivityType

The type of an adverse sensitivity

This value set defines its own terms in the system http://hl7.org/fhir/sensitivitytype

CodeDisplayDefinition
allergy Allergic Reaction.
intolerance Non-Allergic Reaction.
unknown Unknown type.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SensitivityType

The type of an adverse sensitivity

This value set defines its own terms in the system http://hl7.org/fhir/sensitivitytype

CodeDisplayDefinition
allergy Allergic Reaction.
intolerance Non-Allergic Reaction.
unknown Unknown type.
+
+
+ + Valueset "filter-operator" to support automated processing + http://hl7.org/fhir/vs/filter-operator + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

FilterOperator

The kind of operation to perform as a part of a property based filter

This value set defines its own terms in the system http://hl7.org/fhir/filter-operator

CodeDisplayDefinition
= The specified property of the code equals the provided value.
is-a The specified property of the code has an is-a relationship with the provided value.
is-not-a The specified property of the code does not have an is-a relationship with the provided value.
regex The specified property of the code matches the regex specified in the provided value.
in The specified property of the code is in the set of codes or concepts specified in the provided value (comma separated list).
not in The specified property of the code is not in the set of codes or concepts specified in the provided value (comma separated list).
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

FilterOperator

The kind of operation to perform as a part of a property based filter

This value set defines its own terms in the system http://hl7.org/fhir/filter-operator

CodeDisplayDefinition
= The specified property of the code equals the provided value.
is-a The specified property of the code has an is-a relationship with the provided value.
is-not-a The specified property of the code does not have an is-a relationship with the provided value.
regex The specified property of the code matches the regex specified in the provided value.
in The specified property of the code is in the set of codes or concepts specified in the provided value (comma separated list).
not in The specified property of the code is not in the set of codes or concepts specified in the provided value (comma separated list).
+
+
+ + Valueset "valueset-supply-dispense-status" to support automated processing + http://hl7.org/fhir/vs/valueset-supply-dispense-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SupplyDispenseStatus

Status of the dispense

This value set defines its own terms in the system http://hl7.org/fhir/valueset-supply-dispense-status

CodeDisplayDefinition
in progress In ProgressSupply has been requested, but not dispensed.
dispensed DispensedSupply is part of a pharmacy order and has been dispensed.
abandoned AbandonedDispensing was not completed.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SupplyDispenseStatus

Status of the dispense

This value set defines its own terms in the system http://hl7.org/fhir/valueset-supply-dispense-status

CodeDisplayDefinition
in progress In ProgressSupply has been requested, but not dispensed.
dispensed DispensedSupply is part of a pharmacy order and has been dispensed.
abandoned AbandonedDispensing was not completed.
+
+
+ + Valueset "participantrequired" to support automated processing + http://hl7.org/fhir/vs/participantrequired + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ParticipantRequired

Is the Participant required to attend the appointment

This value set defines its own terms in the system http://hl7.org/fhir/participantrequired

CodeDisplayDefinition
required The participant is required to attend the appointment.
optional The participant may optionally attend the appointment.
information-only The participant is not required to attend the appointment (appointment is about them, not for them).
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ParticipantRequired

Is the Participant required to attend the appointment

This value set defines its own terms in the system http://hl7.org/fhir/participantrequired

CodeDisplayDefinition
required The participant is required to attend the appointment.
optional The participant may optionally attend the appointment.
information-only The participant is not required to attend the appointment (appointment is about them, not for them).
+
+
+ + Valueset "procedure-relationship-type" to support automated processing + http://hl7.org/fhir/vs/procedure-relationship-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ProcedureRelationshipType

The nature of the relationship with this procedure

This value set defines its own terms in the system http://hl7.org/fhir/procedure-relationship-type

CodeDisplayDefinition
caused-by This procedure had to be performed because of the related one.
because-of This procedure caused the related one to be performed.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ProcedureRelationshipType

The nature of the relationship with this procedure

This value set defines its own terms in the system http://hl7.org/fhir/procedure-relationship-type

CodeDisplayDefinition
caused-by This procedure had to be performed because of the related one.
because-of This procedure caused the related one to be performed.
+
+
+ + Valueset "message-conformance-event-mode" to support automated processing + http://hl7.org/fhir/vs/message-conformance-event-mode + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ConformanceEventMode

The mode of a message conformance statement

This value set defines its own terms in the system http://hl7.org/fhir/message-conformance-event-mode

CodeDisplayDefinition
sender The application sends requests and receives responses.
receiver The application receives requests and sends responses.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ConformanceEventMode

The mode of a message conformance statement

This value set defines its own terms in the system http://hl7.org/fhir/message-conformance-event-mode

CodeDisplayDefinition
sender The application sends requests and receives responses.
receiver The application receives requests and sends responses.
+
+
+ + Valueset "contact-point-use" to support automated processing + http://hl7.org/fhir/vs/contact-point-use + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ContactPointUse

Use of contact point

This value set defines its own terms in the system http://hl7.org/fhir/contact-point-use

CodeDisplayDefinitionv3 Map (AddressUse)v2 Map (0201)
home A communication contact point at a home; attempted contacts for business purposes might intrude privacy and chances are one will contact family or other household members instead of the person one wishes to call. Typically used with urgent cases, or if no other contacts are available.=H>PRN
>ORN
>VHN
work An office contact point. First choice for business related contacts during business hours.=WP~WPN
temp A temporary contact point. The period can provide more detailed information.=TMP
old This contact point is no longer in use (or was never correct, but retained for records).>OLD
>BAD
mobile A telecommunication device that moves and stays with its owner. May have characteristics of all other use codes, suitable for urgent matters, not the first choice for routine business.=MC~PRS
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ContactPointUse

Use of contact point

This value set defines its own terms in the system http://hl7.org/fhir/contact-point-use

CodeDisplayDefinitionv3 Map (AddressUse)v2 Map (0201)
home A communication contact point at a home; attempted contacts for business purposes might intrude privacy and chances are one will contact family or other household members instead of the person one wishes to call. Typically used with urgent cases, or if no other contacts are available.=H>PRN
>ORN
>VHN
work An office contact point. First choice for business related contacts during business hours.=WP~WPN
temp A temporary contact point. The period can provide more detailed information.=TMP
old This contact point is no longer in use (or was never correct, but retained for records).>OLD
>BAD
mobile A telecommunication device that moves and stays with its owner. May have characteristics of all other use codes, suitable for urgent matters, not the first choice for routine business.=MC~PRS
+
+
+ + Valueset "participationstatus" to support automated processing + http://hl7.org/fhir/vs/participationstatus + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ParticipationStatus

The Participation status of an appointment

This value set defines its own terms in the system http://hl7.org/fhir/participationstatus

CodeDisplayDefinition
accepted The participant has accepted the appointment.
declined The participant has declined the appointment and will not participate in the appointment.
tentative The participant has tentatively accepted the appointment. This could be automatically created by a system and requires further processing before it can be accepted. There is no commitment that attendance will occur.
in-process The participant has started the appointment.
completed The participant's involvement in the appointment has been completed.
needs-action The participant needs to indicate if they accept the appointment by changing this status to one of the other statuses.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ParticipationStatus

The Participation status of an appointment

This value set defines its own terms in the system http://hl7.org/fhir/participationstatus

CodeDisplayDefinition
accepted The participant has accepted the appointment.
declined The participant has declined the appointment and will not participate in the appointment.
tentative The participant has tentatively accepted the appointment. This could be automatically created by a system and requires further processing before it can be accepted. There is no commitment that attendance will occur.
in-process The participant has started the appointment.
completed The participant's involvement in the appointment has been completed.
needs-action The participant needs to indicate if they accept the appointment by changing this status to one of the other statuses.
+
+
+ + Valueset "identifier-use" to support automated processing + http://hl7.org/fhir/vs/identifier-use + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

IdentifierUse

Identifies the purpose for this identifier, if known

This value set defines its own terms in the system http://hl7.org/fhir/identifier-use

CodeDisplayDefinition
usual the identifier recommended for display and use in real-world interactions.
official the identifier considered to be most trusted for the identification of this item.
temp A temporary identifier.
secondary An identifier that was assigned in secondary use - it serves to identify the object in a relative context, but cannot be consistently assigned to the same object again in a different context.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

IdentifierUse

Identifies the purpose for this identifier, if known

This value set defines its own terms in the system http://hl7.org/fhir/identifier-use

CodeDisplayDefinition
usual the identifier recommended for display and use in real-world interactions.
official the identifier considered to be most trusted for the identification of this item.
temp A temporary identifier.
secondary An identifier that was assigned in secondary use - it serves to identify the object in a relative context, but cannot be consistently assigned to the same object again in a different context.
+
+
+ + Valueset "ccdaagecodes" to support automated processing + http://hl7.org/fhir/vs/ccdaagecodes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

CCDAAgeCodes

A valueSet of UCUM codes for representing age value units

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in UCUM
    CodeDisplayDefinition
    min
    h
    d
    wk
    mo
    a
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

CCDAAgeCodes

A valueSet of UCUM codes for representing age value units

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in UCUM
    CodeDisplayDefinition
    min
    h
    d
    wk
    mo
    a
+
+
+ + Valueset "criticality" to support automated processing + http://hl7.org/fhir/vs/criticality + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Criticality

The criticality of an adverse sensitivity

This value set defines its own terms in the system http://hl7.org/fhir/criticality

CodeDisplayDefinition
fatal Likely to result in death if re-exposed.
high Likely to result in reactions that will need to be treated if re-exposed.
medium Likely to result in reactions that will inconvenience the subject.
low Not likely to result in any inconveniences for the subject.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Criticality

The criticality of an adverse sensitivity

This value set defines its own terms in the system http://hl7.org/fhir/criticality

CodeDisplayDefinition
fatal Likely to result in death if re-exposed.
high Likely to result in reactions that will need to be treated if re-exposed.
medium Likely to result in reactions that will inconvenience the subject.
low Not likely to result in any inconveniences for the subject.
+
+
+ + Valueset "extension-context" to support automated processing + http://hl7.org/fhir/vs/extension-context + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ExtensionContext

How an extension context is interpreted

This value set defines its own terms in the system http://hl7.org/fhir/extension-context

CodeDisplayDefinition
resource The context is all elements matching a particular resource element path.
datatype The context is all nodes matching a particular data type element path (root or repeating element) or all elements referencing a particular primitive data type (expressed as the datatype name).
mapping The context is all nodes whose mapping to a specified reference model corresponds to a particular mapping structure. The context identifies the mapping target. The mapping should clearly identify where such an extension could be used.
extension The context is a particular extension from a particular profile. Expressed as uri#name, where uri identifies the profile and #name identifies the extension code.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ExtensionContext

How an extension context is interpreted

This value set defines its own terms in the system http://hl7.org/fhir/extension-context

CodeDisplayDefinition
resource The context is all elements matching a particular resource element path.
datatype The context is all nodes matching a particular data type element path (root or repeating element) or all elements referencing a particular primitive data type (expressed as the datatype name).
mapping The context is all nodes whose mapping to a specified reference model corresponds to a particular mapping structure. The context identifies the mapping target. The mapping should clearly identify where such an extension could be used.
extension The context is a particular extension from a particular profile. Expressed as uri#name, where uri identifies the profile and #name identifies the extension code.
+
+
+ + Valueset "modality" to support automated processing + http://hl7.org/fhir/vs/modality + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Modality

Type of data in the instance

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    ARAutorefractionAutorefraction device
    AUAudioAudio object
    BDUSUltrasound Bone DensitometryUltrasound Bone Densitometry (modality)
    BIBiomagnetic imagingBiomagnetic imaging device
    BMDBone Mineral DensitometryBone Mineral Densitometry by X-Ray (modality), including dual-energy X-Ray absorptiometry (DXA) and morphometric X-Ray absorptiometry (MXA)
    CRComputed RadiographyComputed Radiography device
    CTComputed TomographyComputed Tomography device
    DGDiaphanographyDiaphanography device
    DXDigital RadiographyDigital Radiography device
    ECGElectrocardiographyElectrocardiography device
    EPSCardiac ElectrophysiologyCardiac Electrophysiology device
    ESEndoscopyEndoscopy device
    GMGeneral MicroscopyGeneral Microscopy device
    HCHard CopyHard Copy
    HDHemodynamic WaveformHemodynamic Waveform acquisition device
    IOIntra-oral RadiographyIntra-oral Radiography device
    IVOCTIntravascular Optical Coherence TomographyIntravascular Optical Coherence Tomography device
    IVUSIntravascular UltrasoundIntravascular Ultrasound device
    KERKeratometryKeratometry device
    KOKey Object SelectionKey Object Selection object
    LENLensometryLensometry device
    LSLaser surface scanLaser surface scan device
    MGMammographyMammography device
    MRMagnetic ResonanceMagnetic Resonance device
    NMNuclear MedicineNuclear Medicine device
    OAMOphthalmic Axial MeasurementsMeasurements of the axial length of the eye which are done by various devices
    OCTOptical Coherence TomographyModality device that uses an interferometric, non-invasive optical tomographic technique to image 2D slices and 3D volumes of tissue using visible and near visible frequencies.
    OPOphthalmic photographyOphthalmic photography modality
    OPMOphthalmic MappingModality device that measures corneal topography, corneal or retinal thickness, and other similar parameters that are typically displayed as maps.
    OPTOphthalmic TomographyTomography of the eye acquired by a modality that is based on light and optical principles. Tomography based on other principles, such as ultrasound, is excluded.
    OPVOphthalmic Visual FieldModality device that measures visual fields and perform visual perimetry.
    OTOther ModalityOther Modality device
    PRPresentation StatePresentation State object
    PTPositron emission tomographyPositron emission tomography (PET) device
    PXPanoramic X-RayPanoramic X-Ray device
    REGRegistrationRegistration
    RFRadiofluoroscopyRadiofluoroscopy device
    RGRadiographic imagingRadiographic imaging (conventional film/screen)
    RTDOSERadiotherapy DoseRadiotherapy Dose
    RTIMAGERadiotherapy ImageRadiotherapy Imaging device; includes portal imaging
    RTPLANRadiotherapy PlanRadiotherapy Plan
    RTRECORDRadiotherapy Treatment RecordRadiotherapy Treatment Record
    RTSTRUCTRadiotherapy Structure SetRadiotherapy Structure Set
    SEGSegmentationSegmentation
    SMSlide MicroscopySlide Microscopy
    SMRStereometric RelationshipStereometric image pairing modality
    SRStructured Report DocumentStructured Report Document
    SRFSubjective RefractionSubjective Refraction device
    TGThermographyThermography device
    USUltrasoundUltrasound device
    VAVisual AcuityVisual Acuity device
    XAX-Ray AngiographyX-Ray Angiography device
    XCExternal-camera PhotographyExternal-camera Photography device
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Modality

Type of data in the instance

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    ARAutorefractionAutorefraction device
    AUAudioAudio object
    BDUSUltrasound Bone DensitometryUltrasound Bone Densitometry (modality)
    BIBiomagnetic imagingBiomagnetic imaging device
    BMDBone Mineral DensitometryBone Mineral Densitometry by X-Ray (modality), including dual-energy X-Ray absorptiometry (DXA) and morphometric X-Ray absorptiometry (MXA)
    CRComputed RadiographyComputed Radiography device
    CTComputed TomographyComputed Tomography device
    DGDiaphanographyDiaphanography device
    DXDigital RadiographyDigital Radiography device
    ECGElectrocardiographyElectrocardiography device
    EPSCardiac ElectrophysiologyCardiac Electrophysiology device
    ESEndoscopyEndoscopy device
    GMGeneral MicroscopyGeneral Microscopy device
    HCHard CopyHard Copy
    HDHemodynamic WaveformHemodynamic Waveform acquisition device
    IOIntra-oral RadiographyIntra-oral Radiography device
    IVOCTIntravascular Optical Coherence TomographyIntravascular Optical Coherence Tomography device
    IVUSIntravascular UltrasoundIntravascular Ultrasound device
    KERKeratometryKeratometry device
    KOKey Object SelectionKey Object Selection object
    LENLensometryLensometry device
    LSLaser surface scanLaser surface scan device
    MGMammographyMammography device
    MRMagnetic ResonanceMagnetic Resonance device
    NMNuclear MedicineNuclear Medicine device
    OAMOphthalmic Axial MeasurementsMeasurements of the axial length of the eye which are done by various devices
    OCTOptical Coherence TomographyModality device that uses an interferometric, non-invasive optical tomographic technique to image 2D slices and 3D volumes of tissue using visible and near visible frequencies.
    OPOphthalmic photographyOphthalmic photography modality
    OPMOphthalmic MappingModality device that measures corneal topography, corneal or retinal thickness, and other similar parameters that are typically displayed as maps.
    OPTOphthalmic TomographyTomography of the eye acquired by a modality that is based on light and optical principles. Tomography based on other principles, such as ultrasound, is excluded.
    OPVOphthalmic Visual FieldModality device that measures visual fields and perform visual perimetry.
    OTOther ModalityOther Modality device
    PRPresentation StatePresentation State object
    PTPositron emission tomographyPositron emission tomography (PET) device
    PXPanoramic X-RayPanoramic X-Ray device
    REGRegistrationRegistration
    RFRadiofluoroscopyRadiofluoroscopy device
    RGRadiographic imagingRadiographic imaging (conventional film/screen)
    RTDOSERadiotherapy DoseRadiotherapy Dose
    RTIMAGERadiotherapy ImageRadiotherapy Imaging device; includes portal imaging
    RTPLANRadiotherapy PlanRadiotherapy Plan
    RTRECORDRadiotherapy Treatment RecordRadiotherapy Treatment Record
    RTSTRUCTRadiotherapy Structure SetRadiotherapy Structure Set
    SEGSegmentationSegmentation
    SMSlide MicroscopySlide Microscopy
    SMRStereometric RelationshipStereometric image pairing modality
    SRStructured Report DocumentStructured Report Document
    SRFSubjective RefractionSubjective Refraction device
    TGThermographyThermography device
    USUltrasoundUltrasound device
    VAVisual AcuityVisual Acuity device
    XAX-Ray AngiographyX-Ray Angiography device
    XCExternal-camera PhotographyExternal-camera Photography device
+
+
+ + Valueset "data-absent-reason" to support automated processing + http://hl7.org/fhir/vs/data-absent-reason + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DataAbsentReason

Used to specify why the normally expected content of the data element is missing

This value set defines its own terms in the system http://hl7.org/fhir/data-absent-reason

CodeDisplayDefinitionv3 Map (NullFlavor)
unknown The value is not known=UNK
asked The source human does not know the value=ASKU
temp There is reason to expect (from the workflow) that the value may become known=NAV
notasked The workflow didn't lead to this value being known=NASK
masked The information is not available due to security, privacy or related reasons=MSK
unsupported The source system wasn't capable of supporting this element<NA
astext The content of the data is represented in the resource narrative
error Some system or workflow process error means that the information is not available<NA
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

DataAbsentReason

Used to specify why the normally expected content of the data element is missing

This value set defines its own terms in the system http://hl7.org/fhir/data-absent-reason

CodeDisplayDefinitionv3 Map (NullFlavor)
unknown The value is not known=UNK
asked The source human does not know the value=ASKU
temp There is reason to expect (from the workflow) that the value may become known=NAV
notasked The workflow didn't lead to this value being known=NASK
masked The information is not available due to security, privacy or related reasons=MSK
unsupported The source system wasn't capable of supporting this element<NA
astext The content of the data is represented in the resource narrative
error Some system or workflow process error means that the information is not available<NA
+
+
+ + Valueset "group-type" to support automated processing + http://hl7.org/fhir/vs/group-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

GroupType

Types of resources that are part of group

This value set defines its own terms in the system http://hl7.org/fhir/group-type

CodeDisplayDefinition
person Group contains "person" Patient resources.
animal Group contains "animal" Patient resources.
practitioner Group contains healthcare practitioner resources.
device Group contains Device resources.
medication Group contains Medication resources.
substance Group contains Substance resources.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

GroupType

Types of resources that are part of group

This value set defines its own terms in the system http://hl7.org/fhir/group-type

CodeDisplayDefinition
person Group contains "person" Patient resources.
animal Group contains "animal" Patient resources.
practitioner Group contains healthcare practitioner resources.
device Group contains Device resources.
medication Group contains Medication resources.
substance Group contains Substance resources.
+
+
+ + Valueset "document-reference-status" to support automated processing + http://hl7.org/fhir/vs/document-reference-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DocumentReferenceStatus

The status of the document reference

This value set defines its own terms in the system http://hl7.org/fhir/document-reference-status

CodeDisplayDefinitionv3 Map (ActStatus)
current This is the current reference for this document.~active
superceded This reference has been superseded by another reference.~obsolete
entered in error This reference was created in error.~nullified
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

DocumentReferenceStatus

The status of the document reference

This value set defines its own terms in the system http://hl7.org/fhir/document-reference-status

CodeDisplayDefinitionv3 Map (ActStatus)
current This is the current reference for this document.~active
superceded This reference has been superseded by another reference.~obsolete
entered in error This reference was created in error.~nullified
+
+
+ + Valueset "issue-type" to support automated processing + http://hl7.org/fhir/vs/issue-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

IssueType

A coded expression of the type of issue

This value set defines its own terms in the system http://hl7.org/fhir/issue-type

CodeDisplayDefinition
invalid Content invalid against Specification or Profile.
..structure content structural issue.
..required required element missing.
..value element value invalid.
..invariant schematron rule.
security authorization/permissions issue.
..login the client needs to initiate the authentication process ().
..unknown user/system not able to be authenticated.
..expired user session expired.
..forbidden user rights failure.
processing processing issues.
..not-supported resource not supported.
..duplicate duplicate resource.
..not-found reference not found.
..too-long existing content too long.
..code-unknown code could not be understood.
..extension extension not recognized.
..too-costly operation denied to protect server resources.
..business-rule content failed to pass some business rule.
..conflict content could not be accepted because of an edit conflict (i.e. version aware updates).
transient transient processing issues.
..lock-error resource/record locking failure.
..no-store persistent store unavailable.
..exception unexpected internal error.
..timeout internal timeout.
..throttled The system is not prepared to handle this request due to load management.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

IssueType

A coded expression of the type of issue

This value set defines its own terms in the system http://hl7.org/fhir/issue-type

CodeDisplayDefinition
invalid Content invalid against Specification or Profile.
..structure content structural issue.
..required required element missing.
..value element value invalid.
..invariant schematron rule.
security authorization/permissions issue.
..login the client needs to initiate the authentication process ().
..unknown user/system not able to be authenticated.
..expired user session expired.
..forbidden user rights failure.
processing processing issues.
..not-supported resource not supported.
..duplicate duplicate resource.
..not-found reference not found.
..too-long existing content too long.
..code-unknown code could not be understood.
..extension extension not recognized.
..too-costly operation denied to protect server resources.
..business-rule content failed to pass some business rule.
..conflict content could not be accepted because of an edit conflict (i.e. version aware updates).
transient transient processing issues.
..lock-error resource/record locking failure.
..no-store persistent store unavailable.
..exception unexpected internal error.
..timeout internal timeout.
..throttled The system is not prepared to handle this request due to load management.
+
+
+ + Valueset "RS-link" to support automated processing + http://hl7.org/fhir/vs/RS-link + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

RemittanceOutcome

The outcome of the processing.

This value set defines its own terms in the system http://hl7.org/fhir/RS-link

CodeDisplayDefinition
complete The processing completed without errors.
error The processing identified with errors.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

RemittanceOutcome

The outcome of the processing.

This value set defines its own terms in the system http://hl7.org/fhir/RS-link

CodeDisplayDefinition
complete The processing completed without errors.
error The processing identified with errors.
+
+
+ + Valueset "list-mode" to support automated processing + http://hl7.org/fhir/vs/list-mode + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ListMode

The processing mode that applies to this list

This value set defines its own terms in the system http://hl7.org/fhir/list-mode

CodeDisplayDefinition
working This list is the master list, maintained in an ongoing fashion with regular updates as the real world list it is tracking changes.
snapshot This list was prepared as a snapshot. It should not be assumed to be current.
changes The list is prepared as a statement of changes that have been made or recommended.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ListMode

The processing mode that applies to this list

This value set defines its own terms in the system http://hl7.org/fhir/list-mode

CodeDisplayDefinition
working This list is the master list, maintained in an ongoing fashion with regular updates as the real world list it is tracking changes.
snapshot This list was prepared as a snapshot. It should not be assumed to be current.
changes The list is prepared as a statement of changes that have been made or recommended.
+
+
+ + Valueset "nutrition-order-status" to support automated processing + http://hl7.org/fhir/vs/nutrition-order-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

NutritionOrderStatus

TODO

This value set defines its own terms in the system http://hl7.org/fhir/nutrition-order-status

CodeDisplayDefinition
requested RequestedTODO.
active ActiveTODO.
inactive InactiveTODO.
held HeldTODO.
cancelled CancelledTODO.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

NutritionOrderStatus

TODO

This value set defines its own terms in the system http://hl7.org/fhir/nutrition-order-status

CodeDisplayDefinition
requested RequestedTODO.
active ActiveTODO.
inactive InactiveTODO.
held HeldTODO.
cancelled CancelledTODO.
+
+
+ + Valueset "restful-conformance-mode" to support automated processing + http://hl7.org/fhir/vs/restful-conformance-mode + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

RestfulConformanceMode

The mode of a RESTful conformance statement

This value set defines its own terms in the system http://hl7.org/fhir/restful-conformance-mode

CodeDisplayDefinition
client The application acts as a server for this resource.
server The application acts as a client for this resource.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

RestfulConformanceMode

The mode of a RESTful conformance statement

This value set defines its own terms in the system http://hl7.org/fhir/restful-conformance-mode

CodeDisplayDefinition
client The application acts as a server for this resource.
server The application acts as a client for this resource.
+
+
+ + Valueset "reaction-risk-category" to support automated processing + http://hl7.org/fhir/vs/reaction-risk-category + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AdverseReactionRiskCategory

Category of an identified Substance

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-category

CodeDisplayDefinition
food FoodAny substance consumed to provide nutritional support for the body.
medication MedicationSubstances administered to achieve a physiological effect.
environment EnvironmentSubstances that are encountered in the environment.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AdverseReactionRiskCategory

Category of an identified Substance

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-category

CodeDisplayDefinition
food FoodAny substance consumed to provide nutritional support for the body.
medication MedicationSubstances administered to achieve a physiological effect.
environment EnvironmentSubstances that are encountered in the environment.
+
+
+ + Valueset "administrative-gender" to support automated processing + http://hl7.org/fhir/vs/administrative-gender + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AdministrativeGender

The gender of a person used for administrative purposes

This value set defines its own terms in the system http://hl7.org/fhir/administrative-gender

CodeDisplayDefinitionv3 Map (AdministrativeGender)v2 Map (0001)
male Male=M=M
female Female=F=F
other Other<UN>A
>O
unknown Unknown=UNK=U
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AdministrativeGender

The gender of a person used for administrative purposes

This value set defines its own terms in the system http://hl7.org/fhir/administrative-gender

CodeDisplayDefinitionv3 Map (AdministrativeGender)v2 Map (0001)
male Male=M=M
female Female=F=F
other Other<UN>A
>O
unknown Unknown=UNK=U
+
+
+ + Valueset "questionnaire-answers-status" to support automated processing + http://hl7.org/fhir/vs/questionnaire-answers-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

QuestionnaireAnswersStatus

Lifecycle status of the questionnaire answers

This value set defines its own terms in the system http://hl7.org/fhir/questionnaire-answers-status

CodeDisplayDefinition
in progress in progressThis QuestionnaireAnswers has been partially filled out with answers, but changes or additions are still expected to be made to it.
completed completedThis QuestionnaireAnswers has been filled out with answers, and the current content is regarded as definitive.
amended amendedThis QuestionnaireAnswers has been filled out with answers, then marked as complete, yet changes or additions have been made to it afterwards.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

QuestionnaireAnswersStatus

Lifecycle status of the questionnaire answers

This value set defines its own terms in the system http://hl7.org/fhir/questionnaire-answers-status

CodeDisplayDefinition
in progress in progressThis QuestionnaireAnswers has been partially filled out with answers, but changes or additions are still expected to be made to it.
completed completedThis QuestionnaireAnswers has been filled out with answers, and the current content is regarded as definitive.
amended amendedThis QuestionnaireAnswers has been filled out with answers, then marked as complete, yet changes or additions have been made to it afterwards.
+
+
+ + Valueset "appointmentstatus" to support automated processing + http://hl7.org/fhir/vs/appointmentstatus + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AppointmentStatus

The free/busy status of an appointment

This value set defines its own terms in the system http://hl7.org/fhir/appointmentstatus

CodeDisplayDefinition
busy The participant(s) will be unavailable during this appointment.
free The participant(s) will still be available during this appointment.
tentative This appointment has not been confirmed, and may become available.
outofoffice The participant(s) will not be at the usual location.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AppointmentStatus

The free/busy status of an appointment

This value set defines its own terms in the system http://hl7.org/fhir/appointmentstatus

CodeDisplayDefinition
busy The participant(s) will be unavailable during this appointment.
free The participant(s) will still be available during this appointment.
tentative This appointment has not been confirmed, and may become available.
outofoffice The participant(s) will not be at the usual location.
+
+
+ + Valueset "namespace-identifier-type" to support automated processing + http://hl7.org/fhir/vs/namespace-identifier-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

NamespaceIdentifierType

Identifies the style of unique identifier used to identify a namepace

This value set defines its own terms in the system http://hl7.org/fhir/namespace-identifier-type

CodeDisplayDefinition
oid An ISO object identifier. E.g. 1.2.3.4.5.
uuid A universally unique identifier of the form a5afddf4-e880-459b-876e-e4591b0acc11.
uri A uniform resource identifier (ideally a URL - uniform resource locator). E.g. http://unitsofmeasure.org.
other Some other type of unique identifier. E.g HL7-assigned reserved string such as LN for LOINC.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

NamespaceIdentifierType

Identifies the style of unique identifier used to identify a namepace

This value set defines its own terms in the system http://hl7.org/fhir/namespace-identifier-type

CodeDisplayDefinition
oid An ISO object identifier. E.g. 1.2.3.4.5.
uuid A universally unique identifier of the form a5afddf4-e880-459b-876e-e4591b0acc11.
uri A uniform resource identifier (ideally a URL - uniform resource locator). E.g. http://unitsofmeasure.org.
other Some other type of unique identifier. E.g HL7-assigned reserved string such as LN for LOINC.
+
+
+ + Valueset "special-values" to support automated processing + http://hl7.org/fhir/vs/special-values + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SpecialValues

A set of generally useful codes defined so they can be included in value sets

This value set defines its own terms in the system http://hl7.org/fhir/special-values

CodeDisplayDefinition
true trueBoolean true
false falseBoolean false
trace Trace Amount DetectedThe content is greater than zero, but too small to be quantified
sufficient Sufficient QuantityThe specific quantity is not known, but is known to be non-zero and is not specified because it makes up the bulk of the material
withdrawn Value WithdrawnThe value is no longer available
nil known Nil KnownThe are no known applicable values in this context
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SpecialValues

A set of generally useful codes defined so they can be included in value sets

This value set defines its own terms in the system http://hl7.org/fhir/special-values

CodeDisplayDefinition
true trueBoolean true
false falseBoolean false
trace Trace Amount DetectedThe content is greater than zero, but too small to be quantified
sufficient Sufficient QuantityThe specific quantity is not known, but is known to be non-zero and is not specified because it makes up the bulk of the material
withdrawn Value WithdrawnThe value is no longer available
nil known Nil KnownThe are no known applicable values in this context
+
+
+ + Valueset "namespace-status" to support automated processing + http://hl7.org/fhir/vs/namespace-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

NamespaceStatus

Indicates whether the namespace should be used

This value set defines its own terms in the system http://hl7.org/fhir/namespace-status

CodeDisplayDefinition
proposed System has been submitted but not yet approved.
active System is valid for use.
retired System should no longer be used.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

NamespaceStatus

Indicates whether the namespace should be used

This value set defines its own terms in the system http://hl7.org/fhir/namespace-status

CodeDisplayDefinition
proposed System has been submitted but not yet approved.
active System is valid for use.
retired System should no longer be used.
+
+
+ + Valueset "narrative-status" to support automated processing + http://hl7.org/fhir/vs/narrative-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

NarrativeStatus

The status of a resource narrative

This value set defines its own terms in the system http://hl7.org/fhir/narrative-status

CodeDisplayDefinition
generated The contents of the narrative are entirely generated from the structured data in the resource.
extensions The contents of the narrative are entirely generated from the structured data in the resource and some of the content is generated from extensions.
additional The contents of the narrative contain additional information not found in the structured data.
empty the contents of the narrative are some equivalent of "No human-readable text provided for this resource".
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

NarrativeStatus

The status of a resource narrative

This value set defines its own terms in the system http://hl7.org/fhir/narrative-status

CodeDisplayDefinition
generated The contents of the narrative are entirely generated from the structured data in the resource.
extensions The contents of the narrative are entirely generated from the structured data in the resource and some of the content is generated from extensions.
additional The contents of the narrative contain additional information not found in the structured data.
empty the contents of the narrative are some equivalent of "No human-readable text provided for this resource".
+
+
+ + Valueset "order-outcome-code" to support automated processing + http://hl7.org/fhir/vs/order-outcome-code + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

OrderOutcomeStatus

The status of the response to an order

This value set defines its own terms in the system http://hl7.org/fhir/order-outcome-code

CodeDisplayDefinition
pending The order is known, but no processing has occurred at this time.
review The order is undergoing initial processing to determine whether it will be accepted (usually this involves human review).
rejected The order was rejected because of a workflow/business logic reason.
error The order was unable to be processed because of a technical error (i.e. unexpected error).
accepted The order has been accepted, and work is in progress.
cancelled Processing the order was halted at the initiators request.
..replaced The order has been cancelled and replaced by another.
aborted Processing the order was stopped because of some workflow/business logic reason.
complete The order has been completed.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

OrderOutcomeStatus

The status of the response to an order

This value set defines its own terms in the system http://hl7.org/fhir/order-outcome-code

CodeDisplayDefinition
pending The order is known, but no processing has occurred at this time.
review The order is undergoing initial processing to determine whether it will be accepted (usually this involves human review).
rejected The order was rejected because of a workflow/business logic reason.
error The order was unable to be processed because of a technical error (i.e. unexpected error).
accepted The order has been accepted, and work is in progress.
cancelled Processing the order was halted at the initiators request.
..replaced The order has been cancelled and replaced by another.
aborted Processing the order was stopped because of some workflow/business logic reason.
complete The order has been completed.
+
+
+ + Valueset "valueset-supply-status" to support automated processing + http://hl7.org/fhir/vs/valueset-supply-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SupplyStatus

Status of the supply

This value set defines its own terms in the system http://hl7.org/fhir/valueset-supply-status

CodeDisplayDefinition
requested RequestedSupply has been requested, but not dispensed.
dispensed DispensedSupply is part of a pharmacy order and has been dispensed.
received ReceivedSupply has been received by the requestor.
failed FailedThe supply will not be completed because the supplier was unable or unwilling to supply the item.
cancelled CancelledThe orderer of the supply cancelled the request.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SupplyStatus

Status of the supply

This value set defines its own terms in the system http://hl7.org/fhir/valueset-supply-status

CodeDisplayDefinition
requested RequestedSupply has been requested, but not dispensed.
dispensed DispensedSupply is part of a pharmacy order and has been dispensed.
received ReceivedSupply has been received by the requestor.
failed FailedThe supply will not be completed because the supplier was unable or unwilling to supply the item.
cancelled CancelledThe orderer of the supply cancelled the request.
+
+
+ + Valueset "diagnostic-order-priority" to support automated processing + http://hl7.org/fhir/vs/diagnostic-order-priority + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DiagnosticOrderPriority

The clinical priority of a diagnostic order

This value set defines its own terms in the system http://hl7.org/fhir/diagnostic-order-priority

CodeDisplayDefinition
routine RoutineThe order has a normal priority.
urgent UrgentThe order should be urgently.
stat StatThe order is time-critical.
asap ASAPThe order should be acted on as soon as possible.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

DiagnosticOrderPriority

The clinical priority of a diagnostic order

This value set defines its own terms in the system http://hl7.org/fhir/diagnostic-order-priority

CodeDisplayDefinition
routine RoutineThe order has a normal priority.
urgent UrgentThe order should be urgently.
stat StatThe order is time-critical.
asap ASAPThe order should be acted on as soon as possible.
+
+
+ + Valueset "observation-status" to support automated processing + http://hl7.org/fhir/vs/observation-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ObservationStatus

Codes providing the status of an observation

This value set defines its own terms in the system http://hl7.org/fhir/observation-status

CodeDisplayDefinition
registered RegisteredThe existence of the observation is registered, but there is no result yet available.
preliminary This is an initial or interim observation: data may be incomplete or unverified.
final The observation is complete and verified by an authorized person.
amended The observation has been modified subsequent to being Final, and is complete and verified by an authorized person.
cancelled The observation is unavailable because the measurement was not started or not completed (also sometimes called "aborted").
entered in error The observation has been withdrawn following previous Final release.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ObservationStatus

Codes providing the status of an observation

This value set defines its own terms in the system http://hl7.org/fhir/observation-status

CodeDisplayDefinition
registered RegisteredThe existence of the observation is registered, but there is no result yet available.
preliminary This is an initial or interim observation: data may be incomplete or unverified.
final The observation is complete and verified by an authorized person.
amended The observation has been modified subsequent to being Final, and is complete and verified by an authorized person.
cancelled The observation is unavailable because the measurement was not started or not completed (also sometimes called "aborted").
entered in error The observation has been withdrawn following previous Final release.
+
+
+ + Valueset "NT-link" to support automated processing + http://hl7.org/fhir/vs/NT-link + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

NoteType

The presentation types of notes

This value set defines its own terms in the system http://hl7.org/fhir/NT-link

CodeDisplayDefinition
display present on the display.
print print on the target form.
printoper Print for the operator.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

NoteType

The presentation types of notes

This value set defines its own terms in the system http://hl7.org/fhir/NT-link

CodeDisplayDefinition
display present on the display.
print print on the target form.
printoper Print for the operator.
+
+
+ + Valueset "quantity-comparator" to support automated processing + http://hl7.org/fhir/vs/quantity-comparator + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

QuantityComparator

How the Quantity should be understood and represented

This value set defines its own terms in the system http://hl7.org/fhir/quantity-comparator

CodeDisplayDefinition
< The actual value is less than the given value.
<= The actual value is less than or equal to the given value.
>= The actual value is greater than or equal to the given value.
> The actual value is greater than the given value.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

QuantityComparator

How the Quantity should be understood and represented

This value set defines its own terms in the system http://hl7.org/fhir/quantity-comparator

CodeDisplayDefinition
< The actual value is less than the given value.
<= The actual value is less than or equal to the given value.
>= The actual value is greater than or equal to the given value.
> The actual value is greater than the given value.
+
+
+ + Valueset "instance-availability" to support automated processing + http://hl7.org/fhir/vs/instance-availability + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

InstanceAvailability

Availability of the resource

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    ONLINEOnlineInstances are immediately available
    OFFLINEOfflineInstances need to be retrieved by manual intervention
    NEARLINENearlineInstances need to be retrieved from relatively slow media such as optical disk or tape
    UNAVAILABLEUnavailableInstances cannot be retrieved.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

InstanceAvailability

Availability of the resource

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    ONLINEOnlineInstances are immediately available
    OFFLINEOfflineInstances need to be retrieved by manual intervention
    NEARLINENearlineInstances need to be retrieved from relatively slow media such as optical disk or tape
    UNAVAILABLEUnavailableInstances cannot be retrieved.
+
+
+ + Valueset "location-status" to support automated processing + http://hl7.org/fhir/vs/location-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

LocationStatus

Indicates whether the location is still in use

This value set defines its own terms in the system http://hl7.org/fhir/location-status

CodeDisplayDefinition
active The location is operational.
suspended The location is temporarily closed.
inactive The location is no longer used.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

LocationStatus

Indicates whether the location is still in use

This value set defines its own terms in the system http://hl7.org/fhir/location-status

CodeDisplayDefinition
active The location is operational.
suspended The location is temporarily closed.
inactive The location is no longer used.
+
+
+ + Valueset "contact-point-system" to support automated processing + http://hl7.org/fhir/vs/contact-point-system + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ContactPointSystem

Telecommunications form for contact point

This value set defines its own terms in the system http://hl7.org/fhir/contact-point-system

CodeDisplayDefinitionv2 Map (0202)
phone The value is a telephone number used for voice calls. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required.~PH
fax The value is a fax machine. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required.~FX
email The value is an email address.<Internet(use mailto: protocol)
url The value is a url. This is intended for various personal contacts including blogs, Twitter, Facebook, etc. Do not use for email addresses.<Internet
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ContactPointSystem

Telecommunications form for contact point

This value set defines its own terms in the system http://hl7.org/fhir/contact-point-system

CodeDisplayDefinitionv2 Map (0202)
phone The value is a telephone number used for voice calls. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required.~PH
fax The value is a fax machine. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required.~FX
email The value is an email address.<Internet(use mailto: protocol)
url The value is a url. This is intended for various personal contacts including blogs, Twitter, Facebook, etc. Do not use for email addresses.<Internet
+
+
+ + Valueset "medication-admin-status" to support automated processing + http://hl7.org/fhir/vs/medication-admin-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

MedicationAdministrationStatus

A set of codes indicating the current status of a MedicationAdministration

This value set defines its own terms in the system http://hl7.org/fhir/medication-admin-status

CodeDisplayDefinitionv3 Map (ctStatus)
in progress The administration has started but has not yet completed.active
on hold Actions implied by the administration have been temporarily halted, but are expected to continue later. May also be called "suspended".suspended
completed All actions that are implied by the administration have occurred.completed
entered in error The administration was entered in error and therefore nullified.nullified
stopped Actions implied by the administration have been permanently halted, before all of them occurred.aborted
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

MedicationAdministrationStatus

A set of codes indicating the current status of a MedicationAdministration

This value set defines its own terms in the system http://hl7.org/fhir/medication-admin-status

CodeDisplayDefinitionv3 Map (ctStatus)
in progress The administration has started but has not yet completed.active
on hold Actions implied by the administration have been temporarily halted, but are expected to continue later. May also be called "suspended".suspended
completed All actions that are implied by the administration have occurred.completed
entered in error The administration was entered in error and therefore nullified.nullified
stopped Actions implied by the administration have been permanently halted, before all of them occurred.aborted
+
+
+ + Valueset "lipid-ldl-codes" to support automated processing + http://hl7.org/fhir/vs/lipid-ldl-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

LDLCodes

LDL Cholesterol codes - measured or calculated

Copyright Statement: This content from LOINC®LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://loinc.org
    CodeDisplayDefinition
    18262-6Cholesterol in LDL [Mass/volume] in Serum or Plasma by Direct assay
    13457-7Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

LDLCodes

LDL Cholesterol codes - measured or calculated

Copyright Statement: This content from LOINC®LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://loinc.org
    CodeDisplayDefinition
    18262-6Cholesterol in LDL [Mass/volume] in Serum or Plasma by Direct assay
    13457-7Cholesterol in LDL [Mass/volume] in Serum or Plasma by calculation
+
+
+ + Valueset "observation-reliability" to support automated processing + http://hl7.org/fhir/vs/observation-reliability + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ObservationReliability

Codes that provide an estimate of the degree to which quality issues have impacted on the value of an observation

This value set defines its own terms in the system http://hl7.org/fhir/observation-reliability

CodeDisplayDefinition
ok The result has no reliability concerns.
ongoing An early estimate of value; measurement is still occurring.
early An early estimate of value; processing is still occurring.
questionable The observation value should be treated with care.
calibrating The result has been generated while calibration is occurring.
error The observation could not be completed because of an error.
unknown No observation value was available.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ObservationReliability

Codes that provide an estimate of the degree to which quality issues have impacted on the value of an observation

This value set defines its own terms in the system http://hl7.org/fhir/observation-reliability

CodeDisplayDefinition
ok The result has no reliability concerns.
ongoing An early estimate of value; measurement is still occurring.
early An early estimate of value; processing is still occurring.
questionable The observation value should be treated with care.
calibrating The result has been generated while calibration is occurring.
error The observation could not be completed because of an error.
unknown No observation value was available.
+
+
+ + Valueset "hierarchical-relationship-type" to support automated processing + http://hl7.org/fhir/vs/hierarchical-relationship-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

HierarchicalRelationshipType

Type indicating if this is a parent or child relationship

This value set defines its own terms in the system http://hl7.org/fhir/hierarchical-relationship-type

CodeDisplayDefinition
parent ParentThe target resource is the parent of the focal specimen resource.
child ChildThe target resource is the child of the focal specimen resource.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

HierarchicalRelationshipType

Type indicating if this is a parent or child relationship

This value set defines its own terms in the system http://hl7.org/fhir/hierarchical-relationship-type

CodeDisplayDefinition
parent ParentThe target resource is the parent of the focal specimen resource.
child ChildThe target resource is the child of the focal specimen resource.
+
+
+ + Valueset "search-param-type" to support automated processing + http://hl7.org/fhir/vs/search-param-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SearchParamType

Data types allowed to be used for search parameters

This value set defines its own terms in the system http://hl7.org/fhir/search-param-type

CodeDisplayDefinition
number Search parameter SHALL be a number (a whole number, or a decimal).
date Search parameter is on a date/time. The date format is the standard XML format, though other formats may be supported.
string Search parameter is a simple string, like a name part. Search is case-insensitive and accent-insensitive. May match just the start of a string. String parameters may contain spaces.
token Search parameter on a coded element or identifier. May be used to search through the text, displayname, code and code/codesystem (for codes) and label, system and key (for identifier). Its value is either a string or a pair of namespace and value, separated by a "|", depending on the modifier used.
reference A reference to another resource.
composite A composite search parameter that combines a search on two values together.
quantity A search parameter that searches on a quantity.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SearchParamType

Data types allowed to be used for search parameters

This value set defines its own terms in the system http://hl7.org/fhir/search-param-type

CodeDisplayDefinition
number Search parameter SHALL be a number (a whole number, or a decimal).
date Search parameter is on a date/time. The date format is the standard XML format, though other formats may be supported.
string Search parameter is a simple string, like a name part. Search is case-insensitive and accent-insensitive. May match just the start of a string. String parameters may contain spaces.
token Search parameter on a coded element or identifier. May be used to search through the text, displayname, code and code/codesystem (for codes) and label, system and key (for identifier). Its value is either a string or a pair of namespace and value, separated by a "|", depending on the modifier used.
reference A reference to another resource.
composite A composite search parameter that combines a search on two values together.
quantity A search parameter that searches on a quantity.
+
+
+ + Valueset "xds-relationship-type" to support automated processing + http://hl7.org/fhir/vs/xds-relationship-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

XDSRelationshipType

The kind of relationship between two XDS documents

This value set defines its own terms in the system http://hl7.org/fhir/xds-relationship-type

CodeDisplayDefinition
APND A separate XDS Document that references a prior document, and may extend or +alter the observations in the prior document.
RPLC A new version of an existing document.
XFRM A transformed document is derived by a machine translation from some other format.
XFRM_RPLC Both a XFRM and a RPLC relationship.
signs This document signs the target document.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

XDSRelationshipType

The kind of relationship between two XDS documents

This value set defines its own terms in the system http://hl7.org/fhir/xds-relationship-type

CodeDisplayDefinition
APND A separate XDS Document that references a prior document, and may extend or +alter the observations in the prior document.
RPLC A new version of an existing document.
XFRM A transformed document is derived by a machine translation from some other format.
XFRM_RPLC Both a XFRM and a RPLC relationship.
signs This document signs the target document.
+
+
+ + Valueset "reaction-risk-severity" to support automated processing + http://hl7.org/fhir/vs/reaction-risk-severity + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AdverseReactionRiskSeverity

Clinical assessment of the severity of a reaction event as a whole, potentially considering multiple different manifestations

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-severity

CodeDisplayDefinition
mild MildCauses mild physiological effects.
moderate ModerateCauses moderate physiological effects.
severe SevereCauses severe physiological effects.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AdverseReactionRiskSeverity

Clinical assessment of the severity of a reaction event as a whole, potentially considering multiple different manifestations

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-severity

CodeDisplayDefinition
mild MildCauses mild physiological effects.
moderate ModerateCauses moderate physiological effects.
severe SevereCauses severe physiological effects.
+
+
+ + Valueset "defined-types" to support automated processing + http://hl7.org/fhir/vs/defined-types + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

FHIRDefinedType

Either a resource or a data type

This value set defines its own terms in the system http://hl7.org/fhir/defined-types

CodeDisplayDefinition
Address There is a variety of postal address formats defined around the world. This format defines a superset that is the basis for all addresses around the world.
Age A duration (length of time) with a UCUM code
Attachment For referring to data content defined in other formats.
CodeableConcept A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.
Coding A reference to a code defined by a terminology system.
ContactPoint Details for All kinds of technology mediated contact points for a person or organization, including telephone, email, etc.
Count A count of a discrete element (no unit)
Distance A measure of distance
Duration A length of time
Extension Optional Extensions Element - found in all resources.
HumanName A human's name with the ability to identify parts and usage.
Identifier A technical identifier - identifies some entity uniquely and unambiguously.
Money An amount of money. With regard to precision, see [[X]]
Narrative A human-readable formatted text, including images.
Period A time period defined by a start and end date and optionally time.
Quantity A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies.
Range A set of ordered Quantities defined by a low and high limit.
Ratio A relationship of two Quantity values - expressed as a numerator and a denominator.
Reference A reference from one resource to another.
SampledData A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data.
Timing Specifies an event that may occur multiple times. Timing schedules are used for to record when things are expected or requested to occur.
base64Binary A stream of bytes
boolean Value of "true" or "false"
code A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents
date A date, or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. Dates SHALL be valid dates.
dateTime A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds may be provided but may also be ignored. Dates SHALL be valid dates.
decimal A rational number with implicit precision
id Any combination of lowercase letters, numerals, "-" and ".", with a length limit of 36 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Systems SHALL send ids as lower-case but SHOULD interpret them case-insensitively.
instant An instant in time - known at least to the second
integer A whole number
oid An oid represented as a URI
string A sequence of Unicode characters
time A time during the day, with no date specified
uri String of characters used to identify a name or a resource
uuid A UUID, represented as a URI
AdverseReaction Records an unexpected reaction suspected to be related to the exposure of the reaction subject to a substance.
AdverseReactionRisk Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance.
Alert Prospective warnings of potential issues when providing care to the patient.
AllergyIntolerance Indicates the patient has a susceptibility to an adverse reaction upon exposure to a specified substance.
Appointment A scheduled healthcare event for a patient and/or practitioner(s) where a service may take place at a specific date/time.
AppointmentResponse A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection.
Availability (informative) A container for slot(s) of time that may be available for booking appointments.
Basic Basic is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest.
CarePlan Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions.
ClaimResponse This resource provides the adjudication details from the processing of a Claim resource.
Composition A set of healthcare-related information that is assembled together into a single logical document that provides a single coherent statement of meaning, establishes its own context and that has clinical attestation with regard to who is making the statement.
ConceptMap A statement of relationships from one set of concepts to one or more other concepts - either code systems or data elements, or classes in class models.
Condition Use to record detailed information about conditions, problems or diagnoses recognized by a clinician. There are many uses including: recording a Diagnosis during an Encounter; populating a problem List or a Summary Statement, such as a Discharge Summary.
Conformance A conformance statement is a set of requirements for a desired implementation or a description of how a target application fulfills those requirements in a particular implementation.
Contract A formal agreement between parties regarding the conduct of business, exchange of information or other matters.
Contraindication Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient. E.g. Drug-drug interaction, Ineffective treatment frequency, Procedure-condition conflict, etc.
Coverage Financial instrument which may be used to pay for or reimburse for health care products and services.
DataElement The formal description of a single piece of information that can be gathered and reported.
Device This resource identifies an instance of a manufactured thing that is used in the provision of healthcare without being substantially changed through that activity. The device may be a machine, an insert, a computer, an application, etc. This includes durable (reusable) medical equipment as well as disposable equipment used for diagnostic, treatment, and research for healthcare and public health.
DeviceObservationReport Describes the data produced by a device at a point in time.
DiagnosticOrder A request for a diagnostic investigation service to be performed.
DiagnosticReport The findings and interpretation of diagnostic tests performed on patients, groups of patients, devices, and locations, and/or specimens derived from these. The report includes clinical context such as requesting and provider information, and some mix of atomic results, images, textual and coded interpretation, and formatted representation of diagnostic reports.
DocumentManifest A manifest that defines a set of documents.
DocumentReference A reference to a document.
Encounter An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.
FamilyHistory Significant health events and conditions for people related to the subject relevant in the context of care for the subject.
Group Represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively and are not formally or legally recognized. I.e. A collection of entities that isn't an Organization.
HealthcareService (informative) The details of a Healthcare Service available at a location.
ImagingStudy Manifest of a set of images produced in study. The set of images may include every image in the study, or it may be an incomplete sample, such as a list of key images.
Immunization Immunization event information.
ImmunizationRecommendation A patient's point-of-time immunization status and recommendation with optional supporting justification.
List A set of information summarized from a list of other resources.
Location Details and position information for a physical place where services are provided and resources and participants may be stored, found, contained or accommodated.
Media A photo, video, or audio recording acquired or used in healthcare. The actual content may be inline or provided by direct reference.
Medication Primarily used for identification and definition of Medication, but also covers ingredients and packaging.
MedicationAdministration Describes the event of a patient being given a dose of a medication. This may be as simple as swallowing a tablet or it may be a long running infusion. + +Related resources tie this event to the authorizing prescription, and the specific encounter between patient and health care practitioner.
MedicationDispense Dispensing a medication to a named patient. This includes a description of the supply provided and the instructions for administering the medication.
MedicationPrescription An order for both supply of the medication and the instructions for administration of the medicine to a patient.
MedicationStatement A record of medication being taken by a patient, or that the medication has been given to a patient where the record is the result of a report from the patient or another clinician.
MessageHeader The header for a message exchange that is either requesting or responding to an action. The Reference(s) that are the subject of the action as well as other Information related to the action are typically transmitted in a bundle in which the MessageHeader resource instance is the first resource in the bundle.
Namespace A curated namespace that issues unique symbols within that namespace for the identification of concepts, people, devices, etc. Represents a "System" used within the Identifier and Coding data types.
NutritionOrder A request to supply a diet, formula feeding (enteral) or oral nutritional supplement to a patient/resident.
Observation Measurements and simple assertions made about a patient, device or other subject.
OperationDefinition A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction).
OperationOutcome A collection of error, warning or information messages that result from a system action.
OralHealthClaim A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery.
Order A request to perform an action.
OrderResponse A response to an order.
Organization A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, etc.
Other Other is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest.
Patient Demographics and other administrative information about a person or animal receiving care or other health-related services.
Practitioner A person who is directly or indirectly involved in the provisioning of healthcare.
Procedure An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.
Profile A Resource Profile - a statement of use of one or more FHIR Resources. It may include constraints on Resources and Data Types, Terminology Binding Statements and Extension Definitions.
Provenance Provenance information that describes the activity that led to the creation of a set of resources. This information can be used to help determine their reliability or trace where the information in them came from. The focus of the provenance resource is record keeping, audit and traceability, and not explicit statements of clinical significance.
Query A description of a query with a set of parameters.
Questionnaire A structured set of questions intended to guide the collection of answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions.
QuestionnaireAnswers A structured set of questions and their answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions.
ReferralRequest Used to record and send details about a request for referral service or transfer of a patient to the care of another provider or provider organisation.
RelatedPerson Information about a person that is involved in the care for a patient, but who is not the target of healthcare, nor has a formal responsibility in the care process.
RiskAssessment An assessment of the likely outcome(s) for a patient or other subject as well as the likelihood of each outcome.
SecurityEvent A record of an event made for purposes of maintaining a security log. Typical uses include detection of intrusion attempts and monitoring for inappropriate usage.
Slot (informative) A slot of time on a schedule that may be available for booking appointments.
Specimen Sample for analysis.
Subscription Todo.
Substance A homogeneous material with a definite composition.
Supply A supply - a request for something, and provision of what is supplied.
ValueSet A value set specifies a set of codes drawn from one or more code systems.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

FHIRDefinedType

Either a resource or a data type

This value set defines its own terms in the system http://hl7.org/fhir/defined-types

CodeDisplayDefinition
Address There is a variety of postal address formats defined around the world. This format defines a superset that is the basis for all addresses around the world.
Age A duration (length of time) with a UCUM code
Attachment For referring to data content defined in other formats.
CodeableConcept A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.
Coding A reference to a code defined by a terminology system.
ContactPoint Details for All kinds of technology mediated contact points for a person or organization, including telephone, email, etc.
Count A count of a discrete element (no unit)
Distance A measure of distance
Duration A length of time
Extension Optional Extensions Element - found in all resources.
HumanName A human's name with the ability to identify parts and usage.
Identifier A technical identifier - identifies some entity uniquely and unambiguously.
Money An amount of money. With regard to precision, see [[X]]
Narrative A human-readable formatted text, including images.
Period A time period defined by a start and end date and optionally time.
Quantity A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies.
Range A set of ordered Quantities defined by a low and high limit.
Ratio A relationship of two Quantity values - expressed as a numerator and a denominator.
Reference A reference from one resource to another.
SampledData A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data.
Timing Specifies an event that may occur multiple times. Timing schedules are used for to record when things are expected or requested to occur.
base64Binary A stream of bytes
boolean Value of "true" or "false"
code A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents
date A date, or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. Dates SHALL be valid dates.
dateTime A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds may be provided but may also be ignored. Dates SHALL be valid dates.
decimal A rational number with implicit precision
id Any combination of lowercase letters, numerals, "-" and ".", with a length limit of 36 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Systems SHALL send ids as lower-case but SHOULD interpret them case-insensitively.
instant An instant in time - known at least to the second
integer A whole number
oid An oid represented as a URI
string A sequence of Unicode characters
time A time during the day, with no date specified
uri String of characters used to identify a name or a resource
uuid A UUID, represented as a URI
AdverseReaction Records an unexpected reaction suspected to be related to the exposure of the reaction subject to a substance.
AdverseReactionRisk Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance.
Alert Prospective warnings of potential issues when providing care to the patient.
AllergyIntolerance Indicates the patient has a susceptibility to an adverse reaction upon exposure to a specified substance.
Appointment A scheduled healthcare event for a patient and/or practitioner(s) where a service may take place at a specific date/time.
AppointmentResponse A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection.
Availability (informative) A container for slot(s) of time that may be available for booking appointments.
Basic Basic is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest.
CarePlan Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions.
ClaimResponse This resource provides the adjudication details from the processing of a Claim resource.
Composition A set of healthcare-related information that is assembled together into a single logical document that provides a single coherent statement of meaning, establishes its own context and that has clinical attestation with regard to who is making the statement.
ConceptMap A statement of relationships from one set of concepts to one or more other concepts - either code systems or data elements, or classes in class models.
Condition Use to record detailed information about conditions, problems or diagnoses recognized by a clinician. There are many uses including: recording a Diagnosis during an Encounter; populating a problem List or a Summary Statement, such as a Discharge Summary.
Conformance A conformance statement is a set of requirements for a desired implementation or a description of how a target application fulfills those requirements in a particular implementation.
Contract A formal agreement between parties regarding the conduct of business, exchange of information or other matters.
Contraindication Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient. E.g. Drug-drug interaction, Ineffective treatment frequency, Procedure-condition conflict, etc.
Coverage Financial instrument which may be used to pay for or reimburse for health care products and services.
DataElement The formal description of a single piece of information that can be gathered and reported.
Device This resource identifies an instance of a manufactured thing that is used in the provision of healthcare without being substantially changed through that activity. The device may be a machine, an insert, a computer, an application, etc. This includes durable (reusable) medical equipment as well as disposable equipment used for diagnostic, treatment, and research for healthcare and public health.
DeviceObservationReport Describes the data produced by a device at a point in time.
DiagnosticOrder A request for a diagnostic investigation service to be performed.
DiagnosticReport The findings and interpretation of diagnostic tests performed on patients, groups of patients, devices, and locations, and/or specimens derived from these. The report includes clinical context such as requesting and provider information, and some mix of atomic results, images, textual and coded interpretation, and formatted representation of diagnostic reports.
DocumentManifest A manifest that defines a set of documents.
DocumentReference A reference to a document.
Encounter An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.
FamilyHistory Significant health events and conditions for people related to the subject relevant in the context of care for the subject.
Group Represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively and are not formally or legally recognized. I.e. A collection of entities that isn't an Organization.
HealthcareService (informative) The details of a Healthcare Service available at a location.
ImagingStudy Manifest of a set of images produced in study. The set of images may include every image in the study, or it may be an incomplete sample, such as a list of key images.
Immunization Immunization event information.
ImmunizationRecommendation A patient's point-of-time immunization status and recommendation with optional supporting justification.
List A set of information summarized from a list of other resources.
Location Details and position information for a physical place where services are provided and resources and participants may be stored, found, contained or accommodated.
Media A photo, video, or audio recording acquired or used in healthcare. The actual content may be inline or provided by direct reference.
Medication Primarily used for identification and definition of Medication, but also covers ingredients and packaging.
MedicationAdministration Describes the event of a patient being given a dose of a medication. This may be as simple as swallowing a tablet or it may be a long running infusion. + +Related resources tie this event to the authorizing prescription, and the specific encounter between patient and health care practitioner.
MedicationDispense Dispensing a medication to a named patient. This includes a description of the supply provided and the instructions for administering the medication.
MedicationPrescription An order for both supply of the medication and the instructions for administration of the medicine to a patient.
MedicationStatement A record of medication being taken by a patient, or that the medication has been given to a patient where the record is the result of a report from the patient or another clinician.
MessageHeader The header for a message exchange that is either requesting or responding to an action. The Reference(s) that are the subject of the action as well as other Information related to the action are typically transmitted in a bundle in which the MessageHeader resource instance is the first resource in the bundle.
Namespace A curated namespace that issues unique symbols within that namespace for the identification of concepts, people, devices, etc. Represents a "System" used within the Identifier and Coding data types.
NutritionOrder A request to supply a diet, formula feeding (enteral) or oral nutritional supplement to a patient/resident.
Observation Measurements and simple assertions made about a patient, device or other subject.
OperationDefinition A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction).
OperationOutcome A collection of error, warning or information messages that result from a system action.
OralHealthClaim A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery.
Order A request to perform an action.
OrderResponse A response to an order.
Organization A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, etc.
Other Other is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest.
Patient Demographics and other administrative information about a person or animal receiving care or other health-related services.
Practitioner A person who is directly or indirectly involved in the provisioning of healthcare.
Procedure An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.
Profile A Resource Profile - a statement of use of one or more FHIR Resources. It may include constraints on Resources and Data Types, Terminology Binding Statements and Extension Definitions.
Provenance Provenance information that describes the activity that led to the creation of a set of resources. This information can be used to help determine their reliability or trace where the information in them came from. The focus of the provenance resource is record keeping, audit and traceability, and not explicit statements of clinical significance.
Query A description of a query with a set of parameters.
Questionnaire A structured set of questions intended to guide the collection of answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions.
QuestionnaireAnswers A structured set of questions and their answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions.
ReferralRequest Used to record and send details about a request for referral service or transfer of a patient to the care of another provider or provider organisation.
RelatedPerson Information about a person that is involved in the care for a patient, but who is not the target of healthcare, nor has a formal responsibility in the care process.
RiskAssessment An assessment of the likely outcome(s) for a patient or other subject as well as the likelihood of each outcome.
SecurityEvent A record of an event made for purposes of maintaining a security log. Typical uses include detection of intrusion attempts and monitoring for inappropriate usage.
Slot (informative) A slot of time on a schedule that may be available for booking appointments.
Specimen Sample for analysis.
Subscription Todo.
Substance A homogeneous material with a definite composition.
Supply A supply - a request for something, and provision of what is supplied.
ValueSet A value set specifies a set of codes drawn from one or more code systems.
+
+
+ + Valueset "name-use" to support automated processing + http://hl7.org/fhir/vs/name-use + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

NameUse

The use of a human name

This value set defines its own terms in the system http://hl7.org/fhir/name-use

CodeDisplayDefinitionv3 Map (EntityNameUseR2)v2 Map (0200)
usual Known as/conventional/the one you normally use.=C~D
official The formal name as registered in an official (government) registry, but which name might not be commonly used. May be called "legal name".=OR~L
temp A temporary name. Name.period can provide more detailed information. This may also be used for temporary names assigned at birth or in emergency situations.=T~TEMP
nickname A name that is used to address the person in an informal manner, but is not part of their formal or usual name.~P~N
anonymous Anonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons).~ANON~S
old This name is no longer in use (or was never correct, but retained for records).~OLD>NOUSE
>BAD
maiden A name used prior to marriage. Marriage naming customs vary greatly around the world. This name use is for use by applications that collect and store "maiden" names. Though the concept of maiden name is often gender specific, the use of this term is not gender specific. The use of this term does not imply any particular history for a person's name, nor should the maiden name be determined algorithmically.=M~M
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

NameUse

The use of a human name

This value set defines its own terms in the system http://hl7.org/fhir/name-use

CodeDisplayDefinitionv3 Map (EntityNameUseR2)v2 Map (0200)
usual Known as/conventional/the one you normally use.=C~D
official The formal name as registered in an official (government) registry, but which name might not be commonly used. May be called "legal name".=OR~L
temp A temporary name. Name.period can provide more detailed information. This may also be used for temporary names assigned at birth or in emergency situations.=T~TEMP
nickname A name that is used to address the person in an informal manner, but is not part of their formal or usual name.~P~N
anonymous Anonymous assigned name, alias, or pseudonym (used to protect a person's identity for privacy reasons).~ANON~S
old This name is no longer in use (or was never correct, but retained for records).~OLD>NOUSE
>BAD
maiden A name used prior to marriage. Marriage naming customs vary greatly around the world. This name use is for use by applications that collect and store "maiden" names. Though the concept of maiden name is often gender specific, the use of this term is not gender specific. The use of this term does not imply any particular history for a person's name, nor should the maiden name be determined algorithmically.=M~M
+
+
+ + Valueset "binding-conformance" to support automated processing + http://hl7.org/fhir/vs/binding-conformance + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

BindingConformance

Binding conformance for applications

This value set defines its own terms in the system http://hl7.org/fhir/binding-conformance

CodeDisplayDefinition
required Only codes in the specified set are allowed. If the binding is extensible, other codes may be used for concepts not covered by the bound set of codes.
preferred For greater interoperability, implementers are strongly encouraged to use the bound set of codes, however alternate codes may be used in derived profiles and implementations if necessary without being considered non-conformant.
example The codes in the set are an example to illustrate the meaning of the field. There is no particular preference for its use nor any assertion that the provided values are sufficient to meet implementation needs.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

BindingConformance

Binding conformance for applications

This value set defines its own terms in the system http://hl7.org/fhir/binding-conformance

CodeDisplayDefinition
required Only codes in the specified set are allowed. If the binding is extensible, other codes may be used for concepts not covered by the bound set of codes.
preferred For greater interoperability, implementers are strongly encouraged to use the bound set of codes, however alternate codes may be used in derived profiles and implementations if necessary without being considered non-conformant.
example The codes in the set are an example to illustrate the meaning of the field. There is no particular preference for its use nor any assertion that the provided values are sufficient to meet implementation needs.
+
+
+ + Valueset "encounter-class" to support automated processing + http://hl7.org/fhir/vs/encounter-class + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

EncounterClass

Classification of the encounter

This value set defines its own terms in the system http://hl7.org/fhir/encounter-class

CodeDisplayDefinition
inpatient An encounter during which the patient is hospitalized and stays overnight.
outpatient An encounter during which the patient is not hospitalized overnight.
ambulatory An encounter where the patient visits the practitioner in his/her office, e.g. a G.P. visit.
emergency An encounter where the patient needs urgent care.
home An encounter where the practitioner visits the patient at his/her home.
field An encounter taking place outside the regular environment for giving care.
daytime An encounter where the patient needs more prolonged treatment or investigations than outpatients, but who do not need to stay in the hospital overnight.
virtual An encounter that takes place where the patient and practitioner do not physically meet but use electronic means for contact.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

EncounterClass

Classification of the encounter

This value set defines its own terms in the system http://hl7.org/fhir/encounter-class

CodeDisplayDefinition
inpatient An encounter during which the patient is hospitalized and stays overnight.
outpatient An encounter during which the patient is not hospitalized overnight.
ambulatory An encounter where the patient visits the practitioner in his/her office, e.g. a G.P. visit.
emergency An encounter where the patient needs urgent care.
home An encounter where the practitioner visits the patient at his/her home.
field An encounter taking place outside the regular environment for giving care.
daytime An encounter where the patient needs more prolonged treatment or investigations than outpatients, but who do not need to stay in the hospital overnight.
virtual An encounter that takes place where the patient and practitioner do not physically meet but use electronic means for contact.
+
+
+ + Valueset "care-plan-activity-category" to support automated processing + http://hl7.org/fhir/vs/care-plan-activity-category + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

CarePlanActivityCategory

High-level categorization of the type of activity in a care plan.

This value set defines its own terms in the system http://hl7.org/fhir/care-plan-activity-category

CodeDisplayDefinition
diet Plan for the patient to consume food of a specified nature.
drug Plan for the patient to consume/receive a drug, vaccine or other product.
encounter Plan to meet or communicate with the patient (in-patient, out-patient, phone call, etc.).
observation Plan to capture information about a patient (vitals, labs, diagnostic images, etc.).
procedure Plan to modify the patient in some way (surgery, physiotherapy, education, counseling, etc.).
supply Plan to provide something to the patient (medication, medical supply, etc.).
other Some other form of action.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

CarePlanActivityCategory

High-level categorization of the type of activity in a care plan.

This value set defines its own terms in the system http://hl7.org/fhir/care-plan-activity-category

CodeDisplayDefinition
diet Plan for the patient to consume food of a specified nature.
drug Plan for the patient to consume/receive a drug, vaccine or other product.
encounter Plan to meet or communicate with the patient (in-patient, out-patient, phone call, etc.).
observation Plan to capture information about a patient (vitals, labs, diagnostic images, etc.).
procedure Plan to modify the patient in some way (surgery, physiotherapy, education, counseling, etc.).
supply Plan to provide something to the patient (medication, medical supply, etc.).
other Some other form of action.
+
+
+ + Valueset "object-type" to support automated processing + http://hl7.org/fhir/vs/object-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SecurityEventObjectType

Code for the participant object type being audited

This value set defines its own terms in the system http://hl7.org/fhir/object-type

CodeDisplayDefinition
1 Person.
2 System Object.
3 Organization.
4 Other.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SecurityEventObjectType

Code for the participant object type being audited

This value set defines its own terms in the system http://hl7.org/fhir/object-type

CodeDisplayDefinition
1 Person.
2 System Object.
3 Organization.
4 Other.
+
+
+ + Valueset "exposureType" to support automated processing + http://hl7.org/fhir/vs/exposureType + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ExposureType

The type of exposure that resulted in an adverse reaction

This value set defines its own terms in the system http://hl7.org/fhir/exposureType

CodeDisplayDefinition
drugadmin Drug Administration.
immuniz Immunization.
coincidental In the same area as the substance.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ExposureType

The type of exposure that resulted in an adverse reaction

This value set defines its own terms in the system http://hl7.org/fhir/exposureType

CodeDisplayDefinition
drugadmin Drug Administration.
immuniz Immunization.
coincidental In the same area as the substance.
+
+
+ + Valueset "diagnostic-order-status" to support automated processing + http://hl7.org/fhir/vs/diagnostic-order-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DiagnosticOrderStatus

The status of a diagnostic order

This value set defines its own terms in the system http://hl7.org/fhir/diagnostic-order-status

CodeDisplayDefinition
requested The request has been placed.
received The receiving system has received the order, but not yet decided whether it will be performed.
accepted The receiving system has accepted the order, but work has not yet commenced.
in progress The work to fulfill the order is happening.
review The work is complete, and the outcomes are being reviewed for approval.
completed The work has been complete, the report(s) released, and no further work is planned.
suspended The request has been held by originating system/user request.
rejected The receiving system has declined to fulfill the request.
failed The diagnostic investigation was attempted, but due to some procedural error, it could not be completed.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

DiagnosticOrderStatus

The status of a diagnostic order

This value set defines its own terms in the system http://hl7.org/fhir/diagnostic-order-status

CodeDisplayDefinition
requested The request has been placed.
received The receiving system has received the order, but not yet decided whether it will be performed.
accepted The receiving system has accepted the order, but work has not yet commenced.
in progress The work to fulfill the order is happening.
review The work is complete, and the outcomes are being reviewed for approval.
completed The work has been complete, the report(s) released, and no further work is planned.
suspended The request has been held by originating system/user request.
rejected The receiving system has declined to fulfill the request.
failed The diagnostic investigation was attempted, but due to some procedural error, it could not be completed.
+
+
+ + Valueset "subscription-status" to support automated processing + http://hl7.org/fhir/vs/subscription-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SubscriptionStatus

The status of a subscription

This value set defines its own terms in the system http://hl7.org/fhir/subscription-status

CodeDisplayDefinition
requested The client has requested the subscription, and the server has not yet set it up.
active The subscription is active.
error The server has an error executing the notification.
off Too many errors have occurred or the subscription has expired.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SubscriptionStatus

The status of a subscription

This value set defines its own terms in the system http://hl7.org/fhir/subscription-status

CodeDisplayDefinition
requested The client has requested the subscription, and the server has not yet set it up.
active The subscription is active.
error The server has an error executing the notification.
off Too many errors have occurred or the subscription has expired.
+
+
+ + Valueset "system-restful-interaction" to support automated processing + http://hl7.org/fhir/vs/system-restful-interaction + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SystemRestfulInteraction

Operations supported by REST at the system level

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/restful-interaction
    CodeDisplayDefinition
    transactiontransactionUpdate, create or delete a set of resources as a single transaction
    search-systemsearch-systemSearch all resources based on some filter criteria
    history-systemhistory-systemRetrieve the update history for all resources on a system
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SystemRestfulInteraction

Operations supported by REST at the system level

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/restful-interaction
    CodeDisplayDefinition
    transactiontransactionUpdate, create or delete a set of resources as a single transaction
    search-systemsearch-systemSearch all resources based on some filter criteria
    history-systemhistory-systemRetrieve the update history for all resources on a system
+
+
+ + Valueset "operation-kind" to support automated processing + http://hl7.org/fhir/vs/operation-kind + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

OperationKind

Whether an operation is a normal operation or a query

This value set defines its own terms in the system http://hl7.org/fhir/operation-kind

CodeDisplayDefinition
operation This operation is invoked as an operation.
query This operation is a named query, invoked using the search mechanism.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

OperationKind

Whether an operation is a normal operation or a query

This value set defines its own terms in the system http://hl7.org/fhir/operation-kind

CodeDisplayDefinition
operation This operation is invoked as an operation.
query This operation is a named query, invoked using the search mechanism.
+
+
+ + Valueset "data-types" to support automated processing + http://hl7.org/fhir/vs/data-types + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DataType

The type of an element - one of the FHIR data types

This value set defines its own terms in the system http://hl7.org/fhir/data-types

CodeDisplayDefinition
Address There is a variety of postal address formats defined around the world. This format defines a superset that is the basis for all addresses around the world.
Age A duration (length of time) with a UCUM code
Attachment For referring to data content defined in other formats.
CodeableConcept A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.
Coding A reference to a code defined by a terminology system.
ContactPoint Details for All kinds of technology mediated contact points for a person or organization, including telephone, email, etc.
Count A count of a discrete element (no unit)
Distance A measure of distance
Duration A length of time
Extension Optional Extensions Element - found in all resources.
HumanName A human's name with the ability to identify parts and usage.
Identifier A technical identifier - identifies some entity uniquely and unambiguously.
Money An amount of money. With regard to precision, see [[X]]
Narrative A human-readable formatted text, including images.
Period A time period defined by a start and end date and optionally time.
Quantity A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies.
Range A set of ordered Quantities defined by a low and high limit.
Ratio A relationship of two Quantity values - expressed as a numerator and a denominator.
Reference A reference from one resource to another.
SampledData A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data.
Timing Specifies an event that may occur multiple times. Timing schedules are used for to record when things are expected or requested to occur.
base64Binary A stream of bytes
boolean Value of "true" or "false"
code A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents
date A date, or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. Dates SHALL be valid dates.
dateTime A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds may be provided but may also be ignored. Dates SHALL be valid dates.
decimal A rational number with implicit precision
id Any combination of lowercase letters, numerals, "-" and ".", with a length limit of 36 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Systems SHALL send ids as lower-case but SHOULD interpret them case-insensitively.
instant An instant in time - known at least to the second
integer A whole number
oid An oid represented as a URI
string A sequence of Unicode characters
time A time during the day, with no date specified
uri String of characters used to identify a name or a resource
uuid A UUID, represented as a URI
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

DataType

The type of an element - one of the FHIR data types

This value set defines its own terms in the system http://hl7.org/fhir/data-types

CodeDisplayDefinition
Address There is a variety of postal address formats defined around the world. This format defines a superset that is the basis for all addresses around the world.
Age A duration (length of time) with a UCUM code
Attachment For referring to data content defined in other formats.
CodeableConcept A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.
Coding A reference to a code defined by a terminology system.
ContactPoint Details for All kinds of technology mediated contact points for a person or organization, including telephone, email, etc.
Count A count of a discrete element (no unit)
Distance A measure of distance
Duration A length of time
Extension Optional Extensions Element - found in all resources.
HumanName A human's name with the ability to identify parts and usage.
Identifier A technical identifier - identifies some entity uniquely and unambiguously.
Money An amount of money. With regard to precision, see [[X]]
Narrative A human-readable formatted text, including images.
Period A time period defined by a start and end date and optionally time.
Quantity A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies.
Range A set of ordered Quantities defined by a low and high limit.
Ratio A relationship of two Quantity values - expressed as a numerator and a denominator.
Reference A reference from one resource to another.
SampledData A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data.
Timing Specifies an event that may occur multiple times. Timing schedules are used for to record when things are expected or requested to occur.
base64Binary A stream of bytes
boolean Value of "true" or "false"
code A string which has at least one character and no leading or trailing whitespace and where there is no whitespace other than single spaces in the contents
date A date, or partial date (e.g. just year or year + month). There is no time zone. The format is a union of the schema types gYear, gYearMonth and date. Dates SHALL be valid dates.
dateTime A date, date-time or partial date (e.g. just year or year + month). If hours and minutes are specified, a time zone SHALL be populated. The format is a union of the schema types gYear, gYearMonth, date and dateTime. Seconds may be provided but may also be ignored. Dates SHALL be valid dates.
decimal A rational number with implicit precision
id Any combination of lowercase letters, numerals, "-" and ".", with a length limit of 36 characters. (This might be an integer, an unprefixed OID, UUID or any other identifier pattern that meets these constraints.) Systems SHALL send ids as lower-case but SHOULD interpret them case-insensitively.
instant An instant in time - known at least to the second
integer A whole number
oid An oid represented as a URI
string A sequence of Unicode characters
time A time during the day, with no date specified
uri String of characters used to identify a name or a resource
uuid A UUID, represented as a URI
+
+
+ + Valueset "media-type" to support automated processing + http://hl7.org/fhir/vs/media-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

MediaType

Whether the Media is a photo, video, or audio

This value set defines its own terms in the system http://hl7.org/fhir/media-type

CodeDisplayDefinition
photo The media consists of one or more unmoving images, including photographs, computer-generated graphs and charts, and scanned documents.
video The media consists of a series of frames that capture a moving image.
audio The media consists of a sound recording.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

MediaType

Whether the Media is a photo, video, or audio

This value set defines its own terms in the system http://hl7.org/fhir/media-type

CodeDisplayDefinition
photo The media consists of one or more unmoving images, including photographs, computer-generated graphs and charts, and scanned documents.
video The media consists of a series of frames that capture a moving image.
audio The media consists of a sound recording.
+
+
+ + Valueset "resource-profile-status" to support automated processing + http://hl7.org/fhir/vs/resource-profile-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ResourceProfileStatus

The lifecycle status of a Resource Profile

This value set defines its own terms in the system http://hl7.org/fhir/resource-profile-status

CodeDisplayDefinition
draft This profile is still under development.
active This profile is ready for normal use.
retired This profile has been deprecated, withdrawn or superseded and should no longer be used.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ResourceProfileStatus

The lifecycle status of a Resource Profile

This value set defines its own terms in the system http://hl7.org/fhir/resource-profile-status

CodeDisplayDefinition
draft This profile is still under development.
active This profile is ready for normal use.
retired This profile has been deprecated, withdrawn or superseded and should no longer be used.
+
+
+ + Valueset "participantstatus" to support automated processing + http://hl7.org/fhir/vs/participantstatus + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ParticipantStatus

The Participation status of an appointment

This value set defines its own terms in the system http://hl7.org/fhir/participantstatus

CodeDisplayDefinition
accepted The appointment participant has accepted that they can attend the appointment at the time specified in the AppointmentResponse.
declined The appointment participant has declined the appointment.
tentative The appointment participant has tentatively accepted the appointment.
in-process The participant has in-process the appointment.
completed The participant has completed the appointment.
needs-action This is the intitial status of an appointment participant until a participant has replied. It implies that there is no commitment for the appointment.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ParticipantStatus

The Participation status of an appointment

This value set defines its own terms in the system http://hl7.org/fhir/participantstatus

CodeDisplayDefinition
accepted The appointment participant has accepted that they can attend the appointment at the time specified in the AppointmentResponse.
declined The appointment participant has declined the appointment.
tentative The appointment participant has tentatively accepted the appointment.
in-process The participant has in-process the appointment.
completed The participant has completed the appointment.
needs-action This is the intitial status of an appointment participant until a participant has replied. It implies that there is no commitment for the appointment.
+
+
+ + Valueset "referralstatus" to support automated processing + http://hl7.org/fhir/vs/referralstatus + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ReferralStatus

The status of the referral

This value set defines its own terms in the system http://hl7.org/fhir/referralstatus

CodeDisplayDefinition
draft A draft referral that has yet to be send.
sent The referral has been transmitted, but not yet acknowledged by the recipient.
active The referral has been acknowledged by the recipient, and is in the process of being actioned.
cancelled The referral has been cancelled without being completed. For example it is no longer needed.
refused The recipient has declined to accept the referral.
completed The referral has been completely actioned.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ReferralStatus

The status of the referral

This value set defines its own terms in the system http://hl7.org/fhir/referralstatus

CodeDisplayDefinition
draft A draft referral that has yet to be send.
sent The referral has been transmitted, but not yet acknowledged by the recipient.
active The referral has been acknowledged by the recipient, and is in the process of being actioned.
cancelled The referral has been cancelled without being completed. For example it is no longer needed.
refused The recipient has declined to accept the referral.
completed The referral has been completely actioned.
+
+
+ + Valueset "address-use" to support automated processing + http://hl7.org/fhir/vs/address-use + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AddressUse

The use of an address

This value set defines its own terms in the system http://hl7.org/fhir/address-use

CodeDisplayDefinitionv3 Map (AddressUse)v2 Map (0190)
home A communication address at a home.=H~H
work An office address. First choice for business related contacts during business hours.=WP~O
temp A temporary address. The period can provide more detailed information.=TMP~C
old This address is no longer in use (or was never correct, but retained for records).>OLD
>BAD
>BA(unclear about old addresses)
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AddressUse

The use of an address

This value set defines its own terms in the system http://hl7.org/fhir/address-use

CodeDisplayDefinitionv3 Map (AddressUse)v2 Map (0190)
home A communication address at a home.=H~H
work An office address. First choice for business related contacts during business hours.=WP~O
temp A temporary address. The period can provide more detailed information.=TMP~C
old This address is no longer in use (or was never correct, but retained for records).>OLD
>BAD
>BA(unclear about old addresses)
+
+
+ + Valueset "encounter-state" to support automated processing + http://hl7.org/fhir/vs/encounter-state + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

EncounterState

Current state of the encounter

This value set defines its own terms in the system http://hl7.org/fhir/encounter-state

CodeDisplayDefinition
planned The Encounter has not yet started.
in progress The Encounter has begun and the patient is present / the practitioner and the patient are meeting.
onleave The Encounter has begun, but the patient is temporarily on leave.
finished The Encounter has ended.
cancelled The Encounter has ended before it has begun.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

EncounterState

Current state of the encounter

This value set defines its own terms in the system http://hl7.org/fhir/encounter-state

CodeDisplayDefinition
planned The Encounter has not yet started.
in progress The Encounter has begun and the patient is present / the practitioner and the patient are meeting.
onleave The Encounter has begun, but the patient is temporarily on leave.
finished The Encounter has ended.
cancelled The Encounter has ended before it has begun.
+
+
+ + Valueset "resource-observation-def-status" to support automated processing + http://hl7.org/fhir/vs/resource-observation-def-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ResourceDataElementStatus

The lifecycle status of a Resource data element

This value set defines its own terms in the system http://hl7.org/fhir/resource-observation-def-status

CodeDisplayDefinition
draft This data element is still under development.
active This data element is ready for normal use.
retired This data element has been deprecated, withdrawn or superseded and should no longer be used.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ResourceDataElementStatus

The lifecycle status of a Resource data element

This value set defines its own terms in the system http://hl7.org/fhir/resource-observation-def-status

CodeDisplayDefinition
draft This data element is still under development.
active This data element is ready for normal use.
retired This data element has been deprecated, withdrawn or superseded and should no longer be used.
+
+
+ + Valueset "imaging-modality" to support automated processing + http://hl7.org/fhir/vs/imaging-modality + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ImagingModality

Type of acquired image data in the instance

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    ARAutorefractionAutorefraction device
    BMDBone Mineral DensitometryBone Mineral Densitometry by X-Ray (modality), including dual-energy X-Ray absorptiometry (DXA) and morphometric X-Ray absorptiometry (MXA)
    BDUSUltrasound Bone DensitometryUltrasound Bone Densitometry (modality)
    EPSCardiac ElectrophysiologyCardiac Electrophysiology device
    CRComputed RadiographyComputed Radiography device
    CTComputed TomographyComputed Tomography device
    DXDigital RadiographyDigital Radiography device
    ECGElectrocardiographyElectrocardiography device
    ESEndoscopyEndoscopy device
    XCExternal-camera PhotographyExternal-camera Photography device
    GMGeneral MicroscopyGeneral Microscopy device
    HDHemodynamic WaveformHemodynamic Waveform acquisition device
    IOIntra-oral RadiographyIntra-oral Radiography device
    IVOCTIntravascular Optical Coherence TomographyIntravascular Optical Coherence Tomography device
    IVUSIntravascular UltrasoundIntravascular Ultrasound device
    KERKeratometryKeratometry device
    LENLensometryLensometry device
    MRMagnetic ResonanceMagnetic Resonance device
    MGMammographyMammography device
    NMNuclear MedicineNuclear Medicine device
    OAMOphthalmic Axial MeasurementsMeasurements of the axial length of the eye which are done by various devices
    OCTOptical Coherence TomographyModality device that uses an interferometric, non-invasive optical tomographic technique to image 2D slices and 3D volumes of tissue using visible and near visible frequencies.
    OPMOphthalmic MappingModality device that measures corneal topography, corneal or retinal thickness, and other similar parameters that are typically displayed as maps.
    OPOphthalmic photographyOphthalmic photography modality
    OPROphthalmic RefractionModality device that measures the refractive characteristics of the eye.
    OPTOphthalmic TomographyTomography of the eye acquired by a modality that is based on light and optical principles. Tomography based on other principles, such as ultrasound, is excluded.
    OPVOphthalmic Visual FieldModality device that measures visual fields and perform visual perimetry.
    PXPanoramic X-RayPanoramic X-Ray device
    PTPositron emission tomographyPositron emission tomography (PET) device
    RFRadiofluoroscopyRadiofluoroscopy device
    RGRadiographic imagingRadiographic imaging (conventional film/screen)
    SMSlide MicroscopySlide Microscopy
    SRFSubjective RefractionSubjective Refraction device
    USUltrasoundUltrasound device
    VAVisual AcuityVisual Acuity device
    XAX-Ray AngiographyX-Ray Angiography device
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ImagingModality

Type of acquired image data in the instance

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    ARAutorefractionAutorefraction device
    BMDBone Mineral DensitometryBone Mineral Densitometry by X-Ray (modality), including dual-energy X-Ray absorptiometry (DXA) and morphometric X-Ray absorptiometry (MXA)
    BDUSUltrasound Bone DensitometryUltrasound Bone Densitometry (modality)
    EPSCardiac ElectrophysiologyCardiac Electrophysiology device
    CRComputed RadiographyComputed Radiography device
    CTComputed TomographyComputed Tomography device
    DXDigital RadiographyDigital Radiography device
    ECGElectrocardiographyElectrocardiography device
    ESEndoscopyEndoscopy device
    XCExternal-camera PhotographyExternal-camera Photography device
    GMGeneral MicroscopyGeneral Microscopy device
    HDHemodynamic WaveformHemodynamic Waveform acquisition device
    IOIntra-oral RadiographyIntra-oral Radiography device
    IVOCTIntravascular Optical Coherence TomographyIntravascular Optical Coherence Tomography device
    IVUSIntravascular UltrasoundIntravascular Ultrasound device
    KERKeratometryKeratometry device
    LENLensometryLensometry device
    MRMagnetic ResonanceMagnetic Resonance device
    MGMammographyMammography device
    NMNuclear MedicineNuclear Medicine device
    OAMOphthalmic Axial MeasurementsMeasurements of the axial length of the eye which are done by various devices
    OCTOptical Coherence TomographyModality device that uses an interferometric, non-invasive optical tomographic technique to image 2D slices and 3D volumes of tissue using visible and near visible frequencies.
    OPMOphthalmic MappingModality device that measures corneal topography, corneal or retinal thickness, and other similar parameters that are typically displayed as maps.
    OPOphthalmic photographyOphthalmic photography modality
    OPROphthalmic RefractionModality device that measures the refractive characteristics of the eye.
    OPTOphthalmic TomographyTomography of the eye acquired by a modality that is based on light and optical principles. Tomography based on other principles, such as ultrasound, is excluded.
    OPVOphthalmic Visual FieldModality device that measures visual fields and perform visual perimetry.
    PXPanoramic X-RayPanoramic X-Ray device
    PTPositron emission tomographyPositron emission tomography (PET) device
    RFRadiofluoroscopyRadiofluoroscopy device
    RGRadiographic imagingRadiographic imaging (conventional film/screen)
    SMSlide MicroscopySlide Microscopy
    SRFSubjective RefractionSubjective Refraction device
    USUltrasoundUltrasound device
    VAVisual AcuityVisual Acuity device
    XAX-Ray AngiographyX-Ray Angiography device
+
+
+ + Valueset "type-restful-interaction" to support automated processing + http://hl7.org/fhir/vs/type-restful-interaction + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

TypeRestfulInteraction

Operations supported by REST at the type or instance level

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/restful-interaction
    CodeDisplayDefinition
    readreadRead the current state of the resource
    vreadvreadRead the state of a specific version of the resource
    updateupdateUpdate an existing resource by its id (or create it if it is new)
    deletedeleteDelete a resource
    history-instancehistory-instanceRetrieve the update history for a particular resource
    validatevalidateCheck that the content would be acceptable as an update
    history-typehistory-typeRetrieve the update history for a all resources of a particular type
    createcreateCreate a new resource with a server assigned id
    search-typesearch-typeSearch all resources of the specified type based on some filter criteria
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

TypeRestfulInteraction

Operations supported by REST at the type or instance level

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/restful-interaction
    CodeDisplayDefinition
    readreadRead the current state of the resource
    vreadvreadRead the state of a specific version of the resource
    updateupdateUpdate an existing resource by its id (or create it if it is new)
    deletedeleteDelete a resource
    history-instancehistory-instanceRetrieve the update history for a particular resource
    validatevalidateCheck that the content would be acceptable as an update
    history-typehistory-typeRetrieve the update history for a all resources of a particular type
    createcreateCreate a new resource with a server assigned id
    search-typesearch-typeSearch all resources of the specified type based on some filter criteria
+
+
+ + Valueset "composition-attestation-mode" to support automated processing + http://hl7.org/fhir/vs/composition-attestation-mode + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

CompositionAttestationMode

The way in which a person authenticated a composition

This value set defines its own terms in the system http://hl7.org/fhir/composition-attestation-mode

CodeDisplayDefinition
personal The person authenticated the content in their personal capacity.
professional The person authenticated the content in their professional capacity.
legal The person authenticated the content and accepted legal responsibility for its content.
official The organization authenticated the content as consistent with their policies and procedures.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

CompositionAttestationMode

The way in which a person authenticated a composition

This value set defines its own terms in the system http://hl7.org/fhir/composition-attestation-mode

CodeDisplayDefinition
personal The person authenticated the content in their personal capacity.
professional The person authenticated the content in their professional capacity.
legal The person authenticated the content and accepted legal responsibility for its content.
official The organization authenticated the content as consistent with their policies and procedures.
+
+
+ + Valueset "answer-format" to support automated processing + http://hl7.org/fhir/vs/answer-format + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AnswerFormat

The expected format of an answer

This value set defines its own terms in the system http://hl7.org/fhir/answer-format

CodeDisplayDefinition
boolean Answer is a yes/no answer.
decimal Answer is a floating point number.
integer Answer is an integer.
date Answer is a date.
dateTime Answer is a date and time.
instant Answer is a system timestamp.
time Answer is a time independent of date.
string Answer is a short (few words to short sentence) free-text entry.
text Answer is a long (potentially multi-paragram) free-text entry.
choice Answer is a choice from a list of options.
open-choice Answer is a choice from a list of options or a free-text entry.
attachment Answer is binary content such as a image, PDF, etc.
reference Answer is a reference to another resource (practitioner, organization, etc.).
quantity Answer is a combination of a numeric value and unit.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AnswerFormat

The expected format of an answer

This value set defines its own terms in the system http://hl7.org/fhir/answer-format

CodeDisplayDefinition
boolean Answer is a yes/no answer.
decimal Answer is a floating point number.
integer Answer is an integer.
date Answer is a date.
dateTime Answer is a date and time.
instant Answer is a system timestamp.
time Answer is a time independent of date.
string Answer is a short (few words to short sentence) free-text entry.
text Answer is a long (potentially multi-paragram) free-text entry.
choice Answer is a choice from a list of options.
open-choice Answer is a choice from a list of options or a free-text entry.
attachment Answer is binary content such as a image, PDF, etc.
reference Answer is a reference to another resource (practitioner, organization, etc.).
quantity Answer is a combination of a numeric value and unit.
+
+
+ + Valueset "object-role" to support automated processing + http://hl7.org/fhir/vs/object-role + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SecurityEventObjectRole

Code representing the functional application role of Participant Object being audited

This value set defines its own terms in the system http://hl7.org/fhir/object-role

CodeDisplayDefinition
1 PatientThis object is the patient that is the subject of care related to this event. It is identifiable by patient ID or equivalent. The patient may be either human or animal.
2 LocationThis is a location identified as related to the event. This is usually the location where the event took place. Note that for shipping, the usual events are arrival at a location or departure from a location.
3 ReportThis object is any kind of persistent document created as a result of the event. This could be a paper report, film, electronic report, DICOM Study, etc. Issues related to medical records life cycle management are conveyed elsewhere.
4 ResourceA logical object related to the event. (Deprecated).
5 Master fileThis is any configurable file used to control creation of documents. Examples include the objects maintained by the HL7 Master File transactions, Value Sets, etc.
6 UserA human participant not otherwise identified by some other category.
7 List(deprecated).
8 DoctorTypically a licensed person who is providing or performing care related to the event, generally a physician. The key distinction between doctor and practitioner is with regards to their role, not the licensing. The doctor is the human who actually performed the work. The practitioner is the human or organization that is responsible for the work.
9 SubscriberA person or system that is being notified as part of the event. This is relevant in situations where automated systems provide notifications to other parties when an event took place.
10 GuarantorInsurance company, or any other organization who accepts responsibility for paying for the healthcare event.
11 Security User EntityA person or active system object involved in the event with a security role.
12 Security User GroupA person or system object involved in the event with the authority to modify security roles of other objects.
13 Security ResourceA passive object, such as a role table, that is relevant to the event.
14 Security Granularity Definition(deprecated) Relevant to certain RBAC security methodologies.
15 PractitionerAny person or organization responsible for providing care. This encompasses all forms of care, licensed or otherwise, and all sorts of teams and care groups. Note, the distinction between practitioners and the doctor that actually provided the care to the patient.
16 Data DestinationThe source or destination for data transfer, when it does not match some other role.
17 Data RepositoryA source or destination for data transfer, that acts as an archive, database, or similar role.
18 ScheduleAn object that holds schedule information. This could be an appointment book, availability information, etc.
19 CustomerAn organization or person that is the recipient of services. This could be an organization that is buying services for a patient, or a person that is buying services for an animal.
20 JobAn order, task, work item, procedure step, or other description of work to be performed. E.g., a particular instance of an MPPS.
21 Job StreamA list of jobs or a system that provides lists of jobs. E.g., an MWL SCP.
22 Table(Deprecated).
23 Routing CriteriaAn object that specifies or controls the routing or delivery of items. For example, a distribution list is the routing criteria for mail. The items delivered may be documents, jobs, or other objects.
24 QueryThe contents of a query. This is used to capture the contents of any kind of query. For security surveillance purposes knowing the queries being made is very important.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SecurityEventObjectRole

Code representing the functional application role of Participant Object being audited

This value set defines its own terms in the system http://hl7.org/fhir/object-role

CodeDisplayDefinition
1 PatientThis object is the patient that is the subject of care related to this event. It is identifiable by patient ID or equivalent. The patient may be either human or animal.
2 LocationThis is a location identified as related to the event. This is usually the location where the event took place. Note that for shipping, the usual events are arrival at a location or departure from a location.
3 ReportThis object is any kind of persistent document created as a result of the event. This could be a paper report, film, electronic report, DICOM Study, etc. Issues related to medical records life cycle management are conveyed elsewhere.
4 ResourceA logical object related to the event. (Deprecated).
5 Master fileThis is any configurable file used to control creation of documents. Examples include the objects maintained by the HL7 Master File transactions, Value Sets, etc.
6 UserA human participant not otherwise identified by some other category.
7 List(deprecated).
8 DoctorTypically a licensed person who is providing or performing care related to the event, generally a physician. The key distinction between doctor and practitioner is with regards to their role, not the licensing. The doctor is the human who actually performed the work. The practitioner is the human or organization that is responsible for the work.
9 SubscriberA person or system that is being notified as part of the event. This is relevant in situations where automated systems provide notifications to other parties when an event took place.
10 GuarantorInsurance company, or any other organization who accepts responsibility for paying for the healthcare event.
11 Security User EntityA person or active system object involved in the event with a security role.
12 Security User GroupA person or system object involved in the event with the authority to modify security roles of other objects.
13 Security ResourceA passive object, such as a role table, that is relevant to the event.
14 Security Granularity Definition(deprecated) Relevant to certain RBAC security methodologies.
15 PractitionerAny person or organization responsible for providing care. This encompasses all forms of care, licensed or otherwise, and all sorts of teams and care groups. Note, the distinction between practitioners and the doctor that actually provided the care to the patient.
16 Data DestinationThe source or destination for data transfer, when it does not match some other role.
17 Data RepositoryA source or destination for data transfer, that acts as an archive, database, or similar role.
18 ScheduleAn object that holds schedule information. This could be an appointment book, availability information, etc.
19 CustomerAn organization or person that is the recipient of services. This could be an organization that is buying services for a patient, or a person that is buying services for an animal.
20 JobAn order, task, work item, procedure step, or other description of work to be performed. E.g., a particular instance of an MPPS.
21 Job StreamA list of jobs or a system that provides lists of jobs. E.g., an MWL SCP.
22 Table(Deprecated).
23 Routing CriteriaAn object that specifies or controls the routing or delivery of items. For example, a distribution list is the routing criteria for mail. The items delivered may be documents, jobs, or other objects.
24 QueryThe contents of a query. This is used to capture the contents of any kind of query. For security surveillance purposes knowing the queries being made is very important.
+
+
+ + Valueset "care-plan-status" to support automated processing + http://hl7.org/fhir/vs/care-plan-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

CarePlanStatus

Indicates whether the plan is currently being acted upon, represents future intentions or is now just historical record.

This value set defines its own terms in the system http://hl7.org/fhir/care-plan-status

CodeDisplayDefinition
planned The plan is in development or awaiting use but is not yet intended to be acted upon.
active The plan is intended to be followed and used as part of patient care.
completed The plan is no longer in use and is not expected to be followed or used in patient care.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

CarePlanStatus

Indicates whether the plan is currently being acted upon, represents future intentions or is now just historical record.

This value set defines its own terms in the system http://hl7.org/fhir/care-plan-status

CodeDisplayDefinition
planned The plan is in development or awaiting use but is not yet intended to be acted upon.
active The plan is intended to be followed and used as part of patient care.
completed The plan is no longer in use and is not expected to be followed or used in patient care.
+
+
+ + Valueset "care-plan-activity-status" to support automated processing + http://hl7.org/fhir/vs/care-plan-activity-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

CarePlanActivityStatus

Indicates where the activity is at in its overall life cycle

This value set defines its own terms in the system http://hl7.org/fhir/care-plan-activity-status

CodeDisplayDefinition
not started Activity is planned but no action has yet been taken.
scheduled Appointment or other booking has occurred but activity has not yet begun.
in progress Activity has been started but is not yet complete.
on hold Activity was started but has temporarily ceased with an expectation of resumption at a future time.
completed The activities have been completed (more or less) as planned.
cancelled The activities have been ended prior to completion (perhaps even before they were started).
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

CarePlanActivityStatus

Indicates where the activity is at in its overall life cycle

This value set defines its own terms in the system http://hl7.org/fhir/care-plan-activity-status

CodeDisplayDefinition
not started Activity is planned but no action has yet been taken.
scheduled Appointment or other booking has occurred but activity has not yet begun.
in progress Activity has been started but is not yet complete.
on hold Activity was started but has temporarily ceased with an expectation of resumption at a future time.
completed The activities have been completed (more or less) as planned.
cancelled The activities have been ended prior to completion (perhaps even before they were started).
+
+
+ + Valueset "probability-distribution-type" to support automated processing + http://hl7.org/fhir/vs/probability-distribution-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ProbabilityDistributionType

Codes specifying the type of probability distribution

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/ProbabilityDistributionType
    CodeDisplayDefinition
    BbetaThe beta-distribution is used for data that is bounded on both sides and may or may not be skewed (e.g., occurs when probabilities are estimated.) Two parameters a and b are available to adjust the curve. The mean m and variance s2 relate as follows: m = a/ (a + b) and s2 = ab/((a + b)2 (a + b + 1)).
    EexponentialUsed for data that describes extinction. The exponential distribution is a special form of g-distribution where a = 1, hence, the relationship to mean m and variance s2 are m = b and s2 = b2.
    FFUsed to describe the quotient of two c2 random variables. The F-distribution has two parameters n1 and n2, which are the numbers of degrees of freedom of the numerator and denominator variable respectively. The relationship to mean m and variance s2 are: m = n2 / (n2 - 2) and s2 = (2 n2 (n2 + n1 - 2)) / (n1 (n2 - 2)2 (n2 - 4)).
    G(gamma)The gamma-distribution used for data that is skewed and bounded to the right, i.e. where the maximum of the distribution curve is located near the origin. The g-distribution has a two parameters a and b. The relationship to mean m and variance s2 is m = a b and s2 = a b2.
    LNlog-normalThe logarithmic normal distribution is used to transform skewed random variable X into a normally distributed random variable U = log X. The log-normal distribution can be specified with the properties mean m and standard deviation s. Note however that mean m and standard deviation s are the parameters of the raw value distribution, not the transformed parameters of the lognormal distribution that are conventionally referred to by the same letters. Those log-normal parameters mlog and slog relate to the mean m and standard deviation s of the data value through slog2 = log (s2/m2 + 1) and mlog = log m - slog2/2.
    Nnormal (Gaussian)This is the well-known bell-shaped normal distribution. Because of the central limit theorem, the normal distribution is the distribution of choice for an unbounded random variable that is an outcome of a combination of many stochastic processes. Even for values bounded on a single side (i.e. greater than 0) the normal distribution may be accurate enough if the mean is "far away" from the bound of the scale measured in terms of standard deviations.
    TTUsed to describe the quotient of a normal random variable and the square root of a c2 random variable. The t-distribution has one parameter n, the number of degrees of freedom. The relationship to mean m and variance s2 are: m = 0 and s2 = n / (n - 2)
    UuniformThe uniform distribution assigns a constant probability over the entire interval of possible outcomes, while all outcomes outside this interval are assumed to have zero probability. The width of this interval is 2s sqrt(3). Thus, the uniform distribution assigns the probability densities f(x) = sqrt(2 s sqrt(3)) to values m - s sqrt(3) >= x <= m + s sqrt(3) and f(x) = 0 otherwise.
    X2chi squareUsed to describe the sum of squares of random variables which occurs when a variance is estimated (rather than presumed) from the sample. The only parameter of the c2-distribution is n, so called the number of degrees of freedom (which is the number of independent parts in the sum). The c2-distribution is a special type of g-distribution with parameter a = n /2 and b = 2. Hence, m = n and s2 = 2 n.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ProbabilityDistributionType

Codes specifying the type of probability distribution

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/ProbabilityDistributionType
    CodeDisplayDefinition
    BbetaThe beta-distribution is used for data that is bounded on both sides and may or may not be skewed (e.g., occurs when probabilities are estimated.) Two parameters a and b are available to adjust the curve. The mean m and variance s2 relate as follows: m = a/ (a + b) and s2 = ab/((a + b)2 (a + b + 1)).
    EexponentialUsed for data that describes extinction. The exponential distribution is a special form of g-distribution where a = 1, hence, the relationship to mean m and variance s2 are m = b and s2 = b2.
    FFUsed to describe the quotient of two c2 random variables. The F-distribution has two parameters n1 and n2, which are the numbers of degrees of freedom of the numerator and denominator variable respectively. The relationship to mean m and variance s2 are: m = n2 / (n2 - 2) and s2 = (2 n2 (n2 + n1 - 2)) / (n1 (n2 - 2)2 (n2 - 4)).
    G(gamma)The gamma-distribution used for data that is skewed and bounded to the right, i.e. where the maximum of the distribution curve is located near the origin. The g-distribution has a two parameters a and b. The relationship to mean m and variance s2 is m = a b and s2 = a b2.
    LNlog-normalThe logarithmic normal distribution is used to transform skewed random variable X into a normally distributed random variable U = log X. The log-normal distribution can be specified with the properties mean m and standard deviation s. Note however that mean m and standard deviation s are the parameters of the raw value distribution, not the transformed parameters of the lognormal distribution that are conventionally referred to by the same letters. Those log-normal parameters mlog and slog relate to the mean m and standard deviation s of the data value through slog2 = log (s2/m2 + 1) and mlog = log m - slog2/2.
    Nnormal (Gaussian)This is the well-known bell-shaped normal distribution. Because of the central limit theorem, the normal distribution is the distribution of choice for an unbounded random variable that is an outcome of a combination of many stochastic processes. Even for values bounded on a single side (i.e. greater than 0) the normal distribution may be accurate enough if the mean is "far away" from the bound of the scale measured in terms of standard deviations.
    TTUsed to describe the quotient of a normal random variable and the square root of a c2 random variable. The t-distribution has one parameter n, the number of degrees of freedom. The relationship to mean m and variance s2 are: m = 0 and s2 = n / (n - 2)
    UuniformThe uniform distribution assigns a constant probability over the entire interval of possible outcomes, while all outcomes outside this interval are assumed to have zero probability. The width of this interval is 2s sqrt(3). Thus, the uniform distribution assigns the probability densities f(x) = sqrt(2 s sqrt(3)) to values m - s sqrt(3) >= x <= m + s sqrt(3) and f(x) = 0 otherwise.
    X2chi squareUsed to describe the sum of squares of random variables which occurs when a variance is estimated (rather than presumed) from the sample. The only parameter of the c2-distribution is n, so called the number of degrees of freedom (which is the number of independent parts in the sum). The c2-distribution is a special type of g-distribution with parameter a = n /2 and b = 2. Hence, m = n and s2 = 2 n.
+
+
+ + Valueset "use-link" to support automated processing + http://hl7.org/fhir/vs/use-link + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Use

Complete, proposed, exploratory, other

This value set defines its own terms in the system http://hl7.org/fhir/use-link

CodeDisplayDefinition
complete The treatment is complete and this represents a Claim for the services.
proposed The treatment is proposed and this represents a Pre-authorization for the services.
exploratory The treatment is proposed and this represents a Pre-determination for the services.
other A locally defined or otherwise resolved status.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Use

Complete, proposed, exploratory, other

This value set defines its own terms in the system http://hl7.org/fhir/use-link

CodeDisplayDefinition
complete The treatment is complete and this represents a Claim for the services.
proposed The treatment is proposed and this represents a Pre-authorization for the services.
exploratory The treatment is proposed and this represents a Pre-determination for the services.
other A locally defined or otherwise resolved status.
+
+
+ + Valueset "observation-relationshiptypes" to support automated processing + http://hl7.org/fhir/vs/observation-relationshiptypes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ObservationRelationshipType

Codes specifying how two observations are related

This value set defines its own terms in the system http://hl7.org/fhir/observation-relationshiptypes

CodeDisplayDefinitionv3 Map (ActRrelationshipType)
has-component The target observation is a component of this observation (e.g. Systolic and Diastolic Blood Pressure).=COMP
has-member This observation is a group observation (e.g. a battery, a panel of tests, a set of vital sign measurements) that includes the target as a member of the group.=MBR
derived-from The target observation is part of the information from which this observation value is derived (e.g. calculated anion gap, Apgar score).=DRIV
sequel-to This observation follows the target observation (e.g. timed tests such as Glucose Tolerance Test).=SEQL
replaces This observation replaces a previous observation (i.e. a revised value). The target observation is now obsolete.=RPLC
qualified-by The value of the target observation qualifies (refines) the semantics of the source observation (e.g. a lipaemia measure target from a plasma measure).=QUALF
interfered-by The value of the target observation interferes (degardes quality, or prevents valid observation) with the semantics of the source observation (e.g. a hemolysis measure target from a plasma potassium measure which has no value).=INTF
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ObservationRelationshipType

Codes specifying how two observations are related

This value set defines its own terms in the system http://hl7.org/fhir/observation-relationshiptypes

CodeDisplayDefinitionv3 Map (ActRrelationshipType)
has-component The target observation is a component of this observation (e.g. Systolic and Diastolic Blood Pressure).=COMP
has-member This observation is a group observation (e.g. a battery, a panel of tests, a set of vital sign measurements) that includes the target as a member of the group.=MBR
derived-from The target observation is part of the information from which this observation value is derived (e.g. calculated anion gap, Apgar score).=DRIV
sequel-to This observation follows the target observation (e.g. timed tests such as Glucose Tolerance Test).=SEQL
replaces This observation replaces a previous observation (i.e. a revised value). The target observation is now obsolete.=RPLC
qualified-by The value of the target observation qualifies (refines) the semantics of the source observation (e.g. a lipaemia measure target from a plasma measure).=QUALF
interfered-by The value of the target observation interferes (degardes quality, or prevents valid observation) with the semantics of the source observation (e.g. a hemolysis measure target from a plasma potassium measure which has no value).=INTF
+
+
+ + Valueset "units-of-time" to support automated processing + http://hl7.org/fhir/vs/units-of-time + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

UnitsOfTime

A unit of time (units from UCUM)

Copyright Statement: UCUM is Copyright © 1999-2013 Regenstrief Institute, Inc. and The UCUM Organization, Indianapolis, IN. All rights reserved. See http://unitsofmeasure.org/trac//wiki/TermsOfUse for details

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://unitsofmeasure.org
    CodeDisplayDefinition
    s
    min
    h
    d
    wk
    mo
    a
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

UnitsOfTime

A unit of time (units from UCUM)

Copyright Statement: UCUM is Copyright © 1999-2013 Regenstrief Institute, Inc. and The UCUM Organization, Indianapolis, IN. All rights reserved. See http://unitsofmeasure.org/trac//wiki/TermsOfUse for details

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://unitsofmeasure.org
    CodeDisplayDefinition
    s
    min
    h
    d
    wk
    mo
    a
+
+
+ + Valueset "response-code" to support automated processing + http://hl7.org/fhir/vs/response-code + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ResponseType

The kind of response to a message

This value set defines its own terms in the system http://hl7.org/fhir/response-code

CodeDisplayDefinition
ok The message was accepted and processed without error.
transient-error Some internal unexpected error occurred - wait and try again. Note - this is usually used for things like database unavailable, which may be expected to resolve, though human intervention may be required.
fatal-error The message was rejected because of some content in it. There is no point in re-sending without change. The response narrative SHALL describe what the issue is.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ResponseType

The kind of response to a message

This value set defines its own terms in the system http://hl7.org/fhir/response-code

CodeDisplayDefinition
ok The message was accepted and processed without error.
transient-error Some internal unexpected error occurred - wait and try again. Note - this is usually used for things like database unavailable, which may be expected to resolve, though human intervention may be required.
fatal-error The message was rejected because of some content in it. There is no point in re-sending without change. The response narrative SHALL describe what the issue is.
+
+
+ + Valueset "medication-kind" to support automated processing + http://hl7.org/fhir/vs/medication-kind + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

MedicationKind

Whether the medication is a product or a package

This value set defines its own terms in the system http://hl7.org/fhir/medication-kind

CodeDisplayDefinition
product The medication is a product.
package The medication is a package - a contained group of one of more products.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

MedicationKind

Whether the medication is a product or a package

This value set defines its own terms in the system http://hl7.org/fhir/medication-kind

CodeDisplayDefinition
product The medication is a product.
package The medication is a package - a contained group of one of more products.
+
+
+ + Valueset "resource-aggregation-mode" to support automated processing + http://hl7.org/fhir/vs/resource-aggregation-mode + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AggregationMode

How resource references can be aggregated

This value set defines its own terms in the system http://hl7.org/fhir/resource-aggregation-mode

CodeDisplayDefinition
contained The reference is a local reference to a contained resource.
referenced The reference to a resource that has to be resolved externally to the resource that includes the reference.
..bundled The resource the reference points to will be found in the same bundle as the resource that includes the reference.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AggregationMode

How resource references can be aggregated

This value set defines its own terms in the system http://hl7.org/fhir/resource-aggregation-mode

CodeDisplayDefinition
contained The reference is a local reference to a contained resource.
referenced The reference to a resource that has to be resolved externally to the resource that includes the reference.
..bundled The resource the reference points to will be found in the same bundle as the resource that includes the reference.
+
+
+ + Valueset "reaction-risk-certainty" to support automated processing + http://hl7.org/fhir/vs/reaction-risk-certainty + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AdverseReactionRiskCertainty

Statement about the degree of clinical certainty that a Specific Substance was the cause of the Manifestation in an reaction event

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-certainty

CodeDisplayDefinition
unlikely UnlikelyThere is a low level of clinical certainty that the reaction was caused by the identified Substance.
likely LikelyThere is a high level of clinical certainty that the reaction was caused by the identified Substance.
confirmed ConfirmedThere is a very high level of clinical certainty that the reaction was due to the identified Substance, which may include clinical evidence by testing or rechallenge.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AdverseReactionRiskCertainty

Statement about the degree of clinical certainty that a Specific Substance was the cause of the Manifestation in an reaction event

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-certainty

CodeDisplayDefinition
unlikely UnlikelyThere is a low level of clinical certainty that the reaction was caused by the identified Substance.
likely LikelyThere is a high level of clinical certainty that the reaction was caused by the identified Substance.
confirmed ConfirmedThere is a very high level of clinical certainty that the reaction was due to the identified Substance, which may include clinical evidence by testing or rechallenge.
+
+
+ + Valueset "message-transport" to support automated processing + http://hl7.org/fhir/vs/message-transport + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

MessageTransport

The protocol used for message transport

This value set defines its own terms in the system http://hl7.org/fhir/message-transport

CodeDisplayDefinition
http The application sends or receives messages using HTTP POST (may be over http or https).
ftp The application sends or receives messages using File Transfer Protocol.
mllp The application sends or receivers messages using HL7's Minimal Lower Level Protocol.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

MessageTransport

The protocol used for message transport

This value set defines its own terms in the system http://hl7.org/fhir/message-transport

CodeDisplayDefinition
http The application sends or receives messages using HTTP POST (may be over http or https).
ftp The application sends or receives messages using File Transfer Protocol.
mllp The application sends or receivers messages using HL7's Minimal Lower Level Protocol.
+
+
+ + Valueset "resource-types" to support automated processing + http://hl7.org/fhir/vs/resource-types + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ResourceType

One of the resource types defined as part of FHIR

This value set defines its own terms in the system http://hl7.org/fhir/resource-types

CodeDisplayDefinition
AdverseReaction Records an unexpected reaction suspected to be related to the exposure of the reaction subject to a substance.
AdverseReactionRisk Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance.
Alert Prospective warnings of potential issues when providing care to the patient.
AllergyIntolerance Indicates the patient has a susceptibility to an adverse reaction upon exposure to a specified substance.
Appointment A scheduled healthcare event for a patient and/or practitioner(s) where a service may take place at a specific date/time.
AppointmentResponse A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection.
Availability (informative) A container for slot(s) of time that may be available for booking appointments.
Basic Basic is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest.
CarePlan Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions.
ClaimResponse This resource provides the adjudication details from the processing of a Claim resource.
Composition A set of healthcare-related information that is assembled together into a single logical document that provides a single coherent statement of meaning, establishes its own context and that has clinical attestation with regard to who is making the statement.
ConceptMap A statement of relationships from one set of concepts to one or more other concepts - either code systems or data elements, or classes in class models.
Condition Use to record detailed information about conditions, problems or diagnoses recognized by a clinician. There are many uses including: recording a Diagnosis during an Encounter; populating a problem List or a Summary Statement, such as a Discharge Summary.
Conformance A conformance statement is a set of requirements for a desired implementation or a description of how a target application fulfills those requirements in a particular implementation.
Contract A formal agreement between parties regarding the conduct of business, exchange of information or other matters.
Contraindication Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient. E.g. Drug-drug interaction, Ineffective treatment frequency, Procedure-condition conflict, etc.
Coverage Financial instrument which may be used to pay for or reimburse for health care products and services.
DataElement The formal description of a single piece of information that can be gathered and reported.
Device This resource identifies an instance of a manufactured thing that is used in the provision of healthcare without being substantially changed through that activity. The device may be a machine, an insert, a computer, an application, etc. This includes durable (reusable) medical equipment as well as disposable equipment used for diagnostic, treatment, and research for healthcare and public health.
DeviceObservationReport Describes the data produced by a device at a point in time.
DiagnosticOrder A request for a diagnostic investigation service to be performed.
DiagnosticReport The findings and interpretation of diagnostic tests performed on patients, groups of patients, devices, and locations, and/or specimens derived from these. The report includes clinical context such as requesting and provider information, and some mix of atomic results, images, textual and coded interpretation, and formatted representation of diagnostic reports.
DocumentManifest A manifest that defines a set of documents.
DocumentReference A reference to a document.
Encounter An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.
FamilyHistory Significant health events and conditions for people related to the subject relevant in the context of care for the subject.
Group Represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively and are not formally or legally recognized. I.e. A collection of entities that isn't an Organization.
HealthcareService (informative) The details of a Healthcare Service available at a location.
ImagingStudy Manifest of a set of images produced in study. The set of images may include every image in the study, or it may be an incomplete sample, such as a list of key images.
Immunization Immunization event information.
ImmunizationRecommendation A patient's point-of-time immunization status and recommendation with optional supporting justification.
List A set of information summarized from a list of other resources.
Location Details and position information for a physical place where services are provided and resources and participants may be stored, found, contained or accommodated.
Media A photo, video, or audio recording acquired or used in healthcare. The actual content may be inline or provided by direct reference.
Medication Primarily used for identification and definition of Medication, but also covers ingredients and packaging.
MedicationAdministration Describes the event of a patient being given a dose of a medication. This may be as simple as swallowing a tablet or it may be a long running infusion. + +Related resources tie this event to the authorizing prescription, and the specific encounter between patient and health care practitioner.
MedicationDispense Dispensing a medication to a named patient. This includes a description of the supply provided and the instructions for administering the medication.
MedicationPrescription An order for both supply of the medication and the instructions for administration of the medicine to a patient.
MedicationStatement A record of medication being taken by a patient, or that the medication has been given to a patient where the record is the result of a report from the patient or another clinician.
MessageHeader The header for a message exchange that is either requesting or responding to an action. The Reference(s) that are the subject of the action as well as other Information related to the action are typically transmitted in a bundle in which the MessageHeader resource instance is the first resource in the bundle.
Namespace A curated namespace that issues unique symbols within that namespace for the identification of concepts, people, devices, etc. Represents a "System" used within the Identifier and Coding data types.
NutritionOrder A request to supply a diet, formula feeding (enteral) or oral nutritional supplement to a patient/resident.
Observation Measurements and simple assertions made about a patient, device or other subject.
OperationDefinition A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction).
OperationOutcome A collection of error, warning or information messages that result from a system action.
OralHealthClaim A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery.
Order A request to perform an action.
OrderResponse A response to an order.
Organization A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, etc.
Other Other is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest.
Patient Demographics and other administrative information about a person or animal receiving care or other health-related services.
Practitioner A person who is directly or indirectly involved in the provisioning of healthcare.
Procedure An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.
Profile A Resource Profile - a statement of use of one or more FHIR Resources. It may include constraints on Resources and Data Types, Terminology Binding Statements and Extension Definitions.
Provenance Provenance information that describes the activity that led to the creation of a set of resources. This information can be used to help determine their reliability or trace where the information in them came from. The focus of the provenance resource is record keeping, audit and traceability, and not explicit statements of clinical significance.
Query A description of a query with a set of parameters.
Questionnaire A structured set of questions intended to guide the collection of answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions.
QuestionnaireAnswers A structured set of questions and their answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions.
ReferralRequest Used to record and send details about a request for referral service or transfer of a patient to the care of another provider or provider organisation.
RelatedPerson Information about a person that is involved in the care for a patient, but who is not the target of healthcare, nor has a formal responsibility in the care process.
RiskAssessment An assessment of the likely outcome(s) for a patient or other subject as well as the likelihood of each outcome.
SecurityEvent A record of an event made for purposes of maintaining a security log. Typical uses include detection of intrusion attempts and monitoring for inappropriate usage.
Slot (informative) A slot of time on a schedule that may be available for booking appointments.
Specimen Sample for analysis.
Subscription Todo.
Substance A homogeneous material with a definite composition.
Supply A supply - a request for something, and provision of what is supplied.
ValueSet A value set specifies a set of codes drawn from one or more code systems.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ResourceType

One of the resource types defined as part of FHIR

This value set defines its own terms in the system http://hl7.org/fhir/resource-types

CodeDisplayDefinition
AdverseReaction Records an unexpected reaction suspected to be related to the exposure of the reaction subject to a substance.
AdverseReactionRisk Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance.
Alert Prospective warnings of potential issues when providing care to the patient.
AllergyIntolerance Indicates the patient has a susceptibility to an adverse reaction upon exposure to a specified substance.
Appointment A scheduled healthcare event for a patient and/or practitioner(s) where a service may take place at a specific date/time.
AppointmentResponse A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection.
Availability (informative) A container for slot(s) of time that may be available for booking appointments.
Basic Basic is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest.
CarePlan Describes the intention of how one or more practitioners intend to deliver care for a particular patient for a period of time, possibly limited to care for a specific condition or set of conditions.
ClaimResponse This resource provides the adjudication details from the processing of a Claim resource.
Composition A set of healthcare-related information that is assembled together into a single logical document that provides a single coherent statement of meaning, establishes its own context and that has clinical attestation with regard to who is making the statement.
ConceptMap A statement of relationships from one set of concepts to one or more other concepts - either code systems or data elements, or classes in class models.
Condition Use to record detailed information about conditions, problems or diagnoses recognized by a clinician. There are many uses including: recording a Diagnosis during an Encounter; populating a problem List or a Summary Statement, such as a Discharge Summary.
Conformance A conformance statement is a set of requirements for a desired implementation or a description of how a target application fulfills those requirements in a particular implementation.
Contract A formal agreement between parties regarding the conduct of business, exchange of information or other matters.
Contraindication Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient. E.g. Drug-drug interaction, Ineffective treatment frequency, Procedure-condition conflict, etc.
Coverage Financial instrument which may be used to pay for or reimburse for health care products and services.
DataElement The formal description of a single piece of information that can be gathered and reported.
Device This resource identifies an instance of a manufactured thing that is used in the provision of healthcare without being substantially changed through that activity. The device may be a machine, an insert, a computer, an application, etc. This includes durable (reusable) medical equipment as well as disposable equipment used for diagnostic, treatment, and research for healthcare and public health.
DeviceObservationReport Describes the data produced by a device at a point in time.
DiagnosticOrder A request for a diagnostic investigation service to be performed.
DiagnosticReport The findings and interpretation of diagnostic tests performed on patients, groups of patients, devices, and locations, and/or specimens derived from these. The report includes clinical context such as requesting and provider information, and some mix of atomic results, images, textual and coded interpretation, and formatted representation of diagnostic reports.
DocumentManifest A manifest that defines a set of documents.
DocumentReference A reference to a document.
Encounter An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.
FamilyHistory Significant health events and conditions for people related to the subject relevant in the context of care for the subject.
Group Represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively and are not formally or legally recognized. I.e. A collection of entities that isn't an Organization.
HealthcareService (informative) The details of a Healthcare Service available at a location.
ImagingStudy Manifest of a set of images produced in study. The set of images may include every image in the study, or it may be an incomplete sample, such as a list of key images.
Immunization Immunization event information.
ImmunizationRecommendation A patient's point-of-time immunization status and recommendation with optional supporting justification.
List A set of information summarized from a list of other resources.
Location Details and position information for a physical place where services are provided and resources and participants may be stored, found, contained or accommodated.
Media A photo, video, or audio recording acquired or used in healthcare. The actual content may be inline or provided by direct reference.
Medication Primarily used for identification and definition of Medication, but also covers ingredients and packaging.
MedicationAdministration Describes the event of a patient being given a dose of a medication. This may be as simple as swallowing a tablet or it may be a long running infusion. + +Related resources tie this event to the authorizing prescription, and the specific encounter between patient and health care practitioner.
MedicationDispense Dispensing a medication to a named patient. This includes a description of the supply provided and the instructions for administering the medication.
MedicationPrescription An order for both supply of the medication and the instructions for administration of the medicine to a patient.
MedicationStatement A record of medication being taken by a patient, or that the medication has been given to a patient where the record is the result of a report from the patient or another clinician.
MessageHeader The header for a message exchange that is either requesting or responding to an action. The Reference(s) that are the subject of the action as well as other Information related to the action are typically transmitted in a bundle in which the MessageHeader resource instance is the first resource in the bundle.
Namespace A curated namespace that issues unique symbols within that namespace for the identification of concepts, people, devices, etc. Represents a "System" used within the Identifier and Coding data types.
NutritionOrder A request to supply a diet, formula feeding (enteral) or oral nutritional supplement to a patient/resident.
Observation Measurements and simple assertions made about a patient, device or other subject.
OperationDefinition A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction).
OperationOutcome A collection of error, warning or information messages that result from a system action.
OralHealthClaim A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery.
Order A request to perform an action.
OrderResponse A response to an order.
Organization A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, etc.
Other Other is a conformant for handling resource concepts not yet defined for FHIR or outside HL7's scope of interest.
Patient Demographics and other administrative information about a person or animal receiving care or other health-related services.
Practitioner A person who is directly or indirectly involved in the provisioning of healthcare.
Procedure An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.
Profile A Resource Profile - a statement of use of one or more FHIR Resources. It may include constraints on Resources and Data Types, Terminology Binding Statements and Extension Definitions.
Provenance Provenance information that describes the activity that led to the creation of a set of resources. This information can be used to help determine their reliability or trace where the information in them came from. The focus of the provenance resource is record keeping, audit and traceability, and not explicit statements of clinical significance.
Query A description of a query with a set of parameters.
Questionnaire A structured set of questions intended to guide the collection of answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions.
QuestionnaireAnswers A structured set of questions and their answers. The questions are ordered and grouped into coherent subsets, corresponding to the structure of the grouping of the underlying questions.
ReferralRequest Used to record and send details about a request for referral service or transfer of a patient to the care of another provider or provider organisation.
RelatedPerson Information about a person that is involved in the care for a patient, but who is not the target of healthcare, nor has a formal responsibility in the care process.
RiskAssessment An assessment of the likely outcome(s) for a patient or other subject as well as the likelihood of each outcome.
SecurityEvent A record of an event made for purposes of maintaining a security log. Typical uses include detection of intrusion attempts and monitoring for inappropriate usage.
Slot (informative) A slot of time on a schedule that may be available for booking appointments.
Specimen Sample for analysis.
Subscription Todo.
Substance A homogeneous material with a definite composition.
Supply A supply - a request for something, and provision of what is supplied.
ValueSet A value set specifies a set of codes drawn from one or more code systems.
+
+
+ + Valueset "query-outcome" to support automated processing + http://hl7.org/fhir/vs/query-outcome + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

QueryOutcome

The outcome of processing a query request

This value set defines its own terms in the system http://hl7.org/fhir/query-outcome

CodeDisplayDefinition
ok The query was processed successfully.
limited The query was processed successfully, but some additional limitations were added.
refused The server refused to process the query.
error The server tried to process the query, but some error occurred.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

QueryOutcome

The outcome of processing a query request

This value set defines its own terms in the system http://hl7.org/fhir/query-outcome

CodeDisplayDefinition
ok The query was processed successfully.
limited The query was processed successfully, but some additional limitations were added.
refused The server refused to process the query.
error The server tried to process the query, but some error occurred.
+
+
+ + Valueset "message-significance-category" to support automated processing + http://hl7.org/fhir/vs/message-significance-category + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

MessageSignificanceCategory

The impact of the content of a message

This value set defines its own terms in the system http://hl7.org/fhir/message-significance-category

CodeDisplayDefinition
Consequence The message represents/requests a change that should not be processed more than once. E.g. Making a booking for an appointment.
Currency The message represents a response to query for current information. Retrospective processing is wrong and/or wasteful.
Notification The content is not necessarily intended to be current, and it can be reprocessed, though there may be version issues created by processing old notifications.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

MessageSignificanceCategory

The impact of the content of a message

This value set defines its own terms in the system http://hl7.org/fhir/message-significance-category

CodeDisplayDefinition
Consequence The message represents/requests a change that should not be processed more than once. E.g. Making a booking for an appointment.
Currency The message represents a response to query for current information. Retrospective processing is wrong and/or wasteful.
Notification The content is not necessarily intended to be current, and it can be reprocessed, though there may be version issues created by processing old notifications.
+
+
+ + Valueset "care-plan-goal-status" to support automated processing + http://hl7.org/fhir/vs/care-plan-goal-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

CarePlanGoalStatus

Indicates whether the goal has been met and is still being targeted

This value set defines its own terms in the system http://hl7.org/fhir/care-plan-goal-status

CodeDisplayDefinition
in progress The goal is being sought but has not yet been reached. (Also applies if goal was reached in the past but there has been regression and goal is being sought again).
achieved The goal has been met and no further action is needed.
sustaining The goal has been met, but ongoing activity is needed to sustain the goal objective.
cancelled The goal is no longer being sought.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

CarePlanGoalStatus

Indicates whether the goal has been met and is still being targeted

This value set defines its own terms in the system http://hl7.org/fhir/care-plan-goal-status

CodeDisplayDefinition
in progress The goal is being sought but has not yet been reached. (Also applies if goal was reached in the past but there has been regression and goal is being sought again).
achieved The goal has been met and no further action is needed.
sustaining The goal has been met, but ongoing activity is needed to sustain the goal objective.
cancelled The goal is no longer being sought.
+
+
+ + Valueset "concept-equivalence" to support automated processing + http://hl7.org/fhir/vs/concept-equivalence + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ConceptMapEquivalence

The degree of equivalence between concepts

This value set defines its own terms in the system http://hl7.org/fhir/concept-equivalence

CodeDisplayDefinition
equal The definitions of the concepts are exactly the same (i.e. only grammatical differences) and structural implications of meaning are identifical or irrelevant (i.e. intensionally identical).
equivalent The definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e. extensionally identical).
wider The target mapping is wider in meaning than the source concept.
..subsumes The target mapping subsumes the meaning of the source concept (e.g. the source is-a target).
narrower The target mapping is narrower in meaning that the source concept. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when atempting to use these mappings operationally.
..specialises The target mapping specialises the meaning of the source concept (e.g. the target is-a source).
inexact The target mapping overlaps with the source concept, but both source and target cover additional meaning. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when atempting to use these mappings operationally.
unmatched There is no match for this concept in the destination concept system.
..disjoint This is an explicit assertion that there is no mapping between the source and target concept.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ConceptMapEquivalence

The degree of equivalence between concepts

This value set defines its own terms in the system http://hl7.org/fhir/concept-equivalence

CodeDisplayDefinition
equal The definitions of the concepts are exactly the same (i.e. only grammatical differences) and structural implications of meaning are identifical or irrelevant (i.e. intensionally identical).
equivalent The definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e. extensionally identical).
wider The target mapping is wider in meaning than the source concept.
..subsumes The target mapping subsumes the meaning of the source concept (e.g. the source is-a target).
narrower The target mapping is narrower in meaning that the source concept. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when atempting to use these mappings operationally.
..specialises The target mapping specialises the meaning of the source concept (e.g. the target is-a source).
inexact The target mapping overlaps with the source concept, but both source and target cover additional meaning. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when atempting to use these mappings operationally.
unmatched There is no match for this concept in the destination concept system.
..disjoint This is an explicit assertion that there is no mapping between the source and target concept.
+
+
+ + Valueset "special-type" to support automated processing + http://hl7.org/fhir/vs/special-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

QuestionnaireGroupSpecialType

If specified, indicates that the group should be rendered as a repeating header or footer on each "page" of the questionnaire.

This value set defines its own terms in the system http://hl7.org/fhir/special-type

CodeDisplayDefinition
header The group should repeat at the top of each "page" or rendered portion of the questionnaire.
footer The group should repeat at the bottom of each "page" or rendered portion of the questionnaire.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

QuestionnaireGroupSpecialType

If specified, indicates that the group should be rendered as a repeating header or footer on each "page" of the questionnaire.

This value set defines its own terms in the system http://hl7.org/fhir/special-type

CodeDisplayDefinition
header The group should repeat at the top of each "page" or rendered portion of the questionnaire.
footer The group should repeat at the bottom of each "page" or rendered portion of the questionnaire.
+
+
+ + Valueset "slotstatus" to support automated processing + http://hl7.org/fhir/vs/slotstatus + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SlotStatus

The free/busy status of an appointment

This value set defines its own terms in the system http://hl7.org/fhir/slotstatus

CodeDisplayDefinition
BUSY Indicates that the time interval is busy because one or more events have been scheduled for that interval.
FREE Indicates that the time interval is free for scheduling.
BUSY-UNAVAILABLE Indicates that the time interval is busy and that the interval can not be scheduled.
BUSY-TENTATIVE Indicates that the time interval is busy because one or more events have been tentatively scheduled for that interval.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SlotStatus

The free/busy status of an appointment

This value set defines its own terms in the system http://hl7.org/fhir/slotstatus

CodeDisplayDefinition
BUSY Indicates that the time interval is busy because one or more events have been scheduled for that interval.
FREE Indicates that the time interval is free for scheduling.
BUSY-UNAVAILABLE Indicates that the time interval is busy and that the interval can not be scheduled.
BUSY-TENTATIVE Indicates that the time interval is busy because one or more events have been tentatively scheduled for that interval.
+
+
+ + Valueset "condition-relationship-type" to support automated processing + http://hl7.org/fhir/vs/condition-relationship-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ConditionRelationshipType

The type of relationship between a condition and its related item

This value set defines its own terms in the system http://hl7.org/fhir/condition-relationship-type

CodeDisplayDefinition
due-to this condition follows the identified condition/procedure/substance and is a consequence of it.
following this condition follows the identified condition/procedure/substance, but it is not known whether they are causually linked.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ConditionRelationshipType

The type of relationship between a condition and its related item

This value set defines its own terms in the system http://hl7.org/fhir/condition-relationship-type

CodeDisplayDefinition
due-to this condition follows the identified condition/procedure/substance and is a consequence of it.
following this condition follows the identified condition/procedure/substance, but it is not known whether they are causually linked.
+
+
+ + Valueset "security-event-outcome" to support automated processing + http://hl7.org/fhir/vs/security-event-outcome + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SecurityEventOutcome

Indicates whether the event succeeded or failed

This value set defines its own terms in the system http://hl7.org/fhir/security-event-outcome

CodeDisplayDefinition
0 SuccessThe operation completed successfully (whether with warnings or not).
4 Minor failureThe action was not successful due to some kind of catered for error (often equivalent to an HTTP 400 response).
8 Serious failureThe action was not successful due to some kind of unexpected error (often equivalent to an HTTP 500 response).
12 Major failureAn error of such magnitude occurred that the system is not longer available for use (i.e. the system died).
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SecurityEventOutcome

Indicates whether the event succeeded or failed

This value set defines its own terms in the system http://hl7.org/fhir/security-event-outcome

CodeDisplayDefinition
0 SuccessThe operation completed successfully (whether with warnings or not).
4 Minor failureThe action was not successful due to some kind of catered for error (often equivalent to an HTTP 400 response).
8 Serious failureThe action was not successful due to some kind of unexpected error (often equivalent to an HTTP 500 response).
12 Major failureAn error of such magnitude occurred that the system is not longer available for use (i.e. the system died).
+
+
+ + Valueset "restful-security-service" to support automated processing + http://hl7.org/fhir/vs/restful-security-service + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

RestfulSecurityService

Types of security services used with FHIR

This value set defines its own terms in the system http://hl7.org/fhir/restful-security-service

CodeDisplayDefinition
OAuth OAuth (see oauth.net).
OAuth2 OAuth version 2 (see oauth.net).
NTLM Microsoft NTLM Authentication.
Basic Basic authentication defined in HTTP specification.
Kerberos see http://www.ietf.org/rfc/rfc4120.txt.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

RestfulSecurityService

Types of security services used with FHIR

This value set defines its own terms in the system http://hl7.org/fhir/restful-security-service

CodeDisplayDefinition
OAuth OAuth (see oauth.net).
OAuth2 OAuth version 2 (see oauth.net).
NTLM Microsoft NTLM Authentication.
Basic Basic authentication defined in HTTP specification.
Kerberos see http://www.ietf.org/rfc/rfc4120.txt.
+
+
+ + Valueset "reaction-risk-status" to support automated processing + http://hl7.org/fhir/vs/reaction-risk-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AdverseReactionRiskStatus

Assertion about certainty associated with a propensity, or potential risk, of a reaction to the identified Substance

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-status

CodeDisplayDefinition
unconfirmed UnconfirmedA low level of certainty about the propensity for a reaction to the identified Substance.
confirmed ConfirmedA high level of certainty about the propensity for a reaction to the identified Substance, which may include clinical evidence by testing or rechallenge.
resolved ResolvedA reaction to the identified Substance has been clinically reassessed by testing or rechallenge and considered to be resolved.
refuted RefutedA propensity for a reaction to the identified Substance has been disproven with a high level of clinical certainty, which may include testing or rechallenge, and is refuted.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AdverseReactionRiskStatus

Assertion about certainty associated with a propensity, or potential risk, of a reaction to the identified Substance

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-status

CodeDisplayDefinition
unconfirmed UnconfirmedA low level of certainty about the propensity for a reaction to the identified Substance.
confirmed ConfirmedA high level of certainty about the propensity for a reaction to the identified Substance, which may include clinical evidence by testing or rechallenge.
resolved ResolvedA reaction to the identified Substance has been clinically reassessed by testing or rechallenge and considered to be resolved.
refuted RefutedA propensity for a reaction to the identified Substance has been disproven with a high level of clinical certainty, which may include testing or rechallenge, and is refuted.
+
+
+ + Valueset "reactionSeverity" to support automated processing + http://hl7.org/fhir/vs/reactionSeverity + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ReactionSeverity

The severity of an adverse reaction.

This value set defines its own terms in the system http://hl7.org/fhir/reactionSeverity

CodeDisplayDefinition
severe Severe complications arose due to the reaction.
serious Serious inconvenience to the subject.
moderate Moderate inconvenience to the subject.
minor Minor inconvenience to the subject.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ReactionSeverity

The severity of an adverse reaction.

This value set defines its own terms in the system http://hl7.org/fhir/reactionSeverity

CodeDisplayDefinition
severe Severe complications arose due to the reaction.
serious Serious inconvenience to the subject.
moderate Moderate inconvenience to the subject.
minor Minor inconvenience to the subject.
+
+
+ + Valueset "network-type" to support automated processing + http://hl7.org/fhir/vs/network-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SecurityEventParticipantNetworkType

The type of network access point that originated the audit event

This value set defines its own terms in the system http://hl7.org/fhir/network-type

CodeDisplayDefinition
1 Machine Name, including DNS name.
2 IP Address.
3 Telephone Number.
4 Email address.
5 URI (User directory, HTTP-PUT, ftp, etc.).
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SecurityEventParticipantNetworkType

The type of network access point that originated the audit event

This value set defines its own terms in the system http://hl7.org/fhir/network-type

CodeDisplayDefinition
1 Machine Name, including DNS name.
2 IP Address.
3 Telephone Number.
4 Email address.
5 URI (User directory, HTTP-PUT, ftp, etc.).
+
+
+ + Valueset "namespace-type" to support automated processing + http://hl7.org/fhir/vs/namespace-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

NamespaceType

Identifies the purpose of the namespace

This value set defines its own terms in the system http://hl7.org/fhir/namespace-type

CodeDisplayDefinition
codesystem The namespace is used to define concepts and symbols to represent those concepts. E.g. UCUM, LOINC, NDC code, local lab codes, etc.
identifier The namespace is used to manage identifiers (e.g. license numbers, order numbers, etc.).
root The namespace is used as the root for other identifiers and namespaces.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

NamespaceType

Identifies the purpose of the namespace

This value set defines its own terms in the system http://hl7.org/fhir/namespace-type

CodeDisplayDefinition
codesystem The namespace is used to define concepts and symbols to represent those concepts. E.g. UCUM, LOINC, NDC code, local lab codes, etc.
identifier The namespace is used to manage identifiers (e.g. license numbers, order numbers, etc.).
root The namespace is used as the root for other identifiers and namespaces.
+
+
+ + Valueset "object-lifecycle" to support automated processing + http://hl7.org/fhir/vs/object-lifecycle + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SecurityEventObjectLifecycle

Identifier for the data life-cycle stage for the participant object

This value set defines its own terms in the system http://hl7.org/fhir/object-lifecycle

CodeDisplayDefinition
1 Origination / Creation.
2 Import / Copy from original.
3 Amendment.
4 Verification.
5 Translation.
6 Access / Use.
7 De-identification.
8 Aggregation, summarization, derivation.
9 Report.
10 Export / Copy to target.
11 Disclosure.
12 Receipt of disclosure.
13 Archiving.
14 Logical deletion.
15 Permanent erasure / Physical destruction.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SecurityEventObjectLifecycle

Identifier for the data life-cycle stage for the participant object

This value set defines its own terms in the system http://hl7.org/fhir/object-lifecycle

CodeDisplayDefinition
1 Origination / Creation.
2 Import / Copy from original.
3 Amendment.
4 Verification.
5 Translation.
6 Access / Use.
7 De-identification.
8 Aggregation, summarization, derivation.
9 Report.
10 Export / Copy to target.
11 Disclosure.
12 Receipt of disclosure.
13 Archiving.
14 Logical deletion.
15 Permanent erasure / Physical destruction.
+
+
+ + Valueset "name-part-qualifier" to support automated processing + http://hl7.org/fhir/vs/name-part-qualifier + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

EntityNamePartQualifier

A set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/EntityNamePartQualifierR2
    CodeDisplayDefinition
    LSlegal statusDescription:For organizations a suffix indicating the legal status, e.g., "Inc.", "Co.", "AG", "GmbH", "B.V." "S.A.", "Ltd." etc.
    ACacademicDescription:Indicates that a title like "Dr.", "M.D." or "Ph.D." is an academic title.
    NBnobilityDescription:A nobility title such as Sir, Count, Grafin.
    PRprofessionalDescription:Primarily in the British Imperial culture people tend to have an abbreviation of their professional organization as part of their credential titles.
    HONhonorificDescription:A honorific such as "The Right Honorable" or "Weledelgeleerde Heer".
    BRbirthDescription:A name that a person was given at birth or established as a consequence of adoption.
    + + Note: This is not used for temporary names assigned at birth such as "Baby of Smith" a" which is just a name with a use code of "TEMP".
    ADacquiredDescription:A name part a person acquired. The name part may be acquired by adoption, or the person may have chosen to use the name part for some other reason.
    + + Note: this differs from an Other/Psuedonym/Alias in that an acquired name part is acquired on a formal basis rather than an informal one (e.g. registered as part of the official name).
    SPspouseDescription:The name assumed from the partner in a marital relationship. Usually the spouse's family name. Note that no inference about gender can be made from the existence of spouse names.
    MIDmiddle nameDescription:Indicates that the name part is a middle name.
    + + Usage Notes: In general, the english "middle name" concept is all of the given names after the first. This qualifier may be used to explicitly indicate which given names are considered to be middle names. The middle name qualifier may also be used with family names. This is a Scandinavian use case, matching the concept of "mellomnavn","mellannamn". Note that there are specific rules that indicate what names may be taken as a mellannamn in different Scandinavian countries.
    CLcallmeDescription:Used to indicate which of the various name parts is used when interacting with the person.
    INinitialDescription:Indicates that a name part is just an initial. Initials do not imply a trailing period since this would not work with non-Latin scripts. In some languages, initials may consist of more than one letter, e.g., "Ph" could stand for "Philippe" or "Th" For "Thomas".
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

EntityNamePartQualifier

A set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/EntityNamePartQualifierR2
    CodeDisplayDefinition
    LSlegal statusDescription:For organizations a suffix indicating the legal status, e.g., "Inc.", "Co.", "AG", "GmbH", "B.V." "S.A.", "Ltd." etc.
    ACacademicDescription:Indicates that a title like "Dr.", "M.D." or "Ph.D." is an academic title.
    NBnobilityDescription:A nobility title such as Sir, Count, Grafin.
    PRprofessionalDescription:Primarily in the British Imperial culture people tend to have an abbreviation of their professional organization as part of their credential titles.
    HONhonorificDescription:A honorific such as "The Right Honorable" or "Weledelgeleerde Heer".
    BRbirthDescription:A name that a person was given at birth or established as a consequence of adoption.
    + + Note: This is not used for temporary names assigned at birth such as "Baby of Smith" a" which is just a name with a use code of "TEMP".
    ADacquiredDescription:A name part a person acquired. The name part may be acquired by adoption, or the person may have chosen to use the name part for some other reason.
    + + Note: this differs from an Other/Psuedonym/Alias in that an acquired name part is acquired on a formal basis rather than an informal one (e.g. registered as part of the official name).
    SPspouseDescription:The name assumed from the partner in a marital relationship. Usually the spouse's family name. Note that no inference about gender can be made from the existence of spouse names.
    MIDmiddle nameDescription:Indicates that the name part is a middle name.
    + + Usage Notes: In general, the english "middle name" concept is all of the given names after the first. This qualifier may be used to explicitly indicate which given names are considered to be middle names. The middle name qualifier may also be used with family names. This is a Scandinavian use case, matching the concept of "mellomnavn","mellannamn". Note that there are specific rules that indicate what names may be taken as a mellannamn in different Scandinavian countries.
    CLcallmeDescription:Used to indicate which of the various name parts is used when interacting with the person.
    INinitialDescription:Indicates that a name part is just an initial. Initials do not imply a trailing period since this would not work with non-Latin scripts. In some languages, initials may consist of more than one letter, e.g., "Ph" could stand for "Philippe" or "Th" For "Thomas".
+
+
+ + Valueset "location-mode" to support automated processing + http://hl7.org/fhir/vs/location-mode + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

LocationMode

Indicates whether a resource instance represents a specific location or a class of locations

This value set defines its own terms in the system http://hl7.org/fhir/location-mode

CodeDisplayDefinition
instance The Location resource represents a specific instance of a Location.
kind The Location represents a class of Locations.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

LocationMode

Indicates whether a resource instance represents a specific location or a class of locations

This value set defines its own terms in the system http://hl7.org/fhir/location-mode

CodeDisplayDefinition
instance The Location resource represents a specific instance of a Location.
kind The Location represents a class of Locations.
+
+
+ + Valueset "resource-slicing-rules" to support automated processing + http://hl7.org/fhir/vs/resource-slicing-rules + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SlicingRules

How slices are interpreted when evaluating an instance

This value set defines its own terms in the system http://hl7.org/fhir/resource-slicing-rules

CodeDisplayDefinition
closed No additional content is allowed other than that described by the slices in this profile.
open Additional content is allowed anywhere in the list.
openAtEnd Additional content is allowed, but only at the end of the list.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SlicingRules

How slices are interpreted when evaluating an instance

This value set defines its own terms in the system http://hl7.org/fhir/resource-slicing-rules

CodeDisplayDefinition
closed No additional content is allowed other than that described by the slices in this profile.
open Additional content is allowed anywhere in the list.
openAtEnd Additional content is allowed, but only at the end of the list.
+
+
+ + Valueset "sensitivitystatus" to support automated processing + http://hl7.org/fhir/vs/sensitivitystatus + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SensitivityStatus

The status of the adverse sensitivity

This value set defines its own terms in the system http://hl7.org/fhir/sensitivitystatus

CodeDisplayDefinition
suspected A suspected sensitivity to a substance.
confirmed The sensitivity has been confirmed and is active.
refuted The sensitivity has been shown to never have existed.
resolved The sensitivity used to exist but no longer does.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SensitivityStatus

The status of the adverse sensitivity

This value set defines its own terms in the system http://hl7.org/fhir/sensitivitystatus

CodeDisplayDefinition
suspected A suspected sensitivity to a substance.
confirmed The sensitivity has been confirmed and is active.
refuted The sensitivity has been shown to never have existed.
resolved The sensitivity used to exist but no longer does.
+
+
+ + Valueset "composition-status" to support automated processing + http://hl7.org/fhir/vs/composition-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

CompositionStatus

The workflow/clinical status of the composition

This value set defines its own terms in the system http://hl7.org/fhir/composition-status

CodeDisplayDefinitionv3 Map (ActStatus)
preliminary This is a preliminary composition or document (also known as initial or interim). The content may be incomplete or unverified.~active
final The composition or document is complete and verified by an appropriate person, and no further work is planned.<completed
appended The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person. The modifications added new information to the composition or document, but did not revise existing content.<completed
amended The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person.<completed
entered in error The composition or document was originally created/issued in error, and this is an amendment that marks that the entire series should not be considered as valid.~nullified
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

CompositionStatus

The workflow/clinical status of the composition

This value set defines its own terms in the system http://hl7.org/fhir/composition-status

CodeDisplayDefinitionv3 Map (ActStatus)
preliminary This is a preliminary composition or document (also known as initial or interim). The content may be incomplete or unverified.~active
final The composition or document is complete and verified by an appropriate person, and no further work is planned.<completed
appended The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person. The modifications added new information to the composition or document, but did not revise existing content.<completed
amended The composition or document has been modified subsequent to being released as "final", and is complete and verified by an authorized person.<completed
entered in error The composition or document was originally created/issued in error, and this is an amendment that marks that the entire series should not be considered as valid.~nullified
+
+
+ + Valueset "document-relationship-type" to support automated processing + http://hl7.org/fhir/vs/document-relationship-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DocumentRelationshipType

The type of relationship between documents

This value set defines its own terms in the system http://hl7.org/fhir/document-relationship-type

CodeDisplayDefinition
replaces This document logically replaces or supercedes the target document.
transforms This document was generated by transforming the target document (e.g. format or language conversion).
signs This document is a signature of the target document.
appends This document adds additional information to the target document.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

DocumentRelationshipType

The type of relationship between documents

This value set defines its own terms in the system http://hl7.org/fhir/document-relationship-type

CodeDisplayDefinition
replaces This document logically replaces or supercedes the target document.
transforms This document was generated by transforming the target document (e.g. format or language conversion).
signs This document is a signature of the target document.
appends This document adds additional information to the target document.
+
+
+ + Valueset "medication-prescription-status" to support automated processing + http://hl7.org/fhir/vs/medication-prescription-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

MedicationPrescriptionStatus

A code specifying the state of the prescribing event. Describes the lifecycle of the prescription.

This value set defines its own terms in the system http://hl7.org/fhir/medication-prescription-status

CodeDisplayDefinitionv3 Map (ctStatus)
active The prescription is 'actionable', but not all actions that are implied by it have occurred yet.active
on hold Actions implied by the prescription have been temporarily halted, but are expected to continue later. May also be called "suspended".suspended
completed All actions that are implied by the prescription have occurred (this will rarely be made explicit).completed
entered in error The prescription was entered in error and therefore nullified.nullified
stopped Actions implied by the prescription have been permanently halted, before all of them occurred.aborted
superceded The prescription was replaced by a newer one, which encompasses all the information in the previous one.obsolete
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

MedicationPrescriptionStatus

A code specifying the state of the prescribing event. Describes the lifecycle of the prescription.

This value set defines its own terms in the system http://hl7.org/fhir/medication-prescription-status

CodeDisplayDefinitionv3 Map (ctStatus)
active The prescription is 'actionable', but not all actions that are implied by it have occurred yet.active
on hold Actions implied by the prescription have been temporarily halted, but are expected to continue later. May also be called "suspended".suspended
completed All actions that are implied by the prescription have occurred (this will rarely be made explicit).completed
entered in error The prescription was entered in error and therefore nullified.nullified
stopped Actions implied by the prescription have been permanently halted, before all of them occurred.aborted
superceded The prescription was replaced by a newer one, which encompasses all the information in the previous one.obsolete
+
+
+ + Valueset "alert-status" to support automated processing + http://hl7.org/fhir/vs/alert-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AlertStatus

Indicates whether this alert is active and needs to be displayed to a user, or whether it is no longer needed or entered in error

This value set defines its own terms in the system http://hl7.org/fhir/alert-status

CodeDisplayDefinition
active A current alert that should be displayed to a user. A system may use the category to determine which roles should view the alert.
inactive The alert does not need to be displayed any more.
entered in error The alert was added in error, and should no longer be displayed.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AlertStatus

Indicates whether this alert is active and needs to be displayed to a user, or whether it is no longer needed or entered in error

This value set defines its own terms in the system http://hl7.org/fhir/alert-status

CodeDisplayDefinition
active A current alert that should be displayed to a user. A system may use the category to determine which roles should view the alert.
inactive The alert does not need to be displayed any more.
entered in error The alert was added in error, and should no longer be displayed.
+
+
+ + Valueset "document-mode" to support automated processing + http://hl7.org/fhir/vs/document-mode + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DocumentMode

Whether the application produces or consumes documents

This value set defines its own terms in the system http://hl7.org/fhir/document-mode

CodeDisplayDefinition
producer The application produces documents of the specified type.
consumer The application consumes documents of the specified type.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

DocumentMode

Whether the application produces or consumes documents

This value set defines its own terms in the system http://hl7.org/fhir/document-mode

CodeDisplayDefinition
producer The application produces documents of the specified type.
consumer The application consumes documents of the specified type.
+
+
+ + Valueset "condition-status" to support automated processing + http://hl7.org/fhir/vs/condition-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ConditionStatus

The clinical status of the Condition or diagnosis

This value set defines its own terms in the system http://hl7.org/fhir/condition-status

CodeDisplayDefinition
provisional This is a tentative diagnosis - still a candidate that is under consideration.
working The patient is being treated on the basis that this is the condition, but it is still not confirmed.
confirmed There is sufficient diagnostic and/or clinical evidence to treat this as a confirmed condition.
refuted This condition has been ruled out by diagnostic and clinical evidence.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ConditionStatus

The clinical status of the Condition or diagnosis

This value set defines its own terms in the system http://hl7.org/fhir/condition-status

CodeDisplayDefinition
provisional This is a tentative diagnosis - still a candidate that is under consideration.
working The patient is being treated on the basis that this is the condition, but it is still not confirmed.
confirmed There is sufficient diagnostic and/or clinical evidence to treat this as a confirmed condition.
refuted This condition has been ruled out by diagnostic and clinical evidence.
+
+
+ + Valueset "subscription-channel-type" to support automated processing + http://hl7.org/fhir/vs/subscription-channel-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SubscriptionChannelType

The type of method used to execute a subscription

This value set defines its own terms in the system http://hl7.org/fhir/subscription-channel-type

CodeDisplayDefinition
rest-hook The channel is executed by making a post to the URI. If a payload is included, the URL is interpreted as the service base, and an update (PUT) is made.
websocket The channel is executed by sending a packet across a web socket connection maintained by the client. The URL identifies the websocket, and the client binds to this URL.
email The channel is executed by sending an email to the email addressed in the URI (which must be a mailto:).
sms The channel is executed by sending an SMS message to the phone number identified in the URL (tel:).
message The channel Is executed by sending a message (e.g. a Bundle with a MessageHeader resource etc) to the application identified in the URI.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SubscriptionChannelType

The type of method used to execute a subscription

This value set defines its own terms in the system http://hl7.org/fhir/subscription-channel-type

CodeDisplayDefinition
rest-hook The channel is executed by making a post to the URI. If a payload is included, the URL is interpreted as the service base, and an update (PUT) is made.
websocket The channel is executed by sending a packet across a web socket connection maintained by the client. The URL identifies the websocket, and the client binds to this URL.
email The channel is executed by sending an email to the email addressed in the URI (which must be a mailto:).
sms The channel is executed by sending an SMS message to the phone number identified in the URL (tel:).
message The channel Is executed by sending a message (e.g. a Bundle with a MessageHeader resource etc) to the application identified in the URI.
+
+
+ + Valueset "message-events" to support automated processing + http://hl7.org/fhir/vs/message-events + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

MessageEvent

One of the message events defined as part of FHIR

This value set defines its own terms in the system http://hl7.org/fhir/message-events

CodeDisplayDefinition
MedicationAdministration-Complete Change the status of a Medication Administration to show that it is complete.
MedicationAdministration-Nullification Someone wishes to record that the record of administration of a medication is in error and should be ignored.
MedicationAdministration-Recording Indicates that a medication has been recorded against the patient's record.
MedicationAdministration-Update Update a Medication Administration record.
admin-notify Notification that a patient or other administrative resource as been created or updated.
conceptmap-translate Translate a code from one value set to another, based on the existing value set and concept maps resources, and/or other additional knowledge available to the server. The coded value is carried as an extension in the message header. The outcome is an operationOutcome with hints, warnings, or errors, or the translated code in an extension.
diagnosticreport-provide Provide a diagnostic report, or update a previously provided diagnostic report.
observation-provide Provide a simple observation or update a previously provided simple observation.
patient-link Notification that two patient records actually identify the same patient.
patient-unlink Notification that previous advice that two patient records concern the same patient is now considered incorrect.
query Request to perform a query according to the attached query resource.
query-response Response with the result of processing the query.
valueset-expand The definition of a value set is used to create a simple collection of codes suitable for use for data entry or validation. An expanded value set will be returned, or an error message.
valueset-validate Validate that a coded value is in the set of codes allowed by a value set. The coded value is carried as an extension in the message header. The outcome is an OperationOutcome with hints, warnings, or errors.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

MessageEvent

One of the message events defined as part of FHIR

This value set defines its own terms in the system http://hl7.org/fhir/message-events

CodeDisplayDefinition
MedicationAdministration-Complete Change the status of a Medication Administration to show that it is complete.
MedicationAdministration-Nullification Someone wishes to record that the record of administration of a medication is in error and should be ignored.
MedicationAdministration-Recording Indicates that a medication has been recorded against the patient's record.
MedicationAdministration-Update Update a Medication Administration record.
admin-notify Notification that a patient or other administrative resource as been created or updated.
conceptmap-translate Translate a code from one value set to another, based on the existing value set and concept maps resources, and/or other additional knowledge available to the server. The coded value is carried as an extension in the message header. The outcome is an operationOutcome with hints, warnings, or errors, or the translated code in an extension.
diagnosticreport-provide Provide a diagnostic report, or update a previously provided diagnostic report.
observation-provide Provide a simple observation or update a previously provided simple observation.
patient-link Notification that two patient records actually identify the same patient.
patient-unlink Notification that previous advice that two patient records concern the same patient is now considered incorrect.
query Request to perform a query according to the attached query resource.
query-response Response with the result of processing the query.
valueset-expand The definition of a value set is used to create a simple collection of codes suitable for use for data entry or validation. An expanded value set will be returned, or an error message.
valueset-validate Validate that a coded value is in the set of codes allowed by a value set. The coded value is carried as an extension in the message header. The outcome is an OperationOutcome with hints, warnings, or errors.
+
+
+ + Valueset "event-timing" to support automated processing + http://hl7.org/fhir/vs/event-timing + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

EventTiming

Real world event that the schedule relates to

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/TimingEvent
    CodeDisplayDefinition
    HSHSDescription: Prior to beginning a regular period of extended sleep (this would exclude naps). Note that this might occur at different times of day depending on a person's regular sleep schedule.
    WAKEWAKEDescription: Upon waking up from a regular period of sleep, in order to start regular activities (this would exclude waking up from a nap or temporarily waking up during a period of sleep)
    + + Usage Notes: e.g.
    + Take pulse rate on waking in management of thyrotoxicosis.
    + Take BP on waking in management of hypertension
    + Take basal body temperature on waking in establishing date of ovulation
    ACACbefore meal (from lat. ante cibus)
    ACMACMbefore breakfast (from lat. ante cibus matutinus)
    ACDACDbefore lunch (from lat. ante cibus diurnus)
    ACVACVbefore dinner (from lat. ante cibus vespertinus)
    PCPCafter meal (from lat. post cibus)
    PCMPCMafter breakfast (from lat. post cibus matutinus)
    PCDPCDafter lunch (from lat. post cibus diurnus)
    PCVPCVafter dinner (from lat. post cibus vespertinus)
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

EventTiming

Real world event that the schedule relates to

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/TimingEvent
    CodeDisplayDefinition
    HSHSDescription: Prior to beginning a regular period of extended sleep (this would exclude naps). Note that this might occur at different times of day depending on a person's regular sleep schedule.
    WAKEWAKEDescription: Upon waking up from a regular period of sleep, in order to start regular activities (this would exclude waking up from a nap or temporarily waking up during a period of sleep)
    + + Usage Notes: e.g.
    + Take pulse rate on waking in management of thyrotoxicosis.
    + Take BP on waking in management of hypertension
    + Take basal body temperature on waking in establishing date of ovulation
    ACACbefore meal (from lat. ante cibus)
    ACMACMbefore breakfast (from lat. ante cibus matutinus)
    ACDACDbefore lunch (from lat. ante cibus diurnus)
    ACVACVbefore dinner (from lat. ante cibus vespertinus)
    PCPCafter meal (from lat. post cibus)
    PCMPCMafter breakfast (from lat. post cibus matutinus)
    PCDPCDafter lunch (from lat. post cibus diurnus)
    PCVPCVafter dinner (from lat. post cibus vespertinus)
+
+
+ + Valueset "link-type" to support automated processing + http://hl7.org/fhir/vs/link-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

LinkType

The type of link between this patient resource and another patient resource.

This value set defines its own terms in the system http://hl7.org/fhir/link-type

CodeDisplayDefinition
replace replaceThe patient resource containing this link must no longer be used. The link points forward to another patient resource that must be used in lieu of the patient resource that contains the link.
refer referThe patient resource containing this link is in use and valid but not considered the main source of information about a patient. The link points forward to another patient resource that should be consulted to retrieve additional patient information.
seealso see alsoThe patient resource containing this link is in use and valid, but points to another patient resource that is known to contain data about the same person. Data in this resource might overlap or contradict information found in the other patient resource. This link does not indicate any relative importance of the resources concerned, and both should be regarded as equally valid.

Additional Language Displays

Coderu
replaceзамена
referссылка
seealso смотри также
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

LinkType

The type of link between this patient resource and another patient resource.

This value set defines its own terms in the system http://hl7.org/fhir/link-type

CodeDisplayDefinition
replace replaceThe patient resource containing this link must no longer be used. The link points forward to another patient resource that must be used in lieu of the patient resource that contains the link.
refer referThe patient resource containing this link is in use and valid but not considered the main source of information about a patient. The link points forward to another patient resource that should be consulted to retrieve additional patient information.
seealso see alsoThe patient resource containing this link is in use and valid, but points to another patient resource that is known to contain data about the same person. Data in this resource might overlap or contradict information found in the other patient resource. This link does not indicate any relative importance of the resources concerned, and both should be regarded as equally valid.

Additional Language Displays

Coderu
replaceзамена
referссылка
seealso смотри также
+
+
+ + Valueset "conformance-statement-status" to support automated processing + http://hl7.org/fhir/vs/conformance-statement-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ConformanceStatementStatus

The status of this conformance statement

This value set defines its own terms in the system http://hl7.org/fhir/conformance-statement-status

CodeDisplayDefinition
draft This conformance statement is still under development.
active This conformance statement is ready for use in production systems.
retired This conformance statement has been withdrawn or superceded and should no longer be used.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ConformanceStatementStatus

The status of this conformance statement

This value set defines its own terms in the system http://hl7.org/fhir/conformance-statement-status

CodeDisplayDefinition
draft This conformance statement is still under development.
active This conformance statement is ready for use in production systems.
retired This conformance statement has been withdrawn or superceded and should no longer be used.
+
+
+ + Valueset "reaction-risk-type" to support automated processing + http://hl7.org/fhir/vs/reaction-risk-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AdverseReactionRiskType

Identification of the underlying physiological mechanism for a Reaction Risk

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-type

CodeDisplayDefinition
immune Immune MediatedImmune mediated reaction, including allergic reactions and hypersensitivities.
non-immune Non-immune mediatedA non-immune mediated reaction, which can include pseudoallergic reactions, side effects, intolerances, drug toxicities (eg to Gentamicin), drug-drug interactions, food-drug interactions, and drug-disease interactions.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AdverseReactionRiskType

Identification of the underlying physiological mechanism for a Reaction Risk

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-type

CodeDisplayDefinition
immune Immune MediatedImmune mediated reaction, including allergic reactions and hypersensitivities.
non-immune Non-immune mediatedA non-immune mediated reaction, which can include pseudoallergic reactions, side effects, intolerances, drug toxicities (eg to Gentamicin), drug-drug interactions, food-drug interactions, and drug-disease interactions.
+
+
+ + Valueset "provenance-entity-role" to support automated processing + http://hl7.org/fhir/vs/provenance-entity-role + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ProvenanceEntityRole

How an entity was used in an activity

This value set defines its own terms in the system http://hl7.org/fhir/provenance-entity-role

CodeDisplayDefinition
derivation A transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a preexisting entity.
..revision A derivation for which the resulting entity is a revised version of some original.
..quotation The repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author.
..source A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ProvenanceEntityRole

How an entity was used in an activity

This value set defines its own terms in the system http://hl7.org/fhir/provenance-entity-role

CodeDisplayDefinition
derivation A transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a preexisting entity.
..revision A derivation for which the resulting entity is a revised version of some original.
..quotation The repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author.
..source A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.
+
+
+ + Valueset "operation-parameter-use" to support automated processing + http://hl7.org/fhir/vs/operation-parameter-use + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

OperationParameterUse

Whether an operation parameter is an input or an output parameter

This value set defines its own terms in the system http://hl7.org/fhir/operation-parameter-use

CodeDisplayDefinition
in This is an input parameter.
out This is an output parameter.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

OperationParameterUse

Whether an operation parameter is an input or an output parameter

This value set defines its own terms in the system http://hl7.org/fhir/operation-parameter-use

CodeDisplayDefinition
in This is an input parameter.
out This is an output parameter.
+
+
+ + Valueset "valueset-status" to support automated processing + http://hl7.org/fhir/vs/valueset-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ValueSetStatus

The lifecycle status of a Value Set or Concept Map

This value set defines its own terms in the system http://hl7.org/fhir/valueset-status

CodeDisplayDefinition
draft DraftThis valueset is still under development.
active ActiveThis valueset is ready for normal use.
retired RetiredThis valueset has been withdrawn or superceded and should no longer be used.

Additional Language Displays

Coderu
draftчерновик
activeактивный
retiredудалён
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ValueSetStatus

The lifecycle status of a Value Set or Concept Map

This value set defines its own terms in the system http://hl7.org/fhir/valueset-status

CodeDisplayDefinition
draft DraftThis valueset is still under development.
active ActiveThis valueset is ready for normal use.
retired RetiredThis valueset has been withdrawn or superceded and should no longer be used.

Additional Language Displays

Coderu
draftчерновик
activeактивный
retiredудалён
+
+
+ + Valueset "property-representation" to support automated processing + http://hl7.org/fhir/vs/property-representation + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

PropertyRepresentation

How a property is represented on the wire

This value set defines its own terms in the system http://hl7.org/fhir/property-representation

CodeDisplayDefinition
xmlAttr In XML, this property is represented as an attribute not an element.
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+

PropertyRepresentation

How a property is represented on the wire

This value set defines its own terms in the system http://hl7.org/fhir/property-representation

CodeDisplayDefinition
xmlAttr In XML, this property is represented as an attribute not an element.
+
+
+ + Valueset "issue-severity" to support automated processing + http://hl7.org/fhir/vs/issue-severity + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

IssueSeverity

How the issue affects the success of the action

This value set defines its own terms in the system http://hl7.org/fhir/issue-severity

CodeDisplayDefinition
fatal The issue caused the action to fail, and no further checking could be performed.
error The issue is sufficiently important to cause the action to fail.
warning The issue is not important enough to cause the action to fail, but may cause it to be performed suboptimally or in a way that is not as desired.
information The issue has no relation to the degree of success of the action.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

IssueSeverity

How the issue affects the success of the action

This value set defines its own terms in the system http://hl7.org/fhir/issue-severity

CodeDisplayDefinition
fatal The issue caused the action to fail, and no further checking could be performed.
error The issue is sufficiently important to cause the action to fail.
warning The issue is not important enough to cause the action to fail, but may cause it to be performed suboptimally or in a way that is not as desired.
information The issue has no relation to the degree of success of the action.
+
+
+ + Valueset "reaction-risk-criticality" to support automated processing + http://hl7.org/fhir/vs/reaction-risk-criticality + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AdverseReactionRiskCriticality

Estimate of the potential clinical harm, or seriousness, of a reaction to an identified Substance

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-criticality

CodeDisplayDefinition
low Low RiskThe potential clinical impact of a future reaction is estimated as low risk. Future exposure to the Substance is considered a relative contra-indication.
high High RiskThe potential clinical impact of a future reaction is estimated as high risk. Future exposure to the Substance may be considered an absolute contra-indication.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AdverseReactionRiskCriticality

Estimate of the potential clinical harm, or seriousness, of a reaction to an identified Substance

This value set defines its own terms in the system http://hl7.org/fhir/reaction-risk-criticality

CodeDisplayDefinition
low Low RiskThe potential clinical impact of a future reaction is estimated as low risk. Future exposure to the Substance is considered a relative contra-indication.
high High RiskThe potential clinical impact of a future reaction is estimated as high risk. Future exposure to the Substance may be considered an absolute contra-indication.
+
+
+ + Valueset "max-occurs" to support automated processing + http://hl7.org/fhir/vs/max-occurs + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

MaxOccurs

Flags an element as having unlimited repetitions

This value set defines its own terms in the system http://hl7.org/fhir/max-occurs

CodeDisplayDefinition
* Element can repeat an unlimited number of times.
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+

MaxOccurs

Flags an element as having unlimited repetitions

This value set defines its own terms in the system http://hl7.org/fhir/max-occurs

CodeDisplayDefinition
* Element can repeat an unlimited number of times.
+
+
+ + Valueset "postal-address-use" to support automated processing + http://hl7.org/fhir/vs/postal-address-use + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

PostalAddressUse

Uses of an address not included in Address.use

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/AddressUse
    CodeDisplayDefinition
    BADbad addressDescription: A flag indicating that the address is bad, in fact, useless.
    CONFconfidential addressDescription: Indicates that the address is considered sensitive and should only be shared or published in accordance with organizational controls governing patient demographic information with increased sensitivity. Uses of Addresses. Lloyd to supply more complete description.
    HPprimary homeDescription: The primary home, to reach a person after business hours.
    HVvacation homeDescription: A vacation home, to reach a person while on vacation.
    DIRdirectDescription: Indicates a work place address or telecommunication address that reaches the individual or organization directly without intermediaries. For phones, often referred to as a 'private line'.
    PUBpublicDescription: Indicates a work place address or telecommunication address that is a 'standard' address which may reach a reception service, mail-room, or other intermediary prior to the target entity.
    PHYSphysical visit addressDescription: Used primarily to visit an address.
    PSTpostal addressDescription: Used to send mail.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

PostalAddressUse

Uses of an address not included in Address.use

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/AddressUse
    CodeDisplayDefinition
    BADbad addressDescription: A flag indicating that the address is bad, in fact, useless.
    CONFconfidential addressDescription: Indicates that the address is considered sensitive and should only be shared or published in accordance with organizational controls governing patient demographic information with increased sensitivity. Uses of Addresses. Lloyd to supply more complete description.
    HPprimary homeDescription: The primary home, to reach a person after business hours.
    HVvacation homeDescription: A vacation home, to reach a person while on vacation.
    DIRdirectDescription: Indicates a work place address or telecommunication address that reaches the individual or organization directly without intermediaries. For phones, often referred to as a 'private line'.
    PUBpublicDescription: Indicates a work place address or telecommunication address that is a 'standard' address which may reach a reception service, mail-room, or other intermediary prior to the target entity.
    PHYSphysical visit addressDescription: Used primarily to visit an address.
    PSTpostal addressDescription: Used to send mail.
+
+
+ + Valueset "constraint-severity" to support automated processing + http://hl7.org/fhir/vs/constraint-severity + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ConstraintSeverity

SHALL applications comply with this constraint?

This value set defines its own terms in the system http://hl7.org/fhir/constraint-severity

CodeDisplayDefinition
error If the constraint is violated, the resource is not conformant.
warning If the constraint is violated, the resource is conformant, but it is not necessarily following best practice.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ConstraintSeverity

SHALL applications comply with this constraint?

This value set defines its own terms in the system http://hl7.org/fhir/constraint-severity

CodeDisplayDefinition
error If the constraint is violated, the resource is not conformant.
warning If the constraint is violated, the resource is conformant, but it is not necessarily following best practice.
+
+
+ + Valueset "contract-type" to support automated processing + http://hl7.org/fhir/vs/contract-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample Contract Type codes. +

Contract Type Codes

This value set includes sample Contract Type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://www.hl7.org/fhir/contracttypecodes

CodeDisplayDefinition
privacy
disclosure
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample Contract Type codes. +

Contract Type Codes

This value set includes sample Contract Type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://www.hl7.org/fhir/contracttypecodes

CodeDisplayDefinition
privacy
disclosure
+
+
+ + Valueset "encounter-admit-source" to support automated processing + http://hl7.org/fhir/vs/encounter-admit-source + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AdmitSource

This value set defines a set of codes that can be used to indicate from where the patient came in.

This value set defines its own terms in the system http://hl7.org/fhir/admit-source

CodeDisplayDefinition
hosp-trans Transferred from other hospital
emd From accident/emergency department
outp From outpatient department
born Born in hospital
gp General Practitioner referral
mp Medical Practitioner/physician referral
nursing From nursing home
psych From psychiatric hospital
rehab From rehabilitation facility
other Other
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AdmitSource

This value set defines a set of codes that can be used to indicate from where the patient came in.

This value set defines its own terms in the system http://hl7.org/fhir/admit-source

CodeDisplayDefinition
hosp-trans Transferred from other hospital
emd From accident/emergency department
outp From outpatient department
born Born in hospital
gp General Practitioner referral
mp Medical Practitioner/physician referral
nursing From nursing home
psych From psychiatric hospital
rehab From rehabilitation facility
other Other
+
+
+ + Valueset "observation-codes" to support automated processing + http://hl7.org/fhir/vs/observation-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes all LOINC codes (TODO: can we exclude panels without excluding too much?) +

LOINC Codes

This value set includes all LOINC codes

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://loinc.org
+
+ + + + + + + + + + + + + + + +
+
+
+ This value set includes all LOINC codes (TODO: can we exclude panels without excluding too much?) +

LOINC Codes

This value set includes all LOINC codes

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://loinc.org
+
+
+ + Valueset "intervention" to support automated processing + http://hl7.org/fhir/vs/intervention + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample Intervention codes. +

Intervention Codes

This value set includes sample Intervention codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/intervention

CodeDisplayDefinition
unknown
other
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample Intervention codes. +

Intervention Codes

This value set includes sample Intervention codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/intervention

CodeDisplayDefinition
unknown
other
+
+
+ + Valueset "icd-10" to support automated processing + http://hl7.org/fhir/vs/icd-10 + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample ICD 10 codes. +

ICD-10 Codes

This value set includes sample ICD-10 codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/icd-10

CodeDisplayDefinition
123456
987654
123987
112233
997755
321789
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample ICD 10 codes. +

ICD-10 Codes

This value set includes sample ICD-10 codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/icd-10

CodeDisplayDefinition
123456
987654
123987
112233
997755
321789
+
+
+ + Valueset "surface" to support automated processing + http://hl7.org/fhir/vs/surface + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes a smattering of FDI tooth surface codes. +

Surface Codes

This value set includes a smattering of FDI tooth surface codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/FDI-surface

CodeDisplayDefinition
M
O
I
D
B
V
L
MO
DO
DI
MOD
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes a smattering of FDI tooth surface codes. +

Surface Codes

This value set includes a smattering of FDI tooth surface codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/FDI-surface

CodeDisplayDefinition
M
O
I
D
B
V
L
MO
DO
DI
MOD
+
+
+ + Valueset "reason-medication-not-given-codes" to support automated processing + http://hl7.org/fhir/vs/reason-medication-not-given-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or + contains concepts to support the medication process.

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or + contains concepts to support the medication process.

+
+
+
+ + Valueset "payeetype" to support automated processing + http://hl7.org/fhir/vs/payeetype + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample Payee type codes. +

Payee type Codes

This value set includes sample Payee type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/payeetype

CodeDisplayDefinition
subscriber
provider
other
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample Payee type codes. +

Payee type Codes

This value set includes sample Payee type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/payeetype

CodeDisplayDefinition
subscriber
provider
other
+
+
+ + Valueset "nutrient-code" to support automated processing + http://hl7.org/fhir/vs/nutrient-code + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

NutrientModifier

NutrientModifier : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+ + + + + + + + + + + + + + + +
+
+

NutrientModifier

NutrientModifier : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+
+ + Valueset "report-names" to support automated processing + http://hl7.org/fhir/vs/report-names + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes all LOINC codes (TODO: narrow this further - diagnostic codes, panels only) +

LOINC Diagnostic Report Codes

This value set includes all the LOINC codes which relate to Diagnostic Observations

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://loinc.org
+
+ + + + + + + + + + + + + + + +
+
+
+ This value set includes all LOINC codes (TODO: narrow this further - diagnostic codes, panels only) +

LOINC Diagnostic Report Codes

This value set includes all the LOINC codes which relate to Diagnostic Observations

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://loinc.org
+
+
+ + Valueset "basic-resource-type" to support automated processing + http://hl7.org/fhir/vs/basic-resource-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Basic Resource Types

This value set defines codes for resources not yet supported by (or which will never be supported by) FHIR. Many of the codes listed here will eventually be turned into official resources. However, there is no guarantee that any particular resource will be created nor that the scope will be exactly as defined by the codes presented here. Codes in this set will be deprecated if/when formal resources are defined that encompass these concepts.

This value set defines its own terms in the system http://hl7.org/fhir/basic-resource-type

CodeDisplayDefinition
CONSENT consentAn assertion of permission for an activity or set of activities to occur, possibly subject to particular limitations. E.g. surgical consent, information disclosure consent, etc.
REFERRAL referralA request that care of a particular type be provided to a patient. Could involve the transfer of care, a consult, etc.
SLOT resource slotA bounded time-period when a particular set of resources (practioners, devices and/or locations) is available for the delivery of healthcare services. Used for scheduling.
APTMT appointmentAn agreement for a particular type of service to occur for a specified patient at a specific time with a particular set of resources (practitioners, devices, locations, etc.)
APTMTREQ appointment requestA request that a time be scheduled for a type of service for a specified patient, potentially subject to other constraints
TRANSFER transferThe transition of a patient or set of material from one location to another
DIET dietThe specification of a set of food and/or other nutritonal material to be delivered to a patient.
ADMINACT administrative activityAn occurrence of a non-care-related event in the healthcare domain, such as approvals, reviews, etc.
EXPOSURE exposureRecord of a situation where a subject was exposed to a substance. Usually of interest to public health.
INVESTIGATION investigationA formalized inquiry into the circumstances surrounding a particular unplanned event or potential event for the purposes of identifying possible causes and contributing factors for the event
ACCOUNT accountA financial instrument used to track costs, charges or other amounts.
INVOICE invoiceA request for payment for goods and/or services. Includes the idea of a healthcare insurance claim.
ADJUDICAT invoice adjudicationThe determination of what will be paid against a particular invoice based on coverage, plan rules, etc.
PAYMENT paymentA record of a transfer of funds between accounts and/or individuals
PREDETREQ predetermination requestA request for a predication of the cost that would be paid under an insurance plan for a hypothetical claim for goods or services
PREDETERMINE predeterminationAn adjudication of what would be paid under an insurance plan for a hypothetical claim for goods or services
STUDY studyAn investigation to determine information about a particular therapy or product
PROTOCOL protocolA set of (possibly conditional) steps to be taken to achieve some aim. Includes study protocols, treatment protocols, emergency protocols, etc.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Basic Resource Types

This value set defines codes for resources not yet supported by (or which will never be supported by) FHIR. Many of the codes listed here will eventually be turned into official resources. However, there is no guarantee that any particular resource will be created nor that the scope will be exactly as defined by the codes presented here. Codes in this set will be deprecated if/when formal resources are defined that encompass these concepts.

This value set defines its own terms in the system http://hl7.org/fhir/basic-resource-type

CodeDisplayDefinition
CONSENT consentAn assertion of permission for an activity or set of activities to occur, possibly subject to particular limitations. E.g. surgical consent, information disclosure consent, etc.
REFERRAL referralA request that care of a particular type be provided to a patient. Could involve the transfer of care, a consult, etc.
SLOT resource slotA bounded time-period when a particular set of resources (practioners, devices and/or locations) is available for the delivery of healthcare services. Used for scheduling.
APTMT appointmentAn agreement for a particular type of service to occur for a specified patient at a specific time with a particular set of resources (practitioners, devices, locations, etc.)
APTMTREQ appointment requestA request that a time be scheduled for a type of service for a specified patient, potentially subject to other constraints
TRANSFER transferThe transition of a patient or set of material from one location to another
DIET dietThe specification of a set of food and/or other nutritonal material to be delivered to a patient.
ADMINACT administrative activityAn occurrence of a non-care-related event in the healthcare domain, such as approvals, reviews, etc.
EXPOSURE exposureRecord of a situation where a subject was exposed to a substance. Usually of interest to public health.
INVESTIGATION investigationA formalized inquiry into the circumstances surrounding a particular unplanned event or potential event for the purposes of identifying possible causes and contributing factors for the event
ACCOUNT accountA financial instrument used to track costs, charges or other amounts.
INVOICE invoiceA request for payment for goods and/or services. Includes the idea of a healthcare insurance claim.
ADJUDICAT invoice adjudicationThe determination of what will be paid against a particular invoice based on coverage, plan rules, etc.
PAYMENT paymentA record of a transfer of funds between accounts and/or individuals
PREDETREQ predetermination requestA request for a predication of the cost that would be paid under an insurance plan for a hypothetical claim for goods or services
PREDETERMINE predeterminationAn adjudication of what would be paid under an insurance plan for a hypothetical claim for goods or services
STUDY studyAn investigation to determine information about a particular therapy or product
PROTOCOL protocolA set of (possibly conditional) steps to be taken to achieve some aim. Includes study protocols, treatment protocols, emergency protocols, etc.
+
+
+ + Valueset "parent-relationship-codes" to support automated processing + http://hl7.org/fhir/vs/parent-relationship-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

The value set includes the v3 RoleCode PRN (parent), TWIN (twin) and all of their specializations. It covers the relationships needed to establish genetic pedigree relationships between family members.

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+

The value set includes the v3 RoleCode PRN (parent), TWIN (twin) and all of their specializations. It covers the relationships needed to establish genetic pedigree relationships between family members.

+
+
+
+ + Valueset "condition-severity" to support automated processing + http://hl7.org/fhir/vs/condition-severity + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

This value set includes the following SNOMED CT "Severity" concepts:

+
    +
  • 399166001: Fatal
  • +
  • 24484000: Severe
  • +
  • 6736007: Moderate
  • +
  • 255604002: Mild
  • +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+

This value set includes the following SNOMED CT "Severity" concepts:

+
    +
  • 399166001: Fatal
  • +
  • 24484000: Severe
  • +
  • 6736007: Moderate
  • +
  • 255604002: Mild
  • +
+
+
+
+ + Valueset "observation-cognitivestatusresultcodes" to support automated processing + http://hl7.org/fhir/vs/observation-cognitivestatusresultcodes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

#CognitiveStatusResultCodes

CognitiveStatusResultCodes: All SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+ + + + + + + + + + + + + + + +
+
+

#CognitiveStatusResultCodes

CognitiveStatusResultCodes: All SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+
+ + Valueset "list-empty-reason" to support automated processing + http://hl7.org/fhir/vs/list-empty-reason + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

List Empty Reasons

General reasons for a list to be empty. Reasons are either related to a summary list (i.e. problem or medication list) or to a workflow related list (i.e. consultation list)

This value set defines its own terms in the system http://hl7.org/fhir/list-empty-reason

CodeDisplayDefinitionComments
nilknown Nil KnownClinical judgement that there are no known items for this list after reasonable investigation. Note that this a positive statement by a clinical user, and not a default position asserted by a computer system in the lack of other information. Example uses:
* For allergies: the patient or patient's agent/guardian has asserted that he/she is not aware of any allergies (NKA - nil known allergies)
* For medications: the patient or patient's agent/guardian has asserted that the patient is known to be taking no medications
* For diagnoses, problems and procedures: the patient or patient's agent/guardian has asserted that there is no known event to record.
Other language is sometimes used for this concept, such as 'no significant [x] known'.
SNOMED CT includes many codes for this general concept, but no single generalisation. If using SNOMED CT, use this code and the appropriate specific SNOMED CT code
notasked Not AskedTHe investigation to find out whether there are items for this list has not occurred
withheld Information WithheldInformation was not provided due to privacy or confidentiality concerns. Note that it should not be assumed that this means that the particular information in question was withheld due to its contents - it can also be a policy decisionIn spite of the definition, this code should be used carefully as it represents potential information leakage or the perception thereof
notstarted Not StartedThe work to populate this list has not yet begun
closed ClosedThis list has now closed or has ceased to be relevant or useful
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

List Empty Reasons

General reasons for a list to be empty. Reasons are either related to a summary list (i.e. problem or medication list) or to a workflow related list (i.e. consultation list)

This value set defines its own terms in the system http://hl7.org/fhir/list-empty-reason

CodeDisplayDefinitionComments
nilknown Nil KnownClinical judgement that there are no known items for this list after reasonable investigation. Note that this a positive statement by a clinical user, and not a default position asserted by a computer system in the lack of other information. Example uses:
* For allergies: the patient or patient's agent/guardian has asserted that he/she is not aware of any allergies (NKA - nil known allergies)
* For medications: the patient or patient's agent/guardian has asserted that the patient is known to be taking no medications
* For diagnoses, problems and procedures: the patient or patient's agent/guardian has asserted that there is no known event to record.
Other language is sometimes used for this concept, such as 'no significant [x] known'.
SNOMED CT includes many codes for this general concept, but no single generalisation. If using SNOMED CT, use this code and the appropriate specific SNOMED CT code
notasked Not AskedTHe investigation to find out whether there are items for this list has not occurred
withheld Information WithheldInformation was not provided due to privacy or confidentiality concerns. Note that it should not be assumed that this means that the particular information in question was withheld due to its contents - it can also be a policy decisionIn spite of the definition, this code should be used carefully as it represents potential information leakage or the perception thereof
notstarted Not StartedThe work to populate this list has not yet begun
closed ClosedThis list has now closed or has ceased to be relevant or useful
+
+
+ + Valueset "oral-prosthodontic-material" to support automated processing + http://hl7.org/fhir/vs/oral-prosthodontic-material + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample Oral Prosthodontic Material type codes. +

Oral Prostho Material type Codes

This value set includes sample Oral Prosthodontic Material type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ex-oralprostho

CodeDisplayDefinition
1
2
3
4
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample Oral Prosthodontic Material type codes. +

Oral Prostho Material type Codes

This value set includes sample Oral Prosthodontic Material type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ex-oralprostho

CodeDisplayDefinition
1
2
3
4
+
+
+ + Valueset "diagnostic-service-sections" to support automated processing + http://hl7.org/fhir/vs/diagnostic-service-sections + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes all codes in HL7 table HL7 v2 table 0074. It grows as new codes are defined by the release of new HL7 versions +

LOINC Diagnostic Report Codes

This value set includes all the codes in HL7 v2 table 0074

This value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + + + +
+
+
+ This value set includes all codes in HL7 table HL7 v2 table 0074. It grows as new codes are defined by the release of new HL7 versions +

LOINC Diagnostic Report Codes

This value set includes all the codes in HL7 v2 table 0074

This value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "documentreference-service-types" to support automated processing + http://hl7.org/fhir/vs/documentreference-service-types + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Document Reference Service Types

Known Service types that can be referred to from a Document Reference

This value set defines its own terms in the system http://hl7.org/fhir/document-reference-service-types

CodeDisplayDefinition
XDS IHE XDS
RLUS OMG RLUS
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+

Document Reference Service Types

Known Service types that can be referred to from a Document Reference

This value set defines its own terms in the system http://hl7.org/fhir/document-reference-service-types

CodeDisplayDefinition
XDS IHE XDS
RLUS OMG RLUS
+
+
+ + Valueset "immunization-recommendation-date-criterion" to support automated processing + http://hl7.org/fhir/vs/immunization-recommendation-date-criterion + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Immunization Recommendation Date Criterion Codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set defines its own terms in the system http://hl7.org/fhir/immunization-recommendation-date-criterion

CodeDisplayDefinition
due dueDate the next dose is considered due
overdue overdueDate the next dose is considered overdue
latest latestThe latest date the next dose is to be given
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Immunization Recommendation Date Criterion Codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set defines its own terms in the system http://hl7.org/fhir/immunization-recommendation-date-criterion

CodeDisplayDefinition
due dueDate the next dose is considered due
overdue overdueDate the next dose is considered overdue
latest latestThe latest date the next dose is to be given
+
+
+ + Valueset "encounter-type" to support automated processing + http://hl7.org/fhir/vs/encounter-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

EncounterType

This example value set defines a set of codes that can be used to indicate the type of encounter: a specific code indicating type of service provided .

This value set defines its own terms in the system http://hl7.org/fhir/encounter-type

CodeDisplayDefinition
ADMS Annual diabetes mellitus screening
BD/BM-clin Bone drilling/bone marrow punction in clinic
CCS60 Infant colon screening - 60 minutes
OKI Outpatient Kenacort injection
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

EncounterType

This example value set defines a set of codes that can be used to indicate the type of encounter: a specific code indicating type of service provided .

This value set defines its own terms in the system http://hl7.org/fhir/encounter-type

CodeDisplayDefinition
ADMS Annual diabetes mellitus screening
BD/BM-clin Bone drilling/bone marrow punction in clinic
CCS60 Infant colon screening - 60 minutes
OKI Outpatient Kenacort injection
+
+
+ + Valueset "security-event-type" to support automated processing + http://hl7.org/fhir/vs/security-event-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Audit Event ID

Event Types for Security Events - defined by DICOM with some FHIR specific additions

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set defines its own terms in the system http://hl7.org/fhir/security-event-type

CodeDisplayDefinition
rest RESTful OperationSecurity Event: Execution of a RESTful operation as defined by FHIR

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    110100Application ActivityAudit event: Application Activity has taken place
    110101Audit Log UsedAudit event: Audit Log has been used
    110102Begin Transferring DICOM InstancesAudit event: Storage of DICOM Instances has begun
    110103DICOM Instances AccessedAudit event: DICOM Instances have been created, read, updated, or deleted -audit event
    110104DICOM Instances TransferredAudit event: Storage of DICOM Instances has been completed
    110105DICOM Study DeletedAudit event: Entire Study has been deleted
    110106ExportAudit event: Data has been exported out of the system
    110107ImportAudit event: Data has been imported into the system
    110108Network EntryAudit event: System has joined or left network
    110112QueryAudit event: Query has been made
    110113Security AlertAudit event: Security Alert has been raised
    110114User AuthenticationAudit event: User Authentication has been attempted
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Audit Event ID

Event Types for Security Events - defined by DICOM with some FHIR specific additions

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set defines its own terms in the system http://hl7.org/fhir/security-event-type

CodeDisplayDefinition
rest RESTful OperationSecurity Event: Execution of a RESTful operation as defined by FHIR

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    110100Application ActivityAudit event: Application Activity has taken place
    110101Audit Log UsedAudit event: Audit Log has been used
    110102Begin Transferring DICOM InstancesAudit event: Storage of DICOM Instances has begun
    110103DICOM Instances AccessedAudit event: DICOM Instances have been created, read, updated, or deleted -audit event
    110104DICOM Instances TransferredAudit event: Storage of DICOM Instances has been completed
    110105DICOM Study DeletedAudit event: Entire Study has been deleted
    110106ExportAudit event: Data has been exported out of the system
    110107ImportAudit event: Data has been imported into the system
    110108Network EntryAudit event: System has joined or left network
    110112QueryAudit event: Query has been made
    110113Security AlertAudit event: Security Alert has been raised
    110114User AuthenticationAudit event: User Authentication has been attempted
+
+
+ + Valueset "adjustment-reason" to support automated processing + http://hl7.org/fhir/vs/adjustment-reason + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes a smattering of Adjustment Reason codes. +

Adjustment Reason Codes

This value set includes a Adjustment Reason codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/adjustment-reason

CodeDisplayDefinition
A001
A002
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes a smattering of Adjustment Reason codes. +

Adjustment Reason Codes

This value set includes a Adjustment Reason codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/adjustment-reason

CodeDisplayDefinition
A001
A002
+
+
+ + Valueset "encounter-participant-type" to support automated processing + http://hl7.org/fhir/vs/encounter-participant-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ParticipantType

This value set defines a set of codes that can be used to indicate how an individual parcitipates in an encounter

This value set defines its own terms in the system http://hl7.org/fhir/participant-type

CodeDisplayDefinition
translator TranslatorA translator who is facilitating communication with the patient during the encounter
emergency EmergencyA person to be contacted in case of an emergency during the encounter

In addition, this value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ParticipantType

This value set defines a set of codes that can be used to indicate how an individual parcitipates in an encounter

This value set defines its own terms in the system http://hl7.org/fhir/participant-type

CodeDisplayDefinition
translator TranslatorA translator who is facilitating communication with the patient during the encounter
emergency EmergencyA person to be contacted in case of an emergency during the encounter

In addition, this value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "other-resource-type" to support automated processing + http://hl7.org/fhir/vs/other-resource-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Other Resource Types

This value set defines codes for resources not yet supported by (or which will never be supported by) FHIR. Many of the codes listed here will eventually be turned into official resources. However, there is no guarantee that any particular resource will be created nor that the scope will be exactly as defined by the codes presented here. Codes in this set will be deprecated if/when formal resources are defined that encompass these concepts.

This value set defines its own terms in the system http://hl7.org/fhir/other-resource-type

CodeDisplayDefinition
CONSENT consentAn assertion of permission for an activity or set of activities to occur, possibly subject to particular limitations. E.g. surgical consent, information disclosure consent, etc.
REFERRAL referralA request that care of a particular type be provided to a patient. Could involve the transfer of care, a consult, etc.
SLOT resource slotA bounded time-period when a particular set of resources (practioners, devices and/or locations) is available for the delivery of healthcare services. Used for scheduling.
APTMT appointmentAn agreement for a particular type of service to occur for a specified patient at a specific time with a particular set of resources (practitioners, devices, locations, etc.)
APTMTREQ appointment requestA request that a time be scheduled for a type of service for a specified patient, potentially subject to other constraints
TRANSFER transferThe transition of a patient or set of material from one location to another
DIET dietThe specification of a set of food and/or other nutritonal material to be delivered to a patient.
ADMINACT administrative activityAn occurrence of a non-care-related event in the healthcare domain, such as approvals, reviews, etc.
EXPOSURE exposureRecord of a situation where a subject was exposed to a substance. Usually of interest to public health.
INVESTIGATION investigationA formalized inquiry into the circumstances surrounding a particular unplanned event or potential event for the purposes of identifying possible causes and contributing factors for the event
ACCOUNT accountA financial instrument used to track costs, charges or other amounts.
INVOICE invoiceA request for payment for goods and/or services. Includes the idea of a healthcare insurance claim.
ADJUDICAT invoice adjudicationThe determination of what will be paid against a particular invoice based on coverage, plan rules, etc.
PAYMENT paymentA record of a transfer of funds between accounts and/or individuals
PREDETREQ predetermination requestA request for a predication of the cost that would be paid under an insurance plan for a hypothetical claim for goods or services
PREDETERMINE predeterminationAn adjudication of what would be paid under an insurance plan for a hypothetical claim for goods or services
STUDY studyAn investigation to determine information about a particular therapy or product
PROTOCOL protocolA set of (possibly conditional) steps to be taken to achieve some aim. Includes study protocols, treatment protocols, emergency protocols, etc.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Other Resource Types

This value set defines codes for resources not yet supported by (or which will never be supported by) FHIR. Many of the codes listed here will eventually be turned into official resources. However, there is no guarantee that any particular resource will be created nor that the scope will be exactly as defined by the codes presented here. Codes in this set will be deprecated if/when formal resources are defined that encompass these concepts.

This value set defines its own terms in the system http://hl7.org/fhir/other-resource-type

CodeDisplayDefinition
CONSENT consentAn assertion of permission for an activity or set of activities to occur, possibly subject to particular limitations. E.g. surgical consent, information disclosure consent, etc.
REFERRAL referralA request that care of a particular type be provided to a patient. Could involve the transfer of care, a consult, etc.
SLOT resource slotA bounded time-period when a particular set of resources (practioners, devices and/or locations) is available for the delivery of healthcare services. Used for scheduling.
APTMT appointmentAn agreement for a particular type of service to occur for a specified patient at a specific time with a particular set of resources (practitioners, devices, locations, etc.)
APTMTREQ appointment requestA request that a time be scheduled for a type of service for a specified patient, potentially subject to other constraints
TRANSFER transferThe transition of a patient or set of material from one location to another
DIET dietThe specification of a set of food and/or other nutritonal material to be delivered to a patient.
ADMINACT administrative activityAn occurrence of a non-care-related event in the healthcare domain, such as approvals, reviews, etc.
EXPOSURE exposureRecord of a situation where a subject was exposed to a substance. Usually of interest to public health.
INVESTIGATION investigationA formalized inquiry into the circumstances surrounding a particular unplanned event or potential event for the purposes of identifying possible causes and contributing factors for the event
ACCOUNT accountA financial instrument used to track costs, charges or other amounts.
INVOICE invoiceA request for payment for goods and/or services. Includes the idea of a healthcare insurance claim.
ADJUDICAT invoice adjudicationThe determination of what will be paid against a particular invoice based on coverage, plan rules, etc.
PAYMENT paymentA record of a transfer of funds between accounts and/or individuals
PREDETREQ predetermination requestA request for a predication of the cost that would be paid under an insurance plan for a hypothetical claim for goods or services
PREDETERMINE predeterminationAn adjudication of what would be paid under an insurance plan for a hypothetical claim for goods or services
STUDY studyAn investigation to determine information about a particular therapy or product
PROTOCOL protocolA set of (possibly conditional) steps to be taken to achieve some aim. Includes study protocols, treatment protocols, emergency protocols, etc.
+
+
+ + Valueset "process-priority" to support automated processing + http://hl7.org/fhir/vs/process-priority + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes the financial priority codes. +

Priority Codes

This value set includes the financial processing priority codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/processpriority

CodeDisplayDefinition
stat
normal
deferred
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes the financial priority codes. +

Priority Codes

This value set includes the financial processing priority codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/processpriority

CodeDisplayDefinition
stat
normal
deferred
+
+
+ + Valueset "ActInvoiceGroupCode" to support automated processing + http://hl7.org/fhir/vs/ActInvoiceGroupCode + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample ActInvoiceGroupCode codes. +

ActInvoiceGroupCode Codes

This value set includes sample ActInvoiceGroupCode codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/actinvoicegroupcode

CodeDisplayDefinition
service
product
group
tax
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample ActInvoiceGroupCode codes. +

ActInvoiceGroupCode Codes

This value set includes sample ActInvoiceGroupCode codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/actinvoicegroupcode

CodeDisplayDefinition
service
product
group
tax
+
+
+ + Valueset "location-physical-type" to support automated processing + http://hl7.org/fhir/vs/location-physical-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

LocationType

This example value set defines a set of codes that can be used to indicate the physical form of the Location.

This value set defines its own terms in the system http://hl7.org/fhir/location-physical-type

CodeDisplayDefinition
bu Building
wi Wing
co Corridor
ro Room
ve Vehicle
ho House
ca Cabinet
rd Road
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

LocationType

This example value set defines a set of codes that can be used to indicate the physical form of the Location.

This value set defines its own terms in the system http://hl7.org/fhir/location-physical-type

CodeDisplayDefinition
bu Building
wi Wing
co Corridor
ro Room
ve Vehicle
ho House
ca Cabinet
rd Road
+
+
+ + Valueset "vaccination-protocol-dose-status" to support automated processing + http://hl7.org/fhir/vs/vaccination-protocol-dose-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Vaccination Protocol Dose Status codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set defines its own terms in the system http://hl7.org/fhir/vaccination-protocol-dose-status

CodeDisplayDefinition
count Counts
nocount Does not Count
+
+ + + + + + + + + + + + + + + + + + + + +
+
+

Vaccination Protocol Dose Status codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set defines its own terms in the system http://hl7.org/fhir/vaccination-protocol-dose-status

CodeDisplayDefinition
count Counts
nocount Does not Count
+
+
+ + Valueset "exclude-food-type" to support automated processing + http://hl7.org/fhir/vs/exclude-food-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ExcludeFoodModifier

ExcludeFoodModifier : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+ + + + + + + + + + + + + + + +
+
+

ExcludeFoodModifier

ExcludeFoodModifier : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+
+ + Valueset "body-site" to support automated processing + http://hl7.org/fhir/vs/body-site + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes all the "Anatomical Structure" SNOMED CT codes (i.e. codes with an is-a relationship with 91723000: Anatomical structure)" +

SNOMED CT Body Structures

This value set includes all the "Anatomical Structure" SNOMED CT codes (i.e. codes with an is-a relationship with 91723000: Anatomical structure)

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 91723000
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes all the "Anatomical Structure" SNOMED CT codes (i.e. codes with an is-a relationship with 91723000: Anatomical structure)" +

SNOMED CT Body Structures

This value set includes all the "Anatomical Structure" SNOMED CT codes (i.e. codes with an is-a relationship with 91723000: Anatomical structure)

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 91723000
+
+
+ + Valueset "specimen-collection-method" to support automated processing + http://hl7.org/fhir/vs/specimen-collection-method + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SpecimenCollectionMethod

This example value set defines a set of codes that can be used to indicate the method of collection of a specimen. It includes values from HL7 v2 table 0048

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://snomed.info/sct
    CodeDisplayDefinition
    119295008Specimen obtained by aspiration
    413651001Bioptics
    360020006Extirpation - action
    430823004Examination of midstream urine specimen
    16404004Induced
    67889009Irrigation
    29240004Autopsy examination
    45710003Sputum
    7800008Punctate
    258431006Scrapings
    20255002Blushing
    386147002Smear procedure
    278450005Finger stick
  • Include all codes defined in http://hl7.org/fhir/v2/0488
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SpecimenCollectionMethod

This example value set defines a set of codes that can be used to indicate the method of collection of a specimen. It includes values from HL7 v2 table 0048

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://snomed.info/sct
    CodeDisplayDefinition
    119295008Specimen obtained by aspiration
    413651001Bioptics
    360020006Extirpation - action
    430823004Examination of midstream urine specimen
    16404004Induced
    67889009Irrigation
    29240004Autopsy examination
    45710003Sputum
    7800008Punctate
    258431006Scrapings
    20255002Blushing
    386147002Smear procedure
    278450005Finger stick
  • Include all codes defined in http://hl7.org/fhir/v2/0488
+
+
+ + Valueset "encounter-special-arrangements" to support automated processing + http://hl7.org/fhir/vs/encounter-special-arrangements + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SpecialArrangements

This value set defines a set of codes that can be used to indicate the kinds of special arrangements in place for a patients visit

This value set defines its own terms in the system http://hl7.org/fhir/encounter-special-arrangements

CodeDisplayDefinition
wheel Wheelchair
stret Stretcher
int Interpreter
att Attendant
dog Guide dog
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SpecialArrangements

This value set defines a set of codes that can be used to indicate the kinds of special arrangements in place for a patients visit

This value set defines its own terms in the system http://hl7.org/fhir/encounter-special-arrangements

CodeDisplayDefinition
wheel Wheelchair
stret Stretcher
int Interpreter
att Attendant
dog Guide dog
+
+
+ + Valueset "specimen-treatment-procedure" to support automated processing + http://hl7.org/fhir/vs/specimen-treatment-procedure + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SpecimenTreatmentProcedure

The technique that is used to perform the process or preserve the specimen

This value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + + + +
+
+

SpecimenTreatmentProcedure

The technique that is used to perform the process or preserve the specimen

This value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "risk-probability" to support automated processing + http://hl7.org/fhir/vs/risk-probability + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Risk Probability

Codes representing the likelihood of a particular outcome in a risk assessment

This value set defines its own terms in the system http://hl7.org/fhir/risk-probability

CodeDisplayDefinition
negligible negligible likelihoodThe specified outcome is exceptionally unlikely
low low likelihoodThe specified outcome is possible but unlikely
moderate moderate likelihoodThe specified outcome has a reasonable likelihood of occurrence
high high likelihoodThe specified outcome is more likely to occur than not
certain certainThe specified outcome is effectively guaranteed
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Risk Probability

Codes representing the likelihood of a particular outcome in a risk assessment

This value set defines its own terms in the system http://hl7.org/fhir/risk-probability

CodeDisplayDefinition
negligible negligible likelihoodThe specified outcome is exceptionally unlikely
low low likelihoodThe specified outcome is possible but unlikely
moderate moderate likelihoodThe specified outcome has a reasonable likelihood of occurrence
high high likelihoodThe specified outcome is more likely to occur than not
certain certainThe specified outcome is effectively guaranteed
+
+
+ + Valueset "contract-term-type" to support automated processing + http://hl7.org/fhir/vs/contract-term-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample Financial Contract Term Type codes. +

Contract Term Type Codes

This value set includes sample Contract Term Type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://www.hl7.org/fhir/contracttermtypecodes

CodeDisplayDefinition
OralHealth
Vision
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample Financial Contract Term Type codes. +

Contract Term Type Codes

This value set includes sample Contract Term Type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://www.hl7.org/fhir/contracttermtypecodes

CodeDisplayDefinition
OralHealth
Vision
+
+
+ + Valueset "dicm-402-roleid" to support automated processing + http://hl7.org/fhir/vs/dicm-402-roleid + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ +

Audit Active Participant Role ID Code

Audit Active Participant Role ID Code

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    110150ApplicationAudit participant role ID of software application
    110151Application LauncherAudit participant role ID of software application launcher, i.e., the entity that started or stopped an application.
    110152Destination Role IDAudit participant role ID of the receiver of data
    110153Source Role IDAudit participant role ID of the sender of data
    110154Destination MediaAudit participant role ID of media receiving data during an export.
    110155Source MediaAudit participant role ID of media providing data during an import.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +

Audit Active Participant Role ID Code

Audit Active Participant Role ID Code

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    110150ApplicationAudit participant role ID of software application
    110151Application LauncherAudit participant role ID of software application launcher, i.e., the entity that started or stopped an application.
    110152Destination Role IDAudit participant role ID of the receiver of data
    110153Source Role IDAudit participant role ID of the sender of data
    110154Destination MediaAudit participant role ID of media receiving data during an export.
    110155Source MediaAudit participant role ID of media providing data during an import.
+
+
+ + Valueset "animal-breeds" to support automated processing + http://hl7.org/fhir/vs/animal-breeds + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AnimalBreeds

This example value set defines a set of codes that can be used to indicate breeds of species.

This value set defines its own terms in the system http://hl7.org/fhir/animal-breed

CodeDisplayDefinition
gsd German Shepherd Dog
irt Irish Terrier
tibmas Tibetan Mastiff
gret Golden Retriever
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AnimalBreeds

This example value set defines a set of codes that can be used to indicate breeds of species.

This value set defines its own terms in the system http://hl7.org/fhir/animal-breed

CodeDisplayDefinition
gsd German Shepherd Dog
irt Irish Terrier
tibmas Tibetan Mastiff
gret Golden Retriever
+
+
+ + Valueset "dataelement-sdcobjectclassproperty" to support automated processing + http://hl7.org/fhir/vs/dataelement-sdcobjectclassproperty + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DataElement SDC Object Class

The allowed codes for identifying the ISO 11179 ObjectClass Property for a particular data element if intended for registration/use within the U.S. Structured Data Capture (SDC) project.

Copyright Statement: This value set includes content from LOINC®, which is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use. This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
  • Include all codes defined in http://loinc.org
  • Include all codes defined in http://www.nlm.nih.gov/research/umls/rxnorm
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+

DataElement SDC Object Class

The allowed codes for identifying the ISO 11179 ObjectClass Property for a particular data element if intended for registration/use within the U.S. Structured Data Capture (SDC) project.

Copyright Statement: This value set includes content from LOINC®, which is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use. This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
  • Include all codes defined in http://loinc.org
  • Include all codes defined in http://www.nlm.nih.gov/research/umls/rxnorm
+
+
+ + Valueset "immunization-route" to support automated processing + http://hl7.org/fhir/vs/immunization-route + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Immunization Route Codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + + + + + + + + + + + + +
+
+

Immunization Route Codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "provenance-agent-type" to support automated processing + http://hl7.org/fhir/vs/provenance-agent-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ProvenanceParticipantType

The type of a provenance participant. Use either a defined FHIR resource type, or, if the reference is not to a resource, one of the defined codes, or some other code if none of the defined codes are appropriate

This value set defines its own terms in the system http://hl7.org/fhir/provenance-participant-type

CodeDisplayDefinition
person The participant is a person acting on their on behalf or on behalf of the patient rather than as an practitioner for an organization. I.e. "not a healthcare provider"
practitioner The participant is a practitioner
organization The participant is an organization
software The participant is a software application
record The participant is a logical record. The record itself participated in the activity
document The participant is a document

In addition, this value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ProvenanceParticipantType

The type of a provenance participant. Use either a defined FHIR resource type, or, if the reference is not to a resource, one of the defined codes, or some other code if none of the defined codes are appropriate

This value set defines its own terms in the system http://hl7.org/fhir/provenance-participant-type

CodeDisplayDefinition
person The participant is a person acting on their on behalf or on behalf of the patient rather than as an practitioner for an organization. I.e. "not a healthcare provider"
practitioner The participant is a practitioner
organization The participant is an organization
software The participant is a software application
record The participant is a logical record. The record itself participated in the activity
document The participant is a document

In addition, this value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "diet-code" to support automated processing + http://hl7.org/fhir/vs/diet-code + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DietCode

DietCode : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+ + + + + + + + + + + + + + + +
+
+

DietCode

DietCode : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+
+ + Valueset "condition-category" to support automated processing + http://hl7.org/fhir/vs/condition-category + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Condition/Problem/Diagnosis Codes

Example value set for Condition (Problem/Diagnosis) Categories

This value set defines its own terms in the system http://hl7.org/fhir/condition-category

CodeDisplayDefinition
complaint ComplaintThe patient considers the condition an issue to be addressed
symptom SymptomA symptom of a condition (as might be mentioned in a review of systems)
finding FindingAn observation made by a healthcare provider
diagnosis DiagnosisThis is a judgment made by a healthcare provider that the patient has a particular disease or condition
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Condition/Problem/Diagnosis Codes

Example value set for Condition (Problem/Diagnosis) Categories

This value set defines its own terms in the system http://hl7.org/fhir/condition-category

CodeDisplayDefinition
complaint ComplaintThe patient considers the condition an issue to be addressed
symptom SymptomA symptom of a condition (as might be mentioned in a review of systems)
finding FindingAn observation made by a healthcare provider
diagnosis DiagnosisThis is a judgment made by a healthcare provider that the patient has a particular disease or condition
+
+
+ + Valueset "food-type" to support automated processing + http://hl7.org/fhir/vs/food-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

FoodType

FoodType : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+ + + + + + + + + + + + + + + +
+
+

FoodType

FoodType : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+
+ + Valueset "manifestation-codes" to support automated processing + http://hl7.org/fhir/vs/manifestation-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes all SNOMED CT Clinical Findings (is-a 404684003) +

SNOMED CT Clinical Findings

This value set includes all SNOMED CT Clinical Findings

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where Concept is-a 404684003
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes all SNOMED CT Clinical Findings (is-a 404684003) +

SNOMED CT Clinical Findings

This value set includes all SNOMED CT Clinical Findings

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where Concept is-a 404684003
+
+
+ + Valueset "xds-practice-codes" to support automated processing + http://hl7.org/fhir/vs/xds-practice-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

XDS Connect-a-thon practiceSettingCodes

Example Connectathon Codes from http://ihexds.nist.gov:12080/xdsref/codes/codes.xml

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set defines its own terms in the system urn:uuid:cccf5598-8b07-4b77-a05e-ae952c785ead

CodeDisplayDefinition
Anesthesia Anesthesia
Cardiology Cardiology
Case Manager Case Manager
Chaplain Chaplain
Chemotherapy Chemotherapy
Chiropractic Chiropractic
Critical Care Critical Care
Dentistry Dentistry
Diabetology Diabetology
Dialysis Dialysis
Emergency Emergency
Endocrinology Endocrinology
Gastroenterology Gastroenterology
General Medicine General Medicine
General Surgery General Surgery
Gynecology Gynecology
Labor and Delivery Labor and Delivery
Laboratory Laboratory
Multidisciplinary Multidisciplinary
Neonatal Intensive Care Neonatal Intensive Care
Neurosurgery Neurosurgery
Nursery Nursery
Nursing Nursing
Obstetrics Obstetrics
Occupational Therapy Occupational Therapy
Ophthalmology Ophthalmology
Optometry Optometry
Orthopedics Orthopedics
Otorhinolaryngology Otorhinolaryngology
Pathology Pathology
Perioperative Perioperative
Pharmacacy Pharmacacy
Physical Medicine Physical Medicine
Plastic Surgery Plastic Surgery
Podiatry Podiatry
Psychiatry Psychiatry
Pulmonary Pulmonary
Radiology Radiology
Social Services Social Services
Speech Therapy Speech Therapy
Thyroidology Thyroidology
Tumor Board Tumor Board
Urology Urology
Home Home
Veterinary Medicine Veterinary Medicine

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://snomed.info/sct
    CodeDisplayDefinition
    394802001General Medicine
    408478003Critical Care Medicine
    410001006Military Medicine
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

XDS Connect-a-thon practiceSettingCodes

Example Connectathon Codes from http://ihexds.nist.gov:12080/xdsref/codes/codes.xml

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set defines its own terms in the system urn:uuid:cccf5598-8b07-4b77-a05e-ae952c785ead

CodeDisplayDefinition
Anesthesia Anesthesia
Cardiology Cardiology
Case Manager Case Manager
Chaplain Chaplain
Chemotherapy Chemotherapy
Chiropractic Chiropractic
Critical Care Critical Care
Dentistry Dentistry
Diabetology Diabetology
Dialysis Dialysis
Emergency Emergency
Endocrinology Endocrinology
Gastroenterology Gastroenterology
General Medicine General Medicine
General Surgery General Surgery
Gynecology Gynecology
Labor and Delivery Labor and Delivery
Laboratory Laboratory
Multidisciplinary Multidisciplinary
Neonatal Intensive Care Neonatal Intensive Care
Neurosurgery Neurosurgery
Nursery Nursery
Nursing Nursing
Obstetrics Obstetrics
Occupational Therapy Occupational Therapy
Ophthalmology Ophthalmology
Optometry Optometry
Orthopedics Orthopedics
Otorhinolaryngology Otorhinolaryngology
Pathology Pathology
Perioperative Perioperative
Pharmacacy Pharmacacy
Physical Medicine Physical Medicine
Plastic Surgery Plastic Surgery
Podiatry Podiatry
Psychiatry Psychiatry
Pulmonary Pulmonary
Radiology Radiology
Social Services Social Services
Speech Therapy Speech Therapy
Thyroidology Thyroidology
Tumor Board Tumor Board
Urology Urology
Home Home
Veterinary Medicine Veterinary Medicine

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://snomed.info/sct
    CodeDisplayDefinition
    394802001General Medicine
    408478003Critical Care Medicine
    410001006Military Medicine
+
+
+ + Valueset "xds-typecodes" to support automated processing + http://hl7.org/fhir/vs/xds-typecodes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

XDS Connect-a-thon healthcareFacilityTypeCodes

Example Connectathon Codes from http://ihexds.nist.gov:12080/xdsref/codes/codes.xml, with substantial corrections applied

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set defines its own terms in the system urn:uuid:f0306f51-975f-434e-a61c-c59651d33983

CodeDisplayDefinition
Laboratory Report Laboratory Report

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://loinc.org
    CodeDisplayDefinition
    34096-8Nursing facility Comprehensive history and physical note
    34121-4Interventional procedure note
    18743-5Autopsy report
    34095-0Comprehensive history and physical note
    34098-4Conference evaluation note
    11488-4Consult note
    28574-2Discharge note
    18842-5Discharge summary
    34109-9Note
    34117-2History and physical note
    28636-9Provider-unspecified Initial assessment
    28570-0Provider-unspecified Procedure note
    11506-3Provider-unspecified Progress note
    34133-9Summarization of episode note
    11504-8Provider-unspecified Operation note
    34138-8Targeted history and physical note
    34140-4Transfer of care referral note
    18761-7Provider-unspecified Transfer summary
    34100-8Intensive care unit Consult note
    34126-3Intensive care unit Progress note
    34111-5Emergency department Note
    15507-7Provider-unspecified ED Progress note
    34107-3Home health Education note
    34118-0Home health Initial assessment
    34129-7Home health Progress note
    34104-0Hospital Consult note
    34105-7Hospital Discharge summary
    34114-9Hospital Group counseling note
    11492-6Provider-unspecifed, History and physical note
    34130-5Hospital Progress note
    34112-3Hospital Note
    34097-6Nursing facility Conference evaluation note
    34113-1Nursing facility Note
    34119-8Nursing facility Initial assessment
    24611-6Outpatient Consultation 2nd opinion
    34108-1Outpatient Note
    34120-6Outpatient Initial assessment
    34131-3Outpatient Progress note
    34137-0Outpatient Surgical operation note
    34123-0Anesthesiology Hospital Pre-operative evaluation and management note
    28655-9Physician attending Discharge summary
    28654-2Physician attending Initial assessment
    18733-6Physician attending Progress note
    34134-7Physician attending Outpatient Supervisory note
    34135-4Physician attending.cardiology Outpatient Supervisory note
    34136-2Physician attending.gastroenterology Outpatient Supervisory note
    34099-2Cardiovascular disease Consult note
    34094-3Cardiovascular disease Hospital Admission history and physical note
    34124-8Cardiovascular disease Outpatient Progress note
    34125-5Case manager Home health care Progress note
    28581-7Chiropractor Initial assessment
    18762-5Deprecated Chiropractor Progress note
    18763-3Physician consulting Initial assessment
    28569-2Physician consulting Progress note
    34127-1Dentistry.hygienist Outpatient Progress note
    29761-4Dentist Discharge summary
    28572-6Dentist Initial assessment
    28577-5Dentist procedure note
    28617-9Dentistry Progress note
    28583-3Dentist Operation note
    28618-7Dentistry Note
    34128-9Dentistry Outpatient Progress note
    34110-7Diabetology Outpatient Note
    18748-4Diagnostic imaging study
    34101-6General medicine Outpatient Consult note
    34115-6Medical student Hospital History and physical note
    28621-1Nurse practitioner Initial assessment
    18764-1Deprecated Nurse practitioner Progress note
    28622-9Nurse Discharge assessment
    29753-1Nurse Initial assessment
    28623-7Nursing Progress note
    34139-6Nursing Telephone encounter Note
    28651-8Nurse Transfer note
    18734-4Occupational therapy Initial assessment
    11507-1Occupational therapy Progress note
    34122-2Pathology procedure note
    34132-1Pharmacy Outpatient Progress note
    18735-1Physical therapy Initial assessment
    11508-9Physical therapy Progress note
    28579-1Physical therapy Note
    11490-0Physician Discharge summary
    28626-0Physician History and physical note
    18736-9Physician Initial assessment
    11505-5Physician procedure note
    28573-4Physician, Operation note
    28616-1Physician Transfer note
    28568-4Physician Emergency department Note
    34106-5Physician Hospital Discharge summary
    34116-4Physician Nursing facility History and physical note
    18737-7Podiatry Initial assessment
    28625-2Podiatry procedure note
    11509-7Podiatry Progress note
    28624-5Podiatry Operation note
    28635-1Psychiatry Initial assessment
    28627-8Psychiatry Progress note
    34102-4Psychiatry Hospital Consult note
    18738-5Psychology Initial assessment
    11510-5Psychology Progress note
    34103-2Pulmonary Consult note
    18739-3Social service Initial assessment
    28656-7Social service Progress note
    28653-4Social work Note
    18740-1Speech therapy Initial assessment
    11512-1Speech therapy Progress note
    54138-3Name family member
    34133-9Summarization of episode note
    18717-9Blood bank studies (set)
    18718-7Cell marker studies (set)
    18719-5Chemistry studies (set)
    18722-9Fertility studies (set)
    18723-7Hematology studies (set)
    18724-5HLA studies (set)
    18725-2Microbiology studies (set)
    18727-8Serology studies (set)
    18767-4Blood gas studies (set)
    18768-2Cell counts+Differential studies (set)
    26435-8Molecular pathology studies (set)
    26436-6Laboratory studies (set)
    26437-4Chemistry challenge studies (set)
    26438-2Cytology studies (set)
    11502-2Laboratory report
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

XDS Connect-a-thon healthcareFacilityTypeCodes

Example Connectathon Codes from http://ihexds.nist.gov:12080/xdsref/codes/codes.xml, with substantial corrections applied

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set defines its own terms in the system urn:uuid:f0306f51-975f-434e-a61c-c59651d33983

CodeDisplayDefinition
Laboratory Report Laboratory Report

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://loinc.org
    CodeDisplayDefinition
    34096-8Nursing facility Comprehensive history and physical note
    34121-4Interventional procedure note
    18743-5Autopsy report
    34095-0Comprehensive history and physical note
    34098-4Conference evaluation note
    11488-4Consult note
    28574-2Discharge note
    18842-5Discharge summary
    34109-9Note
    34117-2History and physical note
    28636-9Provider-unspecified Initial assessment
    28570-0Provider-unspecified Procedure note
    11506-3Provider-unspecified Progress note
    34133-9Summarization of episode note
    11504-8Provider-unspecified Operation note
    34138-8Targeted history and physical note
    34140-4Transfer of care referral note
    18761-7Provider-unspecified Transfer summary
    34100-8Intensive care unit Consult note
    34126-3Intensive care unit Progress note
    34111-5Emergency department Note
    15507-7Provider-unspecified ED Progress note
    34107-3Home health Education note
    34118-0Home health Initial assessment
    34129-7Home health Progress note
    34104-0Hospital Consult note
    34105-7Hospital Discharge summary
    34114-9Hospital Group counseling note
    11492-6Provider-unspecifed, History and physical note
    34130-5Hospital Progress note
    34112-3Hospital Note
    34097-6Nursing facility Conference evaluation note
    34113-1Nursing facility Note
    34119-8Nursing facility Initial assessment
    24611-6Outpatient Consultation 2nd opinion
    34108-1Outpatient Note
    34120-6Outpatient Initial assessment
    34131-3Outpatient Progress note
    34137-0Outpatient Surgical operation note
    34123-0Anesthesiology Hospital Pre-operative evaluation and management note
    28655-9Physician attending Discharge summary
    28654-2Physician attending Initial assessment
    18733-6Physician attending Progress note
    34134-7Physician attending Outpatient Supervisory note
    34135-4Physician attending.cardiology Outpatient Supervisory note
    34136-2Physician attending.gastroenterology Outpatient Supervisory note
    34099-2Cardiovascular disease Consult note
    34094-3Cardiovascular disease Hospital Admission history and physical note
    34124-8Cardiovascular disease Outpatient Progress note
    34125-5Case manager Home health care Progress note
    28581-7Chiropractor Initial assessment
    18762-5Deprecated Chiropractor Progress note
    18763-3Physician consulting Initial assessment
    28569-2Physician consulting Progress note
    34127-1Dentistry.hygienist Outpatient Progress note
    29761-4Dentist Discharge summary
    28572-6Dentist Initial assessment
    28577-5Dentist procedure note
    28617-9Dentistry Progress note
    28583-3Dentist Operation note
    28618-7Dentistry Note
    34128-9Dentistry Outpatient Progress note
    34110-7Diabetology Outpatient Note
    18748-4Diagnostic imaging study
    34101-6General medicine Outpatient Consult note
    34115-6Medical student Hospital History and physical note
    28621-1Nurse practitioner Initial assessment
    18764-1Deprecated Nurse practitioner Progress note
    28622-9Nurse Discharge assessment
    29753-1Nurse Initial assessment
    28623-7Nursing Progress note
    34139-6Nursing Telephone encounter Note
    28651-8Nurse Transfer note
    18734-4Occupational therapy Initial assessment
    11507-1Occupational therapy Progress note
    34122-2Pathology procedure note
    34132-1Pharmacy Outpatient Progress note
    18735-1Physical therapy Initial assessment
    11508-9Physical therapy Progress note
    28579-1Physical therapy Note
    11490-0Physician Discharge summary
    28626-0Physician History and physical note
    18736-9Physician Initial assessment
    11505-5Physician procedure note
    28573-4Physician, Operation note
    28616-1Physician Transfer note
    28568-4Physician Emergency department Note
    34106-5Physician Hospital Discharge summary
    34116-4Physician Nursing facility History and physical note
    18737-7Podiatry Initial assessment
    28625-2Podiatry procedure note
    11509-7Podiatry Progress note
    28624-5Podiatry Operation note
    28635-1Psychiatry Initial assessment
    28627-8Psychiatry Progress note
    34102-4Psychiatry Hospital Consult note
    18738-5Psychology Initial assessment
    11510-5Psychology Progress note
    34103-2Pulmonary Consult note
    18739-3Social service Initial assessment
    28656-7Social service Progress note
    28653-4Social work Note
    18740-1Speech therapy Initial assessment
    11512-1Speech therapy Progress note
    54138-3Name family member
    34133-9Summarization of episode note
    18717-9Blood bank studies (set)
    18718-7Cell marker studies (set)
    18719-5Chemistry studies (set)
    18722-9Fertility studies (set)
    18723-7Hematology studies (set)
    18724-5HLA studies (set)
    18725-2Microbiology studies (set)
    18727-8Serology studies (set)
    18767-4Blood gas studies (set)
    18768-2Cell counts+Differential studies (set)
    26435-8Molecular pathology studies (set)
    26436-6Laboratory studies (set)
    26437-4Chemistry challenge studies (set)
    26438-2Cytology studies (set)
    11502-2Laboratory report
+
+
+ + Valueset "encounter-discharge-disposition" to support automated processing + http://hl7.org/fhir/vs/encounter-discharge-disposition + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DischargeDisposition

This value set defines a set of codes that can be used to where the patient left the hospital

This value set defines its own terms in the system http://hl7.org/fhir/discharge-disposition

CodeDisplayDefinition
home Home
other-hcf Other healthcare facility
hosp Hospice
long Long-term care
aadvice Left against advice
exp Expired
psy Psychiatric hospital
rehab Rehabilitation
oth Other
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

DischargeDisposition

This value set defines a set of codes that can be used to where the patient left the hospital

This value set defines its own terms in the system http://hl7.org/fhir/discharge-disposition

CodeDisplayDefinition
home Home
other-hcf Other healthcare facility
hosp Hospice
long Long-term care
aadvice Left against advice
exp Expired
psy Psychiatric hospital
rehab Rehabilitation
oth Other
+
+
+ + Valueset "additionalmaterials" to support automated processing + http://hl7.org/fhir/vs/additionalmaterials + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample additional material type codes. +

Additional Material Codes

This value set includes sample additional material type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/additionalmaterials

CodeDisplayDefinition
xray
image
email
model
document
other
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample additional material type codes. +

Additional Material Codes

This value set includes sample additional material type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/additionalmaterials

CodeDisplayDefinition
xray
image
email
model
document
other
+
+
+ + Valueset "condition-code" to support automated processing + http://hl7.org/fhir/vs/condition-code + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

This value set includes all SNOMED CT clinical findings (concepts with an is-a relationship with 404684003)

+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+

This value set includes all SNOMED CT clinical findings (concepts with an is-a relationship with 404684003)

+
+
+
+ + Valueset "observation-assessmentsupportingobservationcodes" to support automated processing + http://hl7.org/fhir/vs/observation-assessmentsupportingobservationcodes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AssessmentSupportingObservationCodes

AssessmentSupportingObservationCodes : All SNOMED CT and LOINC codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from LOINC®, which is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use. This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
  • Include all codes defined in http://loinc.org
+
+ + + + + + + + + + + + + + + + + + +
+
+

AssessmentSupportingObservationCodes

AssessmentSupportingObservationCodes : All SNOMED CT and LOINC codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from LOINC®, which is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use. This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
  • Include all codes defined in http://loinc.org
+
+
+ + Valueset "specimen-container-type" to support automated processing + http://hl7.org/fhir/vs/specimen-container-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SpecimenContainer

Containers which may hold specimens or specimen containers - all SNOMED CT specimen containers

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 434711009
+
+ + + + + + + + + + + + + + + + + + + + +
+
+

SpecimenContainer

Containers which may hold specimens or specimen containers - all SNOMED CT specimen containers

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 434711009
+
+
+ + Valueset "contraindication-mitigation-action" to support automated processing + http://hl7.org/fhir/vs/contraindication-mitigation-action + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

contraindication-mitigation-action

Kinds of mitigating actions and observations that can be associated with a contraindicaiton, such as 'added concurrent therapy', 'prior therapy documented', etc.

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://hl7.org/fhir/v3/actcode where concept is-a _ActDetectedIssueManagementCode
+
+ + + + + + + + + + + + + + + + + + + +
+
+

contraindication-mitigation-action

Kinds of mitigating actions and observations that can be associated with a contraindicaiton, such as 'added concurrent therapy', 'prior therapy documented', etc.

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://hl7.org/fhir/v3/actcode where concept is-a _ActDetectedIssueManagementCode
+
+
+ + Valueset "questionnaire-question-text-type" to support automated processing + http://hl7.org/fhir/vs/questionnaire-question-text-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Questionnaire Question Text Type

Codes that define types of additional text that may be associated with a Questionnaire group or question.

This value set defines its own terms in the system http://hl7.org/fhir/questionnaire-question-text-type

CodeDisplayDefinition
units unitsIdentifies the units in which the question's answer should be captured

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Import all the codes that are part of http://hl7.org/fhir/vs/valueset-questionnaire-text-type
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+

Questionnaire Question Text Type

Codes that define types of additional text that may be associated with a Questionnaire group or question.

This value set defines its own terms in the system http://hl7.org/fhir/questionnaire-question-text-type

CodeDisplayDefinition
units unitsIdentifies the units in which the question's answer should be captured

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Import all the codes that are part of http://hl7.org/fhir/vs/valueset-questionnaire-text-type
+
+
+ + Valueset "exception" to support automated processing + http://hl7.org/fhir/vs/exception + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample Exception codes. +

Exception Codes

This value set includes sample Exception codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/exception

CodeDisplayDefinition
student
disabled
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample Exception codes. +

Exception Codes

This value set includes sample Exception codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/exception

CodeDisplayDefinition
student
disabled
+
+
+ + Valueset "approach-site-codes" to support automated processing + http://hl7.org/fhir/vs/approach-site-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains site of administration concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - selected children of SCTID:91723000 "anatomical structure" (note: there would need to be considerable selection + of concepts as the full child subset would be too big and too detailed for use)
  • +
  • ISO 11239 - Intended site
  • +
  • NCIt - selected children of NCIt concept C74444456 "anatomical location" (note: this is the SDTM location concepts; + it would also need subsetting to provide a useable set of medication administration) + Note: to avoid confusion with other attributes in this resource concepts that are pre-coordinated with method and/or + route of administration (e.g. "rub into left hand" where "rub in" is the method or "IV into left subclavian vein" where "IV" is the route) should not be used in this value set
  • +
+

SNOMED CT is being used here as the example terminology.

+

Note: to avoid confusion with other attributes in this resource concepts that are pre-coordinated with method and/or + route of administration (e.g. "rub into left hand" where "rub in" is the method or "IV into left subclavian vein" where "IV" is the route) should not be used in this value set +

+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains site of administration concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - selected children of SCTID:91723000 "anatomical structure" (note: there would need to be considerable selection + of concepts as the full child subset would be too big and too detailed for use)
  • +
  • ISO 11239 - Intended site
  • +
  • NCIt - selected children of NCIt concept C74444456 "anatomical location" (note: this is the SDTM location concepts; + it would also need subsetting to provide a useable set of medication administration) + Note: to avoid confusion with other attributes in this resource concepts that are pre-coordinated with method and/or + route of administration (e.g. "rub into left hand" where "rub in" is the method or "IV into left subclavian vein" where "IV" is the route) should not be used in this value set
  • +
+

SNOMED CT is being used here as the example terminology.

+

Note: to avoid confusion with other attributes in this resource concepts that are pre-coordinated with method and/or + route of administration (e.g. "rub into left hand" where "rub in" is the method or "IV into left subclavian vein" where "IV" is the route) should not be used in this value set +

+
+
+
+ + Valueset "medication-package-form-codes" to support automated processing + http://hl7.org/fhir/vs/medication-package-form-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains medictation package form concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - Children of SCTID: xxxxxxxx "xxxxxxxxxxxxxx"
  • +
  • ISO 11239 - Medication form
  • +
+

SNOMED CT is being used here as the example terminology.

+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains medictation package form concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - Children of SCTID: xxxxxxxx "xxxxxxxxxxxxxx"
  • +
  • ISO 11239 - Medication form
  • +
+

SNOMED CT is being used here as the example terminology.

+
+
+
+ + Valueset "doc-section-codes" to support automated processing + http://hl7.org/fhir/vs/doc-section-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Document Section Codes

Document section codes - all LOINC codes

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://loinc.org
+
+ + + + + + + + + + + + + + + +
+
+

Document Section Codes

Document section codes - all LOINC codes

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://loinc.org
+
+
+ + Valueset "administration-method-codes" to support automated processing + http://hl7.org/fhir/vs/administration-method-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains method of administration concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - Children of SCTID: 107733003 "introduction (procedure)" (note: not all concepts in this subset may be suitable)
  • +
  • ISO 11239 - Administration methods
  • +
+

SNOMED CT is being used here as the example terminology.

+

Note: to avoid confusion with other attributes in this resource concepts that are pre-coordinated with site and/or route + of administration (e.g. "intravenous infusion" where "intravenous" is the route or "rub into left hand" where "left hand" + is the site) should not be used in this value set +

+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains method of administration concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - Children of SCTID: 107733003 "introduction (procedure)" (note: not all concepts in this subset may be suitable)
  • +
  • ISO 11239 - Administration methods
  • +
+

SNOMED CT is being used here as the example terminology.

+

Note: to avoid confusion with other attributes in this resource concepts that are pre-coordinated with site and/or route + of administration (e.g. "intravenous infusion" where "intravenous" is the route or "rub into left hand" where "left hand" + is the site) should not be used in this value set +

+
+
+
+ + Valueset "adjudication-error" to support automated processing + http://hl7.org/fhir/vs/adjudication-error + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes a smattering of adjudication codes. +

Adjudication Error Codes

This value set includes a adjudication of Adjudication codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/adjudication-error

CodeDisplayDefinition
A001
A002
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes a smattering of adjudication codes. +

Adjudication Error Codes

This value set includes a adjudication of Adjudication codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/adjudication-error

CodeDisplayDefinition
A001
A002
+
+
+ + Valueset "contraindication-category" to support automated processing + http://hl7.org/fhir/vs/contraindication-category + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

contraindication-category

Kinds of contraindications, such as 'drug-drug interaction', 'duplicate therapy', etc.

This value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+

contraindication-category

Kinds of contraindications, such as 'drug-drug interaction', 'duplicate therapy', etc.

This value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "forms" to support automated processing + http://hl7.org/fhir/vs/forms + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes a sample set of Forms codes. +

Form Codes

This value set includes a Form codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/adjudication-error

CodeDisplayDefinition
1
2
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes a sample set of Forms codes. +

Form Codes

This value set includes a Form codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/adjudication-error

CodeDisplayDefinition
1
2
+
+
+ + Valueset "doc-codes" to support automated processing + http://hl7.org/fhir/vs/doc-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

FHIR Document Codes

FHIR Document Codes - all LOINC codes where scale_type = 'DOC'

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://loinc.org where SCALE_TYP = DOC
+
+ + + + + + + + + + + + + + + + + + + + +
+
+

FHIR Document Codes

FHIR Document Codes - all LOINC codes where scale_type = 'DOC'

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://loinc.org where SCALE_TYP = DOC
+
+
+ + Valueset "supply-type" to support automated processing + http://hl7.org/fhir/vs/supply-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Supply Type

This value sets refers to a Category of supply

This value set defines its own terms in the system http://hl7.org/fhir/supply-type

CodeDisplayDefinition
central Central SupplySupply is stored and requested from central supply
nonstock Non-StockSupply is not onsite and must be requested from an outside vendor using a non-stock requisition
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+

Supply Type

This value sets refers to a Category of supply

This value set defines its own terms in the system http://hl7.org/fhir/supply-type

CodeDisplayDefinition
central Central SupplySupply is stored and requested from central supply
nonstock Non-StockSupply is not onsite and must be requested from an outside vendor using a non-stock requisition
+
+
+ + Valueset "diagnostic-requests" to support automated processing + http://hl7.org/fhir/vs/diagnostic-requests + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes all LOINC codes in the "Clinical" or "Lab" class types (TODO: narrow this further - diagnostic codes, panels only) +

LOINC Diagnostic Order Codes

This value set includes all the LOINC Order codes

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://loinc.org where ORDER_OBS = Order
  • Include codes from http://loinc.org where ORDER_OBS = Both
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes all LOINC codes in the "Clinical" or "Lab" class types (TODO: narrow this further - diagnostic codes, panels only) +

LOINC Diagnostic Order Codes

This value set includes all the LOINC Order codes

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://loinc.org where ORDER_OBS = Order
  • Include codes from http://loinc.org where ORDER_OBS = Both
+
+
+ + Valueset "ActIncidentCode" to support automated processing + http://hl7.org/fhir/vs/ActIncidentCode + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample ActIncidentCode codes. +

ActIncidentCode Codes

This value set includes sample ActIncidentCode codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/actincidentcode

CodeDisplayDefinition
code1
code2
code3
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample ActIncidentCode codes. +

ActIncidentCode Codes

This value set includes sample ActIncidentCode codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/actincidentcode

CodeDisplayDefinition
code1
code2
code3
+
+
+ + Valueset "consistency-type" to support automated processing + http://hl7.org/fhir/vs/consistency-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

FluidConsistencyType

FluidConsistencyType : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+ + + + + + + + + + + + + + + +
+
+

FluidConsistencyType

FluidConsistencyType : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+
+ + Valueset "observation-methods" to support automated processing + http://hl7.org/fhir/vs/observation-methods + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

This value sets refers to 3 different sources of observation method codes, each with issues:

+
    +
  • v3 Code System "ObservationMethod": this is very incomplete and not currently maintained
  • +
  • SNOMED CT Techniques (descendents of 272394005): this is very incomplete, more than just observation methods, and has SNOMED CT licensing issues
  • +
  • LOINC Method List: this is less incomplete, but not designed to be used as a formal code system
  • +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+

This value sets refers to 3 different sources of observation method codes, each with issues:

+
    +
  • v3 Code System "ObservationMethod": this is very incomplete and not currently maintained
  • +
  • SNOMED CT Techniques (descendents of 272394005): this is very incomplete, more than just observation methods, and has SNOMED CT licensing issues
  • +
  • LOINC Method List: this is less incomplete, but not designed to be used as a formal code system
  • +
+
+
+
+ + Valueset "supply-item" to support automated processing + http://hl7.org/fhir/vs/supply-item + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Supply Item Type

This value sets refers to a specific supply item

This value set defines its own terms in the system http://hl7.org/fhir/supply-item-type

CodeDisplayDefinition
medication Central SupplySupply is a kind of medication.
device DeviceWhat is supplied (or requested) is a device
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+

Supply Item Type

This value sets refers to a specific supply item

This value set defines its own terms in the system http://hl7.org/fhir/supply-item-type

CodeDisplayDefinition
medication Central SupplySupply is a kind of medication.
device DeviceWhat is supplied (or requested) is a device
+
+
+ + Valueset "relatedperson-relationshiptype" to support automated processing + http://hl7.org/fhir/vs/relatedperson-relationshiptype + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

PatientRelationshipType

A set of codes that can be used to indicate the relationship between a Patient and a RelatedPerson.

This value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + + + + + + + + + +
+
+

PatientRelationshipType

A set of codes that can be used to indicate the relationship between a Patient and a RelatedPerson.

This value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "referencerange-meaning" to support automated processing + http://hl7.org/fhir/vs/referencerange-meaning + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Observation Reference Range Meaning Codes

This value set defines a set of codes that can be used to indicate the meaning/use of a reference range

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set defines its own terms in the system http://hl7.org/fhir/referencerange-meaning

CodeDisplayDefinition
type General types of reference range
..normal Normal RangeBased on 95th percentile for the relevant control population
..recommended Recommended RangeThe range that is recommended by a relevant professional body
..treatment Treatment RangeThe range at which treatment would/should be considered
..therapeutic Therapeutic Desired LevelThe optimal range for best therapeutic outcomes
....pre Pre Therapeutic Desired LevelThe optimal range for best therapeutic outcomes for a specimen taken immediately before administration
....post Post Therapeutic Desired LevelThe optimal range for best therapeutic outcomes for a specimen taken immediately after administration
endocrine Endocrine related states that change the expected value
..pre-puberty Pre-PubertyAn expected range in an individual prior to puberty
..follicular Follicular StageAn expected range in an individual during the follicular stage of the cycle
..midcycle MidCycleAn expected range in an individual during the follicular stage of the cycle
..luteal LutealAn expected range in an individual during the luteal stage of the cycle
..postmeopausal Post-MenopauseAn expected range in an individual post-menopause

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Import all the codes that are part of http://hl7.org/fhir/v3/vs/Race
  • Include these codes as defined in http://snomed.info/sct
    CodeDisplayDefinition
    248153007Male
    248152002Female
    77386006Pregnant
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Observation Reference Range Meaning Codes

This value set defines a set of codes that can be used to indicate the meaning/use of a reference range

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set defines its own terms in the system http://hl7.org/fhir/referencerange-meaning

CodeDisplayDefinition
type General types of reference range
..normal Normal RangeBased on 95th percentile for the relevant control population
..recommended Recommended RangeThe range that is recommended by a relevant professional body
..treatment Treatment RangeThe range at which treatment would/should be considered
..therapeutic Therapeutic Desired LevelThe optimal range for best therapeutic outcomes
....pre Pre Therapeutic Desired LevelThe optimal range for best therapeutic outcomes for a specimen taken immediately before administration
....post Post Therapeutic Desired LevelThe optimal range for best therapeutic outcomes for a specimen taken immediately after administration
endocrine Endocrine related states that change the expected value
..pre-puberty Pre-PubertyAn expected range in an individual prior to puberty
..follicular Follicular StageAn expected range in an individual during the follicular stage of the cycle
..midcycle MidCycleAn expected range in an individual during the follicular stage of the cycle
..luteal LutealAn expected range in an individual during the luteal stage of the cycle
..postmeopausal Post-MenopauseAn expected range in an individual post-menopause

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Import all the codes that are part of http://hl7.org/fhir/v3/vs/Race
  • Include these codes as defined in http://snomed.info/sct
    CodeDisplayDefinition
    248153007Male
    248152002Female
    77386006Pregnant
+
+
+ + Valueset "provenance-agent-role" to support automated processing + http://hl7.org/fhir/vs/provenance-agent-role + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ProvenanceParticipantRole

The role that a provenance participant played

This value set defines its own terms in the system http://hl7.org/fhir/provenance-participant-role

CodeDisplayDefinitionComments
enterer A person entering the data into the originating systemThe data entry person is collected optionally for internal quality control purposes. This includes the transcriptionist for dictated text
performer A person, animal, organization or device that who actually and principally carries out the activityDevice should only be assigned as a performer in circumstances where the device is performing independent of human intervention. Need not be the principal responsible actor
author A party that originates the resource and therefore has responsibility for the information given in the resource and ownership of this resourceEvery resource should have an author
verifier A person who verifies the correctness and appropriateness of activityThis is often used in association with the institution that hosts an activity
attester A verifier who attests to the accuracy of the resource
informant A person who reported information that contributed to the resourcee.g., a next of kin who answers questions about the patient's history
source An information source from which the portions of the resource are derivedMay be an electronic document, application, paper record, etc. *Not* a person
cc A party, who may or should receive or who has received a copy of the resource or subsequent or derivative information of that resource
application An application with a user interface that interacts with a person
daemon A background process that transfers information from one place or form to another
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ProvenanceParticipantRole

The role that a provenance participant played

This value set defines its own terms in the system http://hl7.org/fhir/provenance-participant-role

CodeDisplayDefinitionComments
enterer A person entering the data into the originating systemThe data entry person is collected optionally for internal quality control purposes. This includes the transcriptionist for dictated text
performer A person, animal, organization or device that who actually and principally carries out the activityDevice should only be assigned as a performer in circumstances where the device is performing independent of human intervention. Need not be the principal responsible actor
author A party that originates the resource and therefore has responsibility for the information given in the resource and ownership of this resourceEvery resource should have an author
verifier A person who verifies the correctness and appropriateness of activityThis is often used in association with the institution that hosts an activity
attester A verifier who attests to the accuracy of the resource
informant A person who reported information that contributed to the resourcee.g., a next of kin who answers questions about the patient's history
source An information source from which the portions of the resource are derivedMay be an electronic document, application, paper record, etc. *Not* a person
cc A party, who may or should receive or who has received a copy of the resource or subsequent or derivative information of that resource
application An application with a user interface that interacts with a person
daemon A background process that transfers information from one place or form to another
+
+
+ + Valueset "route-codes" to support automated processing + http://hl7.org/fhir/vs/route-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains route of administration concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - Children of SCTID: 284009009 "route of administration value"
  • +
  • ISO 11239 - Routes of administration
  • +
  • NCIt - Children of NCIt concept C66729 "route of administration" (note: this covers SDTM and FDA route of administration concepts)
  • +
  • EDQM - Route of administration
  • +
+

SNOMED CT is being used here as the example terminology.

+

Note: to avoid confusion with other attributes in this resource concepts that are pre-coordinated with method and/or site of administration + (e.g. "intravenous infusion" where "infusion" is the method or "IV into left subclavian vein" where "left subclavian vein" is the site) + should not be used in this value set. +

+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains route of administration concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - Children of SCTID: 284009009 "route of administration value"
  • +
  • ISO 11239 - Routes of administration
  • +
  • NCIt - Children of NCIt concept C66729 "route of administration" (note: this covers SDTM and FDA route of administration concepts)
  • +
  • EDQM - Route of administration
  • +
+

SNOMED CT is being used here as the example terminology.

+

Note: to avoid confusion with other attributes in this resource concepts that are pre-coordinated with method and/or site of administration + (e.g. "intravenous infusion" where "infusion" is the method or "IV into left subclavian vein" where "left subclavian vein" is the site) + should not be used in this value set. +

+
+
+
+ + Valueset "anzsco-occupations" to support automated processing + http://hl7.org/fhir/vs/anzsco-occupations + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ANZSCO -- Australian and New Zealand Standard Classification of Occupations, 2013, Version 1.2

Developed for use in the collection, analysis and dissemination of occupation statistics in Australia and New Zealand

Copyright Statement: Copyright Australian Bureau of Statistics

This value set defines its own terms in the system http://www.abs.gov.au/ausstats/abs@.nsf/mf/1220.0

CodeDisplayDefinition
100000 Managers nfd
111000 Chief Executives, General Managers and Legislators nfd
111111 Chief Executive or Managing Director
111200 General Managers nfd
111211 Corporate General Manager
111212 Defence Force Senior Officer
111300 Legislators nfd
111311 Local Government Legislator
111312 Member of Parliament
111399 Legislators nec
121000 Farmers and Farm Managers nfd
121111 Aquaculture Farmer
121200 Crop Farmers nfd
121211 Cotton Grower
121212 Flower Grower
121213 Fruit or Nut Grower
121214 Grain, Oilseed or Pasture Grower
121215 Grape Grower
121216 Mixed Crop Farmer
121217 Sugar Cane Grower
121218 Turf Grower
121221 Vegetable Grower
121299 Crop Farmers nec
121300 Livestock Farmers nfd
121311 Apiarist
121312 Beef Cattle Farmer
121313 Dairy Cattle Farmer
121314 Deer Farmer
121315 Goat Farmer
121316 Horse Breeder
121317 Mixed Livestock Farmer
121318 Pig Farmer
121321 Poultry Farmer
121322 Sheep Farmer
121399 Livestock Farmers nec
121411 Mixed Crop and Livestock Farmer
130000 Specialist Managers nfd
131100 Advertising and Sales Managers nfd
131111 Advertising and Public Relations Manager
131112 Sales and Marketing Manager
132000 Business Administration Managers nfd
132111 Corporate Services Manager
132211 Finance Manager
132311 Human Resource Manager
132411 Policy and Planning Manager
132511 Research and Development Manager
133000 Construction, Distribution and Production Managers nfd
133100 Construction Managers nfd
133111 Construction Project Manager
133112 Project Builder
133211 Engineering Manager
133300 Importers, Exporters and Wholesalers nfd
133311 Importer or Exporter
133312 Wholesaler
133411 Manufacturer
133500 Production Managers nfd
133511 Production Manager (Forestry)
133512 Production Manager (Manufacturing)
133513 Production Manager (Mining)
133611 Supply and Distribution Manager
134000 Education, Health and Welfare Services Managers nfd
134111 Child Care Centre Manager
134200 Health and Welfare Services Managers nfd
134211 Medical Administrator
134212 Nursing Clinical Director
134213 Primary Health Organization Manager
134214 Welfare Centre Manager
134299 Health and Welfare Services Managers nec
134311 School Principal
134400 Other Education Managers nfd
134411 Faculty Head
134412 Regional Education Manager
134499 Education Managers nec
135100 ICT Managers nfd
135111 Chief Information Officer
135112 ICT Project Manager
135199 ICT Managers nec
139000 Miscellaneous Specialist Managers nfd
139100 Commissioned Officers (Management) nfd
139111 Commissioned Defence Force Officer
139112 Commissioned Fire Officer
139113 Commissioned Police Officer
139211 Senior Non-commissioned Defence Force Member
139900 Other Specialist Managers nfd
139911 Arts Administrator or Manager
139912 Environmental Manager
139913 Laboratory Manager
139914 Quality Assurance Manager
139915 Sports Administrator
139999 Specialist Managers nec
140000 Hospitality, Retail and Service Managers nfd
141000 Accommodation and Hospitality Managers nfd
141111 Cafe or Restaurant Manager
141211 Caravan Park and Camping Ground Manager
141311 Hotel or Motel Manager
141411 Licensed Club Manager
141900 Other Accommodation and Hospitality Managers nfd
141911 Bed and Breakfast Operator
141999 Accommodation and Hospitality Managers nec
142100 Retail Managers nfd
142111 Retail Manager (General)
142112 Antique Dealer
142113 Betting Agency Manager
142114 Hair or Beauty Salon Manager
142115 Post Office Manager
142116 Travel Agency Manager
149000 Miscellaneous Hospitality, Retail and Service Managers nfd
149100 Amusement, Fitness and Sports Centre Managers nfd
149111 Amusement Centre Manager
149112 Fitness Centre Manager
149113 Sports Centre Manager
149200 Call or Contact Centre and Customer Service Managers nfd
149211 Call or Contact Centre Manager
149212 Customer Service Manager
149311 Conference and Event Organiser
149400 Transport Services Managers nfd
149411 Fleet Manager
149412 Railway Station Manager
149413 Transport Company Manager
149900 Other Hospitality, Retail and Service Managers nfd
149911 Boarding Kennel or Cattery Operator
149912 Cinema or Theatre Manager
149913 Facilities Manager
149914 Financial Institution Branch Manager
149999 Hospitality, Retail and Service Managers nec
200000 Professionals nfd
210000 Arts and Media Professionals nfd
211000 Arts Professionals nfd
211100 Actors, Dancers and Other Entertainers nfd
211111 Actor
211112 Dancer or Choreographer
211113 Entertainer or Variety Artist
211199 Actors, Dancers and Other Entertainers nec
211200 Music Professionals nfd
211211 Composer
211212 Music Director
211213 Musician (Instrumental)
211214 Singer
211299 Music Professionals nec
211311 Photographer
211400 Visual Arts and Crafts Professionals nfd
211411 Painter (Visual Arts)
211412 Potter or Ceramic Artist
211413 Sculptor
211499 Visual Arts and Crafts Professionals nec
212000 Media Professionals nfd
212100 Artistic Directors, and Media Producers and Presenters nfd
212111 Artistic Director
212112 Media Producer (excluding Video)
212113 Radio Presenter
212114 Television Presenter
212200 Authors, and Book and Script Editors nfd
212211 Author
212212 Book or Script Editor
212300 Film, Television, Radio and Stage Directors nfd
212311 Art Director (Film, Television or Stage)
212312 Director (Film, Television, Radio or Stage)
212313 Director of Photography
212314 Film and Video Editor
212315 Program Director (Television or Radio)
212316 Stage Manager
212317 Technical Director
212318 Video Producer
212399 Film, Television, Radio and Stage Directors nec
212400 Journalists and Other Writers nfd
212411 Copywriter
212412 Newspaper or Periodical Editor
212413 Print Journalist
212414 Radio Journalist
212415 Technical Writer
212416 Television Journalist
212499 Journalists and Other Writers nec
220000 Business, Human Resource and Marketing Professionals nfd
221000 Accountants, Auditors and Company Secretaries nfd
221100 Accountants nfd
221111 Accountant (General)
221112 Management Accountant
221113 Taxation Accountant
221200 Auditors, Company Secretaries and Corporate Treasurers nfd
221211 Company Secretary
221212 Corporate Treasurer
221213 External Auditor
221214 Internal Auditor
222000 Financial Brokers and Dealers, and Investment Advisers nfd
222100 Financial Brokers nfd
222111 Commodities Trader
222112 Finance Broker
222113 Insurance Broker
222199 Financial Brokers nec
222200 Financial Dealers nfd
222211 Financial Market Dealer
222212 Futures Trader
222213 Stockbroking Dealer
222299 Financial Dealers nec
222300 Financial Investment Advisers and Managers nfd
222311 Financial Investment Adviser
222312 Financial Investment Manager
223000 Human Resource and Training Professionals nfd
223100 Human Resource Professionals nfd
223111 Human Resource Adviser
223112 Recruitment Consultant
223113 Workplace Relations Adviser
223211 ICT Trainer
223311 Training and Development Professional
224000 Information and Organization Professionals nfd
224100 Actuaries, Mathematicians and Statisticians nfd
224111 Actuary
224112 Mathematician
224113 Statistician
224200 Archivists, Curators and Records Managers nfd
224211 Archivist
224212 Gallery or Museum Curator
224213 Health Information Manager
224214 Records Manager
224311 Economist
224400 Intelligence and Policy Analysts nfd
224411 Intelligence Officer
224412 Policy Analyst
224500 Land Economists and Valuers nfd
224511 Land Economist
224512 Valuer
224611 Librarian
224700 Management and Organization Analysts nfd
224711 Management Consultant
224712 Organization and Methods Analyst
224900 Other Information and Organization Professionals nfd
224911 Electorate Officer
224912 Liaison Officer
224913 Migration Agent
224914 Patents Examiner
224999 Information and Organization Professionals nec
225000 Sales, Marketing and Public Relations Professionals nfd
225100 Advertising and Marketing Professionals nfd
225111 Advertising Specialist
225112 Market Research Analyst
225113 Marketing Specialist
225200 ICT Sales Professionals nfd
225211 ICT Account Manager
225212 ICT Business Development Manager
225213 ICT Sales Representative
225311 Public Relations Professional
225400 Technical Sales Representatives nfd
225411 Sales Representative (Industrial Products)
225412 Sales Representative (Medical and Pharmaceutical Products)
225499 Technical Sales Representatives nec
230000 Design, Engineering, Science and Transport Professionals nfd
231000 Air and Marine Transport Professionals nfd
231100 Air Transport Professionals nfd
231111 Aeroplane Pilot
231112 Air Traffic Controller
231113 Flying Instructor
231114 Helicopter Pilot
231199 Air Transport Professionals nec
231200 Marine Transport Professionals nfd
231211 Master Fisher
231212 Ship's Engineer
231213 Ship's Master
231214 Ship's Officer
231215 Ship's Surveyor
231299 Marine Transport Professionals nec
232000 Architects, Designers, Planners and Surveyors nfd
232100 Architects and Landscape Architects nfd
232111 Architect
232112 Landscape Architect
232200 Cartographers and Surveyors nfd
232211 Cartographer
232212 Surveyor
232300 Fashion, Industrial and Jewellery Designers nfd
232311 Fashion Designer
232312 Industrial Designer
232313 Jewellery Designer
232400 Graphic and Web Designers, and Illustrators nfd
232411 Graphic Designer
232412 Illustrator
232413 Multimedia Designer
232414 Web Designer
232511 Interior Designer
232611 Urban and Regional Planner
233000 Engineering Professionals nfd
233100 Chemical and Materials Engineers nfd
233111 Chemical Engineer
233112 Materials Engineer
233200 Civil Engineering Professionals nfd
233211 Civil Engineer
233212 Geotechnical Engineer
233213 Quantity Surveyor
233214 Structural Engineer
233215 Transport Engineer
233311 Electrical Engineer
233411 Electronics Engineer
233500 Industrial, Mechanical and Production Engineers nfd
233511 Industrial Engineer
233512 Mechanical Engineer
233513 Production or Plant Engineer
233600 Mining Engineers nfd
233611 Mining Engineer (excluding Petroleum)
233612 Petroleum Engineer
233900 Other Engineering Professionals nfd
233911 Aeronautical Engineer
233912 Agricultural Engineer
233913 Biomedical Engineer
233914 Engineering Technologist
233915 Environmental Engineer
233916 Naval Architect
233999 Engineering Professionals nec
234000 Natural and Physical Science Professionals nfd
234100 Agricultural and Forestry Scientists nfd
234111 Agricultural Consultant
234112 Agricultural Scientist
234113 Forester
234200 Chemists, and Food and Wine Scientists nfd
234211 Chemist
234212 Food Technologist
234213 Wine Maker
234300 Environmental Scientists nfd
234311 Conservation Officer
234312 Environmental Consultant
234313 Environmental Research Scientist
234314 Park Ranger
234399 Environmental Scientists nec
234400 Geologists and Geophysicists nfd
234411 Geologist
234412 Geophysicist
234500 Life Scientists nfd
234511 Life Scientist (General)
234512 Anatomist or Physiologist
234513 Biochemist
234514 Biotechnologist
234515 Botanist
234516 Marine Biologist
234517 Microbiologist
234518 Zoologist
234599 Life Scientists nec
234611 Medical Laboratory Scientist
234711 Veterinarian
234900 Other Natural and Physical Science Professionals nfd
234911 Conservator
234912 Metallurgist
234913 Meteorologist
234914 Physicist
234999 Natural and Physical Science Professionals nec
240000 Education Professionals nfd
241000 School Teachers nfd
241111 Early Childhood (Pre-primary School) Teacher
241213 Primary School Teacher
241311 Middle School Teacher
241411 Secondary School Teacher
241500 Special Education Teachers nfd
241511 Special Needs Teacher
241512 Teacher of the Hearing Impaired
241513 Teacher of the Sight Impaired
241599 Special Education Teachers nec
242000 Tertiary Education Teachers nfd
242100 University Lecturers and Tutors nfd
242111 University Lecturer
242112 University Tutor
242211 Vocational Education Teacher
249000 Miscellaneous Education Professionals nfd
249100 Education Advisers and Reviewers nfd
249111 Education Adviser
249112 Education Reviewer
249200 Private Tutors and Teachers nfd
249211 Art Teacher (Private Tuition)
249212 Dance Teacher (Private Tuition)
249213 Drama Teacher (Private Tuition)
249214 Music Teacher (Private Tuition)
249299 Private Tutors and Teachers nec
249311 Teacher of English to Speakers of Other Languages
250000 Health Professionals nfd
251000 Health Diagnostic and Promotion Professionals nfd
251111 Dietitian
251200 Medical Imaging Professionals nfd
251211 Medical Diagnostic Radiographer
251212 Medical Radiation Therapist
251213 Nuclear Medicine Technologist
251214 Sonographer
251300 Occupational and Environmental Health Professionals nfd
251311 Environmental Health Officer
251312 Occupational Health and Safety Adviser
251400 Optometrists and Orthoptists nfd
251411 Optometrist
251412 Orthoptist
251500 Pharmacists nfd
251511 Hospital Pharmacist
251512 Industrial Pharmacist
251513 Retail Pharmacist
251900 Other Health Diagnostic and Promotion Professionals nfd
251911 Health Promotion Officer
251912 Orthotist or Prosthetist
251999 Health Diagnostic and Promotion Professionals nec
252000 Health Therapy Professionals nfd
252100 Chiropractors and Osteopaths nfd
252111 Chiropractor
252112 Osteopath
252200 Complementary Health Therapists nfd
252211 Acupuncturist
252212 Homoeopath
252213 Naturopath
252214 Traditional Chinese Medicine Practitioner
252299 Complementary Health Therapists nec
252300 Dental Practitioners nfd
252311 Dental Specialist
252312 Dentist
252411 Occupational Therapist
252511 Physiotherapist
252611 Podiatrist
252700 Speech Professionals and Audiologists nfd
252711 Audiologist
252712 Speech Pathologist
253000 Medical Practitioners nfd
253100 Generalist Medical Practitioners nfd
253111 General Medical Practitioner
253112 Resident Medical Officer
253211 Anaesthetist
253300 Internal Medicine Specialists nfd
253311 Specialist Physician (General Medicine)
253312 Cardiologist
253313 Clinical Haematologist
253314 Clinical Oncologist
253315 Endocrinologist
253316 Gastroenterologist
253317 Intensive Care Specialist
253318 Neurologist
253321 Paediatrician
253322 Renal Medicine Specialist
253323 Rheumatologist
253324 Thoracic Medicine Specialist
253399 Internal Medicine Specialists nec
253411 Psychiatrist
253500 Surgeons nfd
253511 Surgeon (General)
253512 Cardiothoracic Surgeon
253513 Neurosurgeon
253514 Orthopaedic Surgeon
253515 Otorhinolaryngologist
253516 Paediatric Surgeon
253517 Plastic and Reconstructive Surgeon
253518 Urologist
253521 Vascular Surgeon
253900 Other Medical Practitioners nfd
253911 Dermatologist
253912 Emergency Medicine Specialist
253913 Obstetrician and Gynaecologist
253914 Ophthalmologist
253915 Pathologist
253916 Radiologist
253999 Medical Practitioners nec
254000 Midwifery and Nursing Professionals nfd
254111 Midwife
254200 Nurse Educators and Researchers nfd
254211 Nurse Educator
254212 Nurse Researcher
254311 Nurse Manager
254400 Registered Nurses nfd
254411 Nurse Practitioner
254412 Registered Nurse (Aged Care)
254413 Registered Nurse (Child and Family Health)
254414 Registered Nurse (Community Health)
254415 Registered Nurse (Critical Care and Emergency)
254416 Registered Nurse (Developmental Disability)
254417 Registered Nurse (Disability and Rehabilitation)
254418 Registered Nurse (Medical)
254421 Registered Nurse (Medical Practice)
254422 Registered Nurse (Mental Health)
254423 Registered Nurse (Perioperative)
254424 Registered Nurse (Surgical)
254499 Registered Nurses nec
260000 ICT Professionals nfd
261000 Business and Systems Analysts, and Programmers nfd
261100 ICT Business and Systems Analysts nfd
261111 ICT Business Analyst
261112 Systems Analyst
261200 Multimedia Specialists and Web Developers nfd
261211 Multimedia Specialist
261212 Web Developer
261300 Software and Applications Programmers nfd
261311 Analyst Programmer
261312 Developer Programmer
261313 Software Engineer
261399 Software and Applications Programmers nec
262100 Database and Systems Administrators, and ICT Security Specialists nfd
262111 Database Administrator
262112 ICT Security Specialist
262113 Systems Administrator
263000 ICT Network and Support Professionals nfd
263100 Computer Network Professionals nfd
263111 Computer Network and Systems Engineer
263112 Network Administrator
263113 Network Analyst
263200 ICT Support and Test Engineers nfd
263211 ICT Quality Assurance Engineer
263212 ICT Support Engineer
263213 ICT Systems Test Engineer
263299 ICT Support and Test Engineers nec
263300 Telecommunications Engineering Professionals nfd
263311 Telecommunications Engineer
263312 Telecommunications Network Engineer
270000 Legal, Social and Welfare Professionals nfd
271000 Legal Professionals nfd
271111 Barrister
271200 Judicial and Other Legal Professionals nfd
271211 Judge
271212 Magistrate
271213 Tribunal Member
271299 Judicial and Other Legal Professionals nec
271311 Solicitor
272000 Social and Welfare Professionals nfd
272100 Counsellors nfd
272111 Careers Counsellor
272112 Drug and Alcohol Counsellor
272113 Family and Marriage Counsellor
272114 Rehabilitation Counsellor
272115 Student Counsellor
272199 Counsellors nec
272211 Minister of Religion
272300 Psychologists nfd
272311 Clinical Psychologist
272312 Educational Psychologist
272313 Organizational Psychologist
272314 Psychotherapist
272399 Psychologists nec
272400 Social Professionals nfd
272411 Historian
272412 Interpreter
272413 Translator
272499 Social Professionals nec
272511 Social Worker
272600 Welfare, Recreation and Community Arts Workers nfd
272611 Community Arts Worker
272612 Recreation Officer
272613 Welfare Worker
300000 Technicians and Trades Workers nfd
310000 Engineering, ICT and Science Technicians nfd
311000 Agricultural, Medical and Science Technicians nfd
311111 Agricultural Technician
311200 Medical Technicians nfd
311211 Anaesthetic Technician
311212 Cardiac Technician
311213 Medical Laboratory Technician
311214 Operating Theatre Technician
311215 Pharmacy Technician
311299 Medical Technicians nec
311300 Primary Products Inspectors nfd
311311 Fisheries Officer
311312 Meat Inspector
311313 Quarantine Officer
311399 Primary Products Inspectors nec
311400 Science Technicians nfd
311411 Chemistry Technician
311412 Earth Science Technician
311413 Life Science Technician
311414 School Laboratory Technician
311499 Science Technicians nec
312000 Building and Engineering Technicians nfd
312100 Architectural, Building and Surveying Technicians nfd
312111 Architectural Draftsperson
312112 Building Associate
312113 Building Inspector
312114 Construction Estimator
312115 Plumbing Inspector
312116 Surveying or Cartographic Technician
312200 Civil Engineering Draftspersons and Technicians nfd
312211 Civil Engineering Draftsperson
312212 Civil Engineering Technician
312300 Electrical Engineering Draftspersons and Technicians nfd
312311 Electrical Engineering Draftsperson
312312 Electrical Engineering Technician
312400 Electronic Engineering Draftspersons and Technicians nfd
312411 Electronic Engineering Draftsperson
312412 Electronic Engineering Technician
312500 Mechanical Engineering Draftspersons and Technicians nfd
312511 Mechanical Engineering Draftsperson
312512 Mechanical Engineering Technician
312611 Safety Inspector
312900 Other Building and Engineering Technicians nfd
312911 Maintenance Planner
312912 Metallurgical or Materials Technician
312913 Mine Deputy
312999 Building and Engineering Technicians nec
313000 ICT and Telecommunications Technicians nfd
313100 ICT Support Technicians nfd
313111 Hardware Technician
313112 ICT Customer Support Officer
313113 Web Administrator
313199 ICT Support Technicians nec
313200 Telecommunications Technical Specialists nfd
313211 Radiocommunications Technician
313212 Telecommunications Field Engineer
313213 Telecommunications Network Planner
313214 Telecommunications Technical Officer or Technologist
320000 Automotive and Engineering Trades Workers nfd
321000 Automotive Electricians and Mechanics nfd
321111 Automotive Electrician
321200 Motor Mechanics nfd
321211 Motor Mechanic (General)
321212 Diesel Motor Mechanic
321213 Motorcycle Mechanic
321214 Small Engine Mechanic
322000 Fabrication Engineering Trades Workers nfd
322100 Metal Casting, Forging and Finishing Trades Workers nfd
322111 Blacksmith
322112 Electroplater
322113 Farrier
322114 Metal Casting Trades Worker
322115 Metal Polisher
322211 Sheetmetal Trades Worker
322300 Structural Steel and Welding Trades Workers nfd
322311 Metal Fabricator
322312 Pressure Welder
322313 Welder (First Class)
323000 Mechanical Engineering Trades Workers nfd
323100 Aircraft Maintenance Engineers nfd
323111 Aircraft Maintenance Engineer (Avionics)
323112 Aircraft Maintenance Engineer (Mechanical)
323113 Aircraft Maintenance Engineer (Structures)
323200 Metal Fitters and Machinists nfd
323211 Fitter (General)
323212 Fitter and Turner
323213 Fitter-Welder
323214 Metal Machinist (First Class)
323215 Textile, Clothing and Footwear Mechanic
323299 Metal Fitters and Machinists nec
323300 Precision Metal Trades Workers nfd
323311 Engraver
323312 Gunsmith
323313 Locksmith
323314 Precision Instrument Maker and Repairer
323315 Saw Maker and Repairer
323316 Watch and Clock Maker and Repairer
323400 Toolmakers and Engineering Patternmakers nfd
323411 Engineering Patternmaker
323412 Toolmaker
324000 Panelbeaters, and Vehicle Body Builders, Trimmers and Painters nfd
324111 Panelbeater
324200 Vehicle Body Builders and Trimmers nfd
324211 Vehicle Body Builder
324212 Vehicle Trimmer
324311 Vehicle Painter
330000 Construction Trades Workers nfd
331000 Bricklayers, and Carpenters and Joiners nfd
331100 Bricklayers and Stonemasons nfd
331111 Bricklayer
331112 Stonemason
331211 Carpenter and Joiner
331212 Carpenter
331213 Joiner
332000 Floor Finishers and Painting Trades Workers nfd
332111 Floor Finisher
332211 Painting Trades Worker
333000 Glaziers, Plasterers and Tilers nfd
333111 Glazier
333200 Plasterers nfd
333211 Fibrous Plasterer
333212 Solid Plasterer
333311 Roof Tiler
333411 Wall and Floor Tiler
334100 Plumbers nfd
334111 Plumber (General)
334112 Airconditioning and Mechanical Services Plumber
334113 Drainer
334114 Gasfitter
334115 Roof Plumber
340000 Electrotechnology and Telecommunications Trades Workers nfd
341100 Electricians nfd
341111 Electrician (General)
341112 Electrician (Special Class)
341113 Lift Mechanic
342000 Electronics and Telecommunications Trades Workers nfd
342111 Airconditioning and Refrigeration Mechanic
342200 Electrical Distribution Trades Workers nfd
342211 Electrical Linesworker
342212 Technical Cable Jointer
342300 Electronics Trades Workers nfd
342311 Business Machine Mechanic
342312 Communications Operator
342313 Electronic Equipment Trades Worker
342314 Electronic Instrument Trades Worker (General)
342315 Electronic Instrument Trades Worker (Special Class)
342400 Telecommunications Trades Workers nfd
342411 Cabler (Data and Telecommunications)
342412 Telecommunications Cable Jointer
342413 Telecommunications Linesworker
342414 Telecommunications Technician
351000 Food Trades Workers nfd
351100 Bakers and Pastrycooks nfd
351111 Baker
351112 Pastrycook
351211 Butcher or Smallgoods Maker
351311 Chef
351411 Cook
360000 Skilled Animal and Horticultural Workers nfd
361000 Animal Attendants and Trainers, and Shearers nfd
361100 Animal Attendants and Trainers nfd
361111 Dog Handler or Trainer
361112 Horse Trainer
361113 Pet Groomer
361114 Zookeeper
361199 Animal Attendants and Trainers nec
361211 Shearer
361311 Veterinary Nurse
362000 Horticultural Trades Workers nfd
362111 Florist
362200 Gardeners nfd
362211 Gardener (General)
362212 Arborist
362213 Landscape Gardener
362311 Greenkeeper
362411 Nurseryperson
390000 Other Technicians and Trades Workers nfd
391111 Hairdresser
392000 Printing Trades Workers nfd
392100 Binders, Finishers and Screen Printers nfd
392111 Binder and Finisher
392112 Screen Printer
392211 Graphic Pre-press Trades Worker
392300 Printers nfd
392311 Printing Machinist
392312 Small Offset Printer
393000 Textile, Clothing and Footwear Trades Workers nfd
393100 Canvas and Leather Goods Makers nfd
393111 Canvas Goods Maker
393112 Leather Goods Maker
393113 Sail Maker
393114 Shoemaker
393200 Clothing Trades Workers nfd
393211 Apparel Cutter
393212 Clothing Patternmaker
393213 Dressmaker or Tailor
393299 Clothing Trades Workers nec
393311 Upholsterer
394000 Wood Trades Workers nfd
394111 Cabinetmaker
394200 Wood Machinists and Other Wood Trades Workers nfd
394211 Furniture Finisher
394212 Picture Framer
394213 Wood Machinist
394214 Wood Turner
394299 Wood Machinists and Other Wood Trades Workers nec
399000 Miscellaneous Technicians and Trades Workers nfd
399100 Boat Builders and Shipwrights nfd
399111 Boat Builder and Repairer
399112 Shipwright
399200 Chemical, Gas, Petroleum and Power Generation Plant Operators nfd
399211 Chemical Plant Operator
399212 Gas or Petroleum Operator
399213 Power Generation Plant Operator
399300 Gallery, Library and Museum Technicians nfd
399311 Gallery or Museum Technician
399312 Library Technician
399411 Jeweller
399500 Performing Arts Technicians nfd
399511 Broadcast Transmitter Operator
399512 Camera Operator (Film, Television or Video)
399513 Light Technician
399514 Make Up Artist
399515 Musical Instrument Maker or Repairer
399516 Sound Technician
399517 Television Equipment Operator
399599 Performing Arts Technicians nec
399611 Signwriter
399900 Other Miscellaneous Technicians and Trades Workers nfd
399911 Diver
399912 Interior Decorator
399913 Optical Dispenser
399914 Optical Mechanic
399915 Photographer's Assistant
399916 Plastics Technician
399917 Wool Classer
399999 Technicians and Trades Workers nec
400000 Community and Personal Service Workers nfd
411000 Health and Welfare Support Workers nfd
411100 Ambulance Officers and Paramedics nfd
411111 Ambulance Officer
411112 Intensive Care Ambulance Paramedic
411200 Dental Hygienists, Technicians and Therapists nfd
411211 Dental Hygienist
411212 Dental Prosthetist
411213 Dental Technician
411214 Dental Therapist
411311 Diversional Therapist
411400 Enrolled and Mothercraft Nurses nfd
411411 Enrolled Nurse
411412 Mothercraft Nurse
411511 Aboriginal and Torres Strait Islander Health Worker
411611 Massage Therapist
411700 Welfare Support Workers nfd
411711 Community Worker
411712 Disabilities Services Officer
411713 Family Support Worker
411714 Parole or Probation Officer
411715 Residential Care Officer
411716 Youth Worker
420000 Carers and Aides nfd
421100 Child Carers nfd
421111 Child Care Worker
421112 Family Day Care Worker
421113 Nanny
421114 Out of School Hours Care Worker
422100 Education Aides nfd
422111 Aboriginal and Torres Strait Islander Education Worker
422112 Integration Aide
422115 Preschool Aide
422116 Teachers' Aide
423000 Personal Carers and Assistants nfd
423111 Aged or Disabled Carer
423211 Dental Assistant
423300 Nursing Support and Personal Care Workers nfd
423311 Hospital Orderly
423312 Nursing Support Worker
423313 Personal Care Assistant
423314 Therapy Aide
423400 Special Care Workers nfd
423411 Child or Youth Residential Care Assistant
423412 Hostel Parent
423413 Refuge Worker
431000 Hospitality Workers nfd
431100 Bar Attendants and Baristas nfd
431111 Bar Attendant
431112 Barista
431211 Cafe Worker
431311 Gaming Worker
431411 Hotel Service Manager
431511 Waiter
431900 Other Hospitality Workers nfd
431911 Bar Useful or Busser
431912 Doorperson or Luggage Porter
431999 Hospitality Workers nec
440000 Protective Service Workers nfd
441000 Defence Force Members, Fire Fighters and Police nfd
441111 Defence Force Member - Other Ranks
441200 Fire and Emergency Workers nfd
441211 Emergency Service Worker
441212 Fire Fighter
441300 Police nfd
441311 Detective
441312 Police Officer
442000 Prison and Security Officers nfd
442111 Prison Officer
442200 Security Officers and Guards nfd
442211 Alarm, Security or Surveillance Monitor
442212 Armoured Car Escort
442213 Crowd Controller
442214 Private Investigator
442215 Retail Loss Prevention Officer
442216 Security Consultant
442217 Security Officer
442299 Security Officers and Guards nec
450000 Sports and Personal Service Workers nfd
451000 Personal Service and Travel Workers nfd
451111 Beauty Therapist
451211 Driving Instructor
451300 Funeral Workers nfd
451311 Funeral Director
451399 Funeral Workers nec
451400 Gallery, Museum and Tour Guides nfd
451411 Gallery or Museum Guide
451412 Tour Guide
451500 Personal Care Consultants nfd
451511 Natural Remedy Consultant
451512 Weight Loss Consultant
451600 Tourism and Travel Advisers nfd
451611 Tourist Information Officer
451612 Travel Consultant
451700 Travel Attendants nfd
451711 Flight Attendant
451799 Travel Attendants nec
451800 Other Personal Service Workers nfd
451811 Civil Celebrant
451812 Hair or Beauty Salon Assistant
451813 Sex Worker or Escort
451899 Personal Service Workers nec
452000 Sports and Fitness Workers nfd
452111 Fitness Instructor
452200 Outdoor Adventure Guides nfd
452211 Bungy Jump Master
452212 Fishing Guide
452213 Hunting Guide
452214 Mountain or Glacier Guide
452215 Outdoor Adventure Instructor
452216 Trekking Guide
452217 Whitewater Rafting Guide
452299 Outdoor Adventure Guides nec
452300 Sports Coaches, Instructors and Officials nfd
452311 Diving Instructor (Open Water)
452312 Gymnastics Coach or Instructor
452313 Horse Riding Coach or Instructor
452314 Snowsport Instructor
452315 Swimming Coach or Instructor
452316 Tennis Coach
452317 Other Sports Coach or Instructor
452318 Dog or Horse Racing Official
452321 Sports Development Officer
452322 Sports Umpire
452323 Other Sports Official
452400 Sportspersons nfd
452411 Footballer
452412 Golfer
452413 Jockey
452414 Lifeguard
452499 Sportspersons nec
500000 Clerical and Administrative Workers nfd
510000 Office Managers and Program Administrators nfd
511100 Contract, Program and Project Administrators nfd
511111 Contract Administrator
511112 Program or Project Administrator
512000 Office and Practice Managers nfd
512111 Office Manager
512200 Practice Managers nfd
512211 Health Practice Manager
512299 Practice Managers nec
521000 Personal Assistants and Secretaries nfd
521111 Personal Assistant
521200 Secretaries nfd
521211 Secretary (General)
521212 Legal Secretary
530000 General Clerical Workers nfd
531111 General Clerk
532100 Keyboard Operators nfd
532111 Data Entry Operator
532112 Machine Shorthand Reporter
532113 Word Processing Operator
540000 Inquiry Clerks and Receptionists nfd
541000 Call or Contact Centre Information Clerks nfd
541100 Call or Contact Centre Workers nfd
541111 Call or Contact Centre Team Leader
541112 Call or Contact Centre Operator
541211 Inquiry Clerk
542100 Receptionists nfd
542111 Receptionist (General)
542112 Admissions Clerk
542113 Hotel or Motel Receptionist
542114 Medical Receptionist
550000 Numerical Clerks nfd
551000 Accounting Clerks and Bookkeepers nfd
551100 Accounting Clerks nfd
551111 Accounts Clerk
551112 Cost Clerk
551211 Bookkeeper
551311 Payroll Clerk
552000 Financial and Insurance Clerks nfd
552111 Bank Worker
552211 Credit or Loans Officer
552300 Insurance, Money Market and Statistical Clerks nfd
552311 Bookmaker
552312 Insurance Consultant
552313 Money Market Clerk
552314 Statistical Clerk
561000 Clerical and Office Support Workers nfd
561100 Betting Clerks nfd
561111 Betting Agency Counter Clerk
561112 Bookmaker's Clerk
561113 Telephone Betting Clerk
561199 Betting Clerks nec
561200 Couriers and Postal Deliverers nfd
561211 Courier
561212 Postal Delivery Officer
561311 Filing or Registry Clerk
561400 Mail Sorters nfd
561411 Mail Clerk
561412 Postal Sorting Officer
561511 Survey Interviewer
561611 Switchboard Operator
561900 Other Clerical and Office Support Workers nfd
561911 Classified Advertising Clerk
561912 Meter Reader
561913 Parking Inspector
561999 Clerical and Office Support Workers nec
590000 Other Clerical and Administrative Workers nfd
591000 Logistics Clerks nfd
591100 Purchasing and Supply Logistics Clerks nfd
591111 Order Clerk
591112 Production Clerk
591113 Purchasing Officer
591114 Sales Clerk
591115 Stock Clerk
591116 Warehouse Administrator
591200 Transport and Despatch Clerks nfd
591211 Despatching and Receiving Clerk
591212 Import-Export Clerk
599000 Miscellaneous Clerical and Administrative Workers nfd
599100 Conveyancers and Legal Executives nfd
599111 Conveyancer
599112 Legal Executive
599200 Court and Legal Clerks nfd
599211 Clerk of Court
599212 Court Bailiff or Sheriff
599213 Court Orderly
599214 Law Clerk
599215 Trust Officer
599311 Debt Collector
599411 Human Resource Clerk
599500 Inspectors and Regulatory Officers nfd
599511 Customs Officer
599512 Immigration Officer
599513 Motor Vehicle Licence Examiner
599514 Noxious Weeds and Pest Inspector
599515 Social Security Assessor
599516 Taxation Inspector
599517 Train Examiner
599518 Transport Operations Inspector
599521 Water Inspector
599599 Inspectors and Regulatory Officers nec
599600 Insurance Investigators, Loss Adjusters and Risk Surveyors nfd
599611 Insurance Investigator
599612 Insurance Loss Adjuster
599613 Insurance Risk Surveyor
599711 Library Assistant
599900 Other Miscellaneous Clerical and Administrative Workers nfd
599911 Coding Clerk
599912 Production Assistant (Film, Television, Radio or Stage)
599913 Proof Reader
599914 Radio Despatcher
599999 Clerical and Administrative Workers nec
600000 Sales Workers nfd
610000 Sales Representatives and Agents nfd
611000 Insurance Agents and Sales Representatives nfd
611100 Auctioneers, and Stock and Station Agents nfd
611111 Auctioneer
611112 Stock and Station Agent
611211 Insurance Agent
611300 Sales Representatives nfd
611311 Sales Representative (Building and Plumbing Supplies)
611312 Sales Representative (Business Services)
611313 Sales Representative (Motor Vehicle Parts and Accessories)
611314 Sales Representative (Personal and Household Goods)
611399 Sales Representatives nec
612100 Real Estate Sales Agents nfd
612111 Business Broker
612112 Property Manager
612113 Real Estate Agency Principal
612114 Real Estate Agent
612115 Real Estate Representative
621000 Sales Assistants and Salespersons nfd
621111 Sales Assistant (General)
621211 ICT Sales Assistant
621300 Motor Vehicle and Vehicle Parts Salespersons nfd
621311 Motor Vehicle or Caravan Salesperson
621312 Motor Vehicle Parts Interpreter
621411 Pharmacy Sales Assistant
621511 Retail Supervisor
621611 Service Station Attendant
621700 Street Vendors and Related Salespersons nfd
621711 Cash Van Salesperson
621712 Door-to-door Salesperson
621713 Street Vendor
621900 Other Sales Assistants and Salespersons nfd
621911 Materials Recycler
621912 Rental Salesperson
621999 Sales Assistants and Salespersons nec
630000 Sales Support Workers nfd
631100 Checkout Operators and Office Cashiers nfd
631111 Checkout Operator
631112 Office Cashier
639000 Miscellaneous Sales Support Workers nfd
639100 Models and Sales Demonstrators nfd
639111 Model
639112 Sales Demonstrator
639200 Retail and Wool Buyers nfd
639211 Retail Buyer
639212 Wool Buyer
639311 Telemarketer
639400 Ticket Salespersons nfd
639411 Ticket Seller
639412 Transport Conductor
639511 Visual Merchandiser
639911 Other Sales Support Worker
700000 Machinery Operators and Drivers nfd
710000 Machine and Stationary Plant Operators nfd
711000 Machine Operators nfd
711100 Clay, Concrete, Glass and Stone Processing Machine Operators nfd
711111 Clay Products Machine Operator
711112 Concrete Products Machine Operator
711113 Glass Production Machine Operator
711114 Stone Processing Machine Operator
711199 Clay, Concrete, Glass and Stone Processing Machine Operators nec
711211 Industrial Spraypainter
711300 Paper and Wood Processing Machine Operators nfd
711311 Paper Products Machine Operator
711312 Wood Processing Machine Operator
711411 Photographic Developer and Printer
711500 Plastics and Rubber Production Machine Operators nfd
711511 Plastic Cablemaking Machine Operator
711512 Plastic Compounding and Reclamation Machine Operator
711513 Plastics Fabricator or Welder
711514 Plastics Production Machine Operator (General)
711515 Reinforced Plastic and Composite Production Worker
711516 Rubber Production Machine Operator
711599 Plastics and Rubber Production Machine Operators nec
711611 Sewing Machinist
711700 Textile and Footwear Production Machine Operators nfd
711711 Footwear Production Machine Operator
711712 Hide and Skin Processing Machine Operator
711713 Knitting Machine Operator
711714 Textile Dyeing and Finishing Machine Operator
711715 Weaving Machine Operator
711716 Yarn Carding and Spinning Machine Operator
711799 Textile and Footwear Production Machine Operators nec
711900 Other Machine Operators nfd
711911 Chemical Production Machine Operator
711912 Motion Picture Projectionist
711913 Sand Blaster
711914 Sterilisation Technician
711999 Machine Operators nec
712000 Stationary Plant Operators nfd
712111 Crane, Hoist or Lift Operator
712200 Drillers, Miners and Shot Firers nfd
712211 Driller
712212 Miner
712213 Shot Firer
712311 Engineering Production Systems Worker
712900 Other Stationary Plant Operators nfd
712911 Boiler or Engine Operator
712912 Bulk Materials Handling Plant Operator
712913 Cement Production Plant Operator
712914 Concrete Batching Plant Operator
712915 Concrete Pump Operator
712916 Paper and Pulp Mill Operator
712917 Railway Signal Operator
712918 Train Controller
712921 Waste Water or Water Plant Operator
712922 Weighbridge Operator
712999 Stationary Plant Operators nec
721000 Mobile Plant Operators nfd
721100 Agricultural, Forestry and Horticultural Plant Operators nfd
721111 Agricultural and Horticultural Mobile Plant Operator
721112 Logging Plant Operator
721200 Earthmoving Plant Operators nfd
721211 Earthmoving Plant Operator (General)
721212 Backhoe Operator
721213 Bulldozer Operator
721214 Excavator Operator
721215 Grader Operator
721216 Loader Operator
721311 Forklift Driver
721900 Other Mobile Plant Operators nfd
721911 Aircraft Baggage Handler and Airline Ground Crew
721912 Linemarker
721913 Paving Plant Operator
721914 Railway Track Plant Operator
721915 Road Roller Operator
721916 Streetsweeper Operator
721999 Mobile Plant Operators nec
730000 Road and Rail Drivers nfd
731000 Automobile, Bus and Rail Drivers nfd
731100 Automobile Drivers nfd
731111 Chauffeur
731112 Taxi Driver
731199 Automobile Drivers nec
731200 Bus and Coach Drivers nfd
731211 Bus Driver
731212 Charter and Tour Bus Driver
731213 Passenger Coach Driver
731300 Train and Tram Drivers nfd
731311 Train Driver
731312 Tram Driver
732111 Delivery Driver
733100 Truck Drivers nfd
733111 Truck Driver (General)
733112 Aircraft Refueller
733113 Furniture Removalist
733114 Tanker Driver
733115 Tow Truck Driver
741111 Storeperson
800000 Labourers nfd
811000 Cleaners and Laundry Workers nfd
811111 Car Detailer
811211 Commercial Cleaner
811311 Domestic Cleaner
811400 Housekeepers nfd
811411 Commercial Housekeeper
811412 Domestic Housekeeper
811500 Laundry Workers nfd
811511 Laundry Worker (General)
811512 Drycleaner
811513 Ironer or Presser
811600 Other Cleaners nfd
811611 Carpet Cleaner
811612 Window Cleaner
811699 Cleaners nec
821000 Construction and Mining Labourers nfd
821100 Building and Plumbing Labourers nfd
821111 Builder's Labourer
821112 Drainage, Sewerage and Stormwater Labourer
821113 Earthmoving Labourer
821114 Plumber's Assistant
821211 Concreter
821311 Fencer
821400 Insulation and Home Improvement Installers nfd
821411 Building Insulation Installer
821412 Home Improvement Installer
821511 Paving and Surfacing Labourer
821611 Railway Track Worker
821700 Structural Steel Construction Workers nfd
821711 Construction Rigger
821712 Scaffolder
821713 Steel Fixer
821714 Structural Steel Erector
821900 Other Construction and Mining Labourers nfd
821911 Crane Chaser
821912 Driller's Assistant
821913 Lagger
821914 Mining Support Worker
821915 Surveyor's Assistant
830000 Factory Process Workers nfd
831000 Food Process Workers nfd
831100 Food and Drink Factory Workers nfd
831111 Baking Factory Worker
831112 Brewery Worker
831113 Confectionery Maker
831114 Dairy Products Maker
831115 Fruit and Vegetable Factory Worker
831116 Grain Mill Worker
831117 Sugar Mill Worker
831118 Winery Cellar Hand
831199 Food and Drink Factory Workers nec
831200 Meat Boners and Slicers, and Slaughterers nfd
831211 Meat Boner and Slicer
831212 Slaughterer
831300 Meat, Poultry and Seafood Process Workers nfd
831311 Meat Process Worker
831312 Poultry Process Worker
831313 Seafood Process Worker
832000 Packers and Product Assemblers nfd
832100 Packers nfd
832111 Chocolate Packer
832112 Container Filler
832113 Fruit and Vegetable Packer
832114 Meat Packer
832115 Seafood Packer
832199 Packers nec
832211 Product Assembler
839000 Miscellaneous Factory Process Workers nfd
839111 Metal Engineering Process Worker
839200 Plastics and Rubber Factory Workers nfd
839211 Plastics Factory Worker
839212 Rubber Factory Worker
839300 Product Quality Controllers nfd
839311 Product Examiner
839312 Product Grader
839313 Product Tester
839400 Timber and Wood Process Workers nfd
839411 Paper and Pulp Mill Worker
839412 Sawmill or Timber Yard Worker
839413 Wood and Wood Products Factory Worker
839900 Other Factory Process Workers nfd
839911 Cement and Concrete Plant Worker
839912 Chemical Plant Worker
839913 Clay Processing Factory Worker
839914 Fabric and Textile Factory Worker
839915 Footwear Factory Worker
839916 Glass Processing Worker
839917 Hide and Skin Processing Worker
839999 Factory Process Workers nec
841000 Farm, Forestry and Garden Workers nfd
841111 Aquaculture Worker
841200 Crop Farm Workers nfd
841211 Fruit or Nut Farm Worker
841212 Fruit or Nut Picker
841213 Grain, Oilseed or Pasture Farm Worker
841214 Vegetable Farm Worker
841215 Vegetable Picker
841216 Vineyard Worker
841299 Crop Farm Workers nec
841300 Forestry and Logging Workers nfd
841311 Forestry Worker
841312 Logging Assistant
841313 Tree Faller
841400 Garden and Nursery Labourers nfd
841411 Garden Labourer
841412 Horticultural Nursery Assistant
841500 Livestock Farm Workers nfd
841511 Beef Cattle Farm Worker
841512 Dairy Cattle Farm Worker
841513 Mixed Livestock Farm Worker
841514 Poultry Farm Worker
841515 Sheep Farm Worker
841516 Stablehand
841517 Wool Handler
841599 Livestock Farm Workers nec
841611 Mixed Crop and Livestock Farm Worker
841900 Other Farm, Forestry and Garden Workers nfd
841911 Hunter-Trapper
841912 Pest or Weed Controller
841999 Farm, Forestry and Garden Workers nec
851000 Food Preparation Assistants nfd
851111 Fast Food Cook
851200 Food Trades Assistants nfd
851211 Pastrycook's Assistant
851299 Food Trades Assistants nec
851311 Kitchenhand
890000 Other Labourers nfd
891000 Freight Handlers and Shelf Fillers nfd
891100 Freight and Furniture Handlers nfd
891111 Freight Handler (Rail or Road)
891112 Truck Driver's Offsider
891113 Waterside Worker
891211 Shelf Filler
899000 Miscellaneous Labourers nfd
899111 Caretaker
899200 Deck and Fishing Hands nfd
899211 Deck Hand
899212 Fishing Hand
899311 Handyperson
899400 Motor Vehicle Parts and Accessories Fitters nfd
899411 Motor Vehicle Parts and Accessories Fitter (General)
899412 Autoglazier
899413 Exhaust and Muffler Fitter
899414 Radiator Fitter
899415 Tyre Fitter
899500 Printing Assistants and Table Workers nfd
899511 Printer's Assistant
899512 Printing Table Worker
899611 Recycling or Rubbish Collector
899711 Vending Machine Attendant
899900 Other Miscellaneous Labourers nfd
899911 Bicycle Mechanic
899912 Car Park Attendant
899913 Crossing Supervisor
899914 Electrical or Telecommunications Trades Assistant
899915 Leaflet or Newspaper Deliverer
899916 Mechanic's Assistant
899917 Railways Assistant
899918 Sign Erector
899921 Ticket Collector or Usher
899922 Trolley Collector
899999 Labourers nec
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ANZSCO -- Australian and New Zealand Standard Classification of Occupations, 2013, Version 1.2

Developed for use in the collection, analysis and dissemination of occupation statistics in Australia and New Zealand

Copyright Statement: Copyright Australian Bureau of Statistics

This value set defines its own terms in the system http://www.abs.gov.au/ausstats/abs@.nsf/mf/1220.0

CodeDisplayDefinition
100000 Managers nfd
111000 Chief Executives, General Managers and Legislators nfd
111111 Chief Executive or Managing Director
111200 General Managers nfd
111211 Corporate General Manager
111212 Defence Force Senior Officer
111300 Legislators nfd
111311 Local Government Legislator
111312 Member of Parliament
111399 Legislators nec
121000 Farmers and Farm Managers nfd
121111 Aquaculture Farmer
121200 Crop Farmers nfd
121211 Cotton Grower
121212 Flower Grower
121213 Fruit or Nut Grower
121214 Grain, Oilseed or Pasture Grower
121215 Grape Grower
121216 Mixed Crop Farmer
121217 Sugar Cane Grower
121218 Turf Grower
121221 Vegetable Grower
121299 Crop Farmers nec
121300 Livestock Farmers nfd
121311 Apiarist
121312 Beef Cattle Farmer
121313 Dairy Cattle Farmer
121314 Deer Farmer
121315 Goat Farmer
121316 Horse Breeder
121317 Mixed Livestock Farmer
121318 Pig Farmer
121321 Poultry Farmer
121322 Sheep Farmer
121399 Livestock Farmers nec
121411 Mixed Crop and Livestock Farmer
130000 Specialist Managers nfd
131100 Advertising and Sales Managers nfd
131111 Advertising and Public Relations Manager
131112 Sales and Marketing Manager
132000 Business Administration Managers nfd
132111 Corporate Services Manager
132211 Finance Manager
132311 Human Resource Manager
132411 Policy and Planning Manager
132511 Research and Development Manager
133000 Construction, Distribution and Production Managers nfd
133100 Construction Managers nfd
133111 Construction Project Manager
133112 Project Builder
133211 Engineering Manager
133300 Importers, Exporters and Wholesalers nfd
133311 Importer or Exporter
133312 Wholesaler
133411 Manufacturer
133500 Production Managers nfd
133511 Production Manager (Forestry)
133512 Production Manager (Manufacturing)
133513 Production Manager (Mining)
133611 Supply and Distribution Manager
134000 Education, Health and Welfare Services Managers nfd
134111 Child Care Centre Manager
134200 Health and Welfare Services Managers nfd
134211 Medical Administrator
134212 Nursing Clinical Director
134213 Primary Health Organization Manager
134214 Welfare Centre Manager
134299 Health and Welfare Services Managers nec
134311 School Principal
134400 Other Education Managers nfd
134411 Faculty Head
134412 Regional Education Manager
134499 Education Managers nec
135100 ICT Managers nfd
135111 Chief Information Officer
135112 ICT Project Manager
135199 ICT Managers nec
139000 Miscellaneous Specialist Managers nfd
139100 Commissioned Officers (Management) nfd
139111 Commissioned Defence Force Officer
139112 Commissioned Fire Officer
139113 Commissioned Police Officer
139211 Senior Non-commissioned Defence Force Member
139900 Other Specialist Managers nfd
139911 Arts Administrator or Manager
139912 Environmental Manager
139913 Laboratory Manager
139914 Quality Assurance Manager
139915 Sports Administrator
139999 Specialist Managers nec
140000 Hospitality, Retail and Service Managers nfd
141000 Accommodation and Hospitality Managers nfd
141111 Cafe or Restaurant Manager
141211 Caravan Park and Camping Ground Manager
141311 Hotel or Motel Manager
141411 Licensed Club Manager
141900 Other Accommodation and Hospitality Managers nfd
141911 Bed and Breakfast Operator
141999 Accommodation and Hospitality Managers nec
142100 Retail Managers nfd
142111 Retail Manager (General)
142112 Antique Dealer
142113 Betting Agency Manager
142114 Hair or Beauty Salon Manager
142115 Post Office Manager
142116 Travel Agency Manager
149000 Miscellaneous Hospitality, Retail and Service Managers nfd
149100 Amusement, Fitness and Sports Centre Managers nfd
149111 Amusement Centre Manager
149112 Fitness Centre Manager
149113 Sports Centre Manager
149200 Call or Contact Centre and Customer Service Managers nfd
149211 Call or Contact Centre Manager
149212 Customer Service Manager
149311 Conference and Event Organiser
149400 Transport Services Managers nfd
149411 Fleet Manager
149412 Railway Station Manager
149413 Transport Company Manager
149900 Other Hospitality, Retail and Service Managers nfd
149911 Boarding Kennel or Cattery Operator
149912 Cinema or Theatre Manager
149913 Facilities Manager
149914 Financial Institution Branch Manager
149999 Hospitality, Retail and Service Managers nec
200000 Professionals nfd
210000 Arts and Media Professionals nfd
211000 Arts Professionals nfd
211100 Actors, Dancers and Other Entertainers nfd
211111 Actor
211112 Dancer or Choreographer
211113 Entertainer or Variety Artist
211199 Actors, Dancers and Other Entertainers nec
211200 Music Professionals nfd
211211 Composer
211212 Music Director
211213 Musician (Instrumental)
211214 Singer
211299 Music Professionals nec
211311 Photographer
211400 Visual Arts and Crafts Professionals nfd
211411 Painter (Visual Arts)
211412 Potter or Ceramic Artist
211413 Sculptor
211499 Visual Arts and Crafts Professionals nec
212000 Media Professionals nfd
212100 Artistic Directors, and Media Producers and Presenters nfd
212111 Artistic Director
212112 Media Producer (excluding Video)
212113 Radio Presenter
212114 Television Presenter
212200 Authors, and Book and Script Editors nfd
212211 Author
212212 Book or Script Editor
212300 Film, Television, Radio and Stage Directors nfd
212311 Art Director (Film, Television or Stage)
212312 Director (Film, Television, Radio or Stage)
212313 Director of Photography
212314 Film and Video Editor
212315 Program Director (Television or Radio)
212316 Stage Manager
212317 Technical Director
212318 Video Producer
212399 Film, Television, Radio and Stage Directors nec
212400 Journalists and Other Writers nfd
212411 Copywriter
212412 Newspaper or Periodical Editor
212413 Print Journalist
212414 Radio Journalist
212415 Technical Writer
212416 Television Journalist
212499 Journalists and Other Writers nec
220000 Business, Human Resource and Marketing Professionals nfd
221000 Accountants, Auditors and Company Secretaries nfd
221100 Accountants nfd
221111 Accountant (General)
221112 Management Accountant
221113 Taxation Accountant
221200 Auditors, Company Secretaries and Corporate Treasurers nfd
221211 Company Secretary
221212 Corporate Treasurer
221213 External Auditor
221214 Internal Auditor
222000 Financial Brokers and Dealers, and Investment Advisers nfd
222100 Financial Brokers nfd
222111 Commodities Trader
222112 Finance Broker
222113 Insurance Broker
222199 Financial Brokers nec
222200 Financial Dealers nfd
222211 Financial Market Dealer
222212 Futures Trader
222213 Stockbroking Dealer
222299 Financial Dealers nec
222300 Financial Investment Advisers and Managers nfd
222311 Financial Investment Adviser
222312 Financial Investment Manager
223000 Human Resource and Training Professionals nfd
223100 Human Resource Professionals nfd
223111 Human Resource Adviser
223112 Recruitment Consultant
223113 Workplace Relations Adviser
223211 ICT Trainer
223311 Training and Development Professional
224000 Information and Organization Professionals nfd
224100 Actuaries, Mathematicians and Statisticians nfd
224111 Actuary
224112 Mathematician
224113 Statistician
224200 Archivists, Curators and Records Managers nfd
224211 Archivist
224212 Gallery or Museum Curator
224213 Health Information Manager
224214 Records Manager
224311 Economist
224400 Intelligence and Policy Analysts nfd
224411 Intelligence Officer
224412 Policy Analyst
224500 Land Economists and Valuers nfd
224511 Land Economist
224512 Valuer
224611 Librarian
224700 Management and Organization Analysts nfd
224711 Management Consultant
224712 Organization and Methods Analyst
224900 Other Information and Organization Professionals nfd
224911 Electorate Officer
224912 Liaison Officer
224913 Migration Agent
224914 Patents Examiner
224999 Information and Organization Professionals nec
225000 Sales, Marketing and Public Relations Professionals nfd
225100 Advertising and Marketing Professionals nfd
225111 Advertising Specialist
225112 Market Research Analyst
225113 Marketing Specialist
225200 ICT Sales Professionals nfd
225211 ICT Account Manager
225212 ICT Business Development Manager
225213 ICT Sales Representative
225311 Public Relations Professional
225400 Technical Sales Representatives nfd
225411 Sales Representative (Industrial Products)
225412 Sales Representative (Medical and Pharmaceutical Products)
225499 Technical Sales Representatives nec
230000 Design, Engineering, Science and Transport Professionals nfd
231000 Air and Marine Transport Professionals nfd
231100 Air Transport Professionals nfd
231111 Aeroplane Pilot
231112 Air Traffic Controller
231113 Flying Instructor
231114 Helicopter Pilot
231199 Air Transport Professionals nec
231200 Marine Transport Professionals nfd
231211 Master Fisher
231212 Ship's Engineer
231213 Ship's Master
231214 Ship's Officer
231215 Ship's Surveyor
231299 Marine Transport Professionals nec
232000 Architects, Designers, Planners and Surveyors nfd
232100 Architects and Landscape Architects nfd
232111 Architect
232112 Landscape Architect
232200 Cartographers and Surveyors nfd
232211 Cartographer
232212 Surveyor
232300 Fashion, Industrial and Jewellery Designers nfd
232311 Fashion Designer
232312 Industrial Designer
232313 Jewellery Designer
232400 Graphic and Web Designers, and Illustrators nfd
232411 Graphic Designer
232412 Illustrator
232413 Multimedia Designer
232414 Web Designer
232511 Interior Designer
232611 Urban and Regional Planner
233000 Engineering Professionals nfd
233100 Chemical and Materials Engineers nfd
233111 Chemical Engineer
233112 Materials Engineer
233200 Civil Engineering Professionals nfd
233211 Civil Engineer
233212 Geotechnical Engineer
233213 Quantity Surveyor
233214 Structural Engineer
233215 Transport Engineer
233311 Electrical Engineer
233411 Electronics Engineer
233500 Industrial, Mechanical and Production Engineers nfd
233511 Industrial Engineer
233512 Mechanical Engineer
233513 Production or Plant Engineer
233600 Mining Engineers nfd
233611 Mining Engineer (excluding Petroleum)
233612 Petroleum Engineer
233900 Other Engineering Professionals nfd
233911 Aeronautical Engineer
233912 Agricultural Engineer
233913 Biomedical Engineer
233914 Engineering Technologist
233915 Environmental Engineer
233916 Naval Architect
233999 Engineering Professionals nec
234000 Natural and Physical Science Professionals nfd
234100 Agricultural and Forestry Scientists nfd
234111 Agricultural Consultant
234112 Agricultural Scientist
234113 Forester
234200 Chemists, and Food and Wine Scientists nfd
234211 Chemist
234212 Food Technologist
234213 Wine Maker
234300 Environmental Scientists nfd
234311 Conservation Officer
234312 Environmental Consultant
234313 Environmental Research Scientist
234314 Park Ranger
234399 Environmental Scientists nec
234400 Geologists and Geophysicists nfd
234411 Geologist
234412 Geophysicist
234500 Life Scientists nfd
234511 Life Scientist (General)
234512 Anatomist or Physiologist
234513 Biochemist
234514 Biotechnologist
234515 Botanist
234516 Marine Biologist
234517 Microbiologist
234518 Zoologist
234599 Life Scientists nec
234611 Medical Laboratory Scientist
234711 Veterinarian
234900 Other Natural and Physical Science Professionals nfd
234911 Conservator
234912 Metallurgist
234913 Meteorologist
234914 Physicist
234999 Natural and Physical Science Professionals nec
240000 Education Professionals nfd
241000 School Teachers nfd
241111 Early Childhood (Pre-primary School) Teacher
241213 Primary School Teacher
241311 Middle School Teacher
241411 Secondary School Teacher
241500 Special Education Teachers nfd
241511 Special Needs Teacher
241512 Teacher of the Hearing Impaired
241513 Teacher of the Sight Impaired
241599 Special Education Teachers nec
242000 Tertiary Education Teachers nfd
242100 University Lecturers and Tutors nfd
242111 University Lecturer
242112 University Tutor
242211 Vocational Education Teacher
249000 Miscellaneous Education Professionals nfd
249100 Education Advisers and Reviewers nfd
249111 Education Adviser
249112 Education Reviewer
249200 Private Tutors and Teachers nfd
249211 Art Teacher (Private Tuition)
249212 Dance Teacher (Private Tuition)
249213 Drama Teacher (Private Tuition)
249214 Music Teacher (Private Tuition)
249299 Private Tutors and Teachers nec
249311 Teacher of English to Speakers of Other Languages
250000 Health Professionals nfd
251000 Health Diagnostic and Promotion Professionals nfd
251111 Dietitian
251200 Medical Imaging Professionals nfd
251211 Medical Diagnostic Radiographer
251212 Medical Radiation Therapist
251213 Nuclear Medicine Technologist
251214 Sonographer
251300 Occupational and Environmental Health Professionals nfd
251311 Environmental Health Officer
251312 Occupational Health and Safety Adviser
251400 Optometrists and Orthoptists nfd
251411 Optometrist
251412 Orthoptist
251500 Pharmacists nfd
251511 Hospital Pharmacist
251512 Industrial Pharmacist
251513 Retail Pharmacist
251900 Other Health Diagnostic and Promotion Professionals nfd
251911 Health Promotion Officer
251912 Orthotist or Prosthetist
251999 Health Diagnostic and Promotion Professionals nec
252000 Health Therapy Professionals nfd
252100 Chiropractors and Osteopaths nfd
252111 Chiropractor
252112 Osteopath
252200 Complementary Health Therapists nfd
252211 Acupuncturist
252212 Homoeopath
252213 Naturopath
252214 Traditional Chinese Medicine Practitioner
252299 Complementary Health Therapists nec
252300 Dental Practitioners nfd
252311 Dental Specialist
252312 Dentist
252411 Occupational Therapist
252511 Physiotherapist
252611 Podiatrist
252700 Speech Professionals and Audiologists nfd
252711 Audiologist
252712 Speech Pathologist
253000 Medical Practitioners nfd
253100 Generalist Medical Practitioners nfd
253111 General Medical Practitioner
253112 Resident Medical Officer
253211 Anaesthetist
253300 Internal Medicine Specialists nfd
253311 Specialist Physician (General Medicine)
253312 Cardiologist
253313 Clinical Haematologist
253314 Clinical Oncologist
253315 Endocrinologist
253316 Gastroenterologist
253317 Intensive Care Specialist
253318 Neurologist
253321 Paediatrician
253322 Renal Medicine Specialist
253323 Rheumatologist
253324 Thoracic Medicine Specialist
253399 Internal Medicine Specialists nec
253411 Psychiatrist
253500 Surgeons nfd
253511 Surgeon (General)
253512 Cardiothoracic Surgeon
253513 Neurosurgeon
253514 Orthopaedic Surgeon
253515 Otorhinolaryngologist
253516 Paediatric Surgeon
253517 Plastic and Reconstructive Surgeon
253518 Urologist
253521 Vascular Surgeon
253900 Other Medical Practitioners nfd
253911 Dermatologist
253912 Emergency Medicine Specialist
253913 Obstetrician and Gynaecologist
253914 Ophthalmologist
253915 Pathologist
253916 Radiologist
253999 Medical Practitioners nec
254000 Midwifery and Nursing Professionals nfd
254111 Midwife
254200 Nurse Educators and Researchers nfd
254211 Nurse Educator
254212 Nurse Researcher
254311 Nurse Manager
254400 Registered Nurses nfd
254411 Nurse Practitioner
254412 Registered Nurse (Aged Care)
254413 Registered Nurse (Child and Family Health)
254414 Registered Nurse (Community Health)
254415 Registered Nurse (Critical Care and Emergency)
254416 Registered Nurse (Developmental Disability)
254417 Registered Nurse (Disability and Rehabilitation)
254418 Registered Nurse (Medical)
254421 Registered Nurse (Medical Practice)
254422 Registered Nurse (Mental Health)
254423 Registered Nurse (Perioperative)
254424 Registered Nurse (Surgical)
254499 Registered Nurses nec
260000 ICT Professionals nfd
261000 Business and Systems Analysts, and Programmers nfd
261100 ICT Business and Systems Analysts nfd
261111 ICT Business Analyst
261112 Systems Analyst
261200 Multimedia Specialists and Web Developers nfd
261211 Multimedia Specialist
261212 Web Developer
261300 Software and Applications Programmers nfd
261311 Analyst Programmer
261312 Developer Programmer
261313 Software Engineer
261399 Software and Applications Programmers nec
262100 Database and Systems Administrators, and ICT Security Specialists nfd
262111 Database Administrator
262112 ICT Security Specialist
262113 Systems Administrator
263000 ICT Network and Support Professionals nfd
263100 Computer Network Professionals nfd
263111 Computer Network and Systems Engineer
263112 Network Administrator
263113 Network Analyst
263200 ICT Support and Test Engineers nfd
263211 ICT Quality Assurance Engineer
263212 ICT Support Engineer
263213 ICT Systems Test Engineer
263299 ICT Support and Test Engineers nec
263300 Telecommunications Engineering Professionals nfd
263311 Telecommunications Engineer
263312 Telecommunications Network Engineer
270000 Legal, Social and Welfare Professionals nfd
271000 Legal Professionals nfd
271111 Barrister
271200 Judicial and Other Legal Professionals nfd
271211 Judge
271212 Magistrate
271213 Tribunal Member
271299 Judicial and Other Legal Professionals nec
271311 Solicitor
272000 Social and Welfare Professionals nfd
272100 Counsellors nfd
272111 Careers Counsellor
272112 Drug and Alcohol Counsellor
272113 Family and Marriage Counsellor
272114 Rehabilitation Counsellor
272115 Student Counsellor
272199 Counsellors nec
272211 Minister of Religion
272300 Psychologists nfd
272311 Clinical Psychologist
272312 Educational Psychologist
272313 Organizational Psychologist
272314 Psychotherapist
272399 Psychologists nec
272400 Social Professionals nfd
272411 Historian
272412 Interpreter
272413 Translator
272499 Social Professionals nec
272511 Social Worker
272600 Welfare, Recreation and Community Arts Workers nfd
272611 Community Arts Worker
272612 Recreation Officer
272613 Welfare Worker
300000 Technicians and Trades Workers nfd
310000 Engineering, ICT and Science Technicians nfd
311000 Agricultural, Medical and Science Technicians nfd
311111 Agricultural Technician
311200 Medical Technicians nfd
311211 Anaesthetic Technician
311212 Cardiac Technician
311213 Medical Laboratory Technician
311214 Operating Theatre Technician
311215 Pharmacy Technician
311299 Medical Technicians nec
311300 Primary Products Inspectors nfd
311311 Fisheries Officer
311312 Meat Inspector
311313 Quarantine Officer
311399 Primary Products Inspectors nec
311400 Science Technicians nfd
311411 Chemistry Technician
311412 Earth Science Technician
311413 Life Science Technician
311414 School Laboratory Technician
311499 Science Technicians nec
312000 Building and Engineering Technicians nfd
312100 Architectural, Building and Surveying Technicians nfd
312111 Architectural Draftsperson
312112 Building Associate
312113 Building Inspector
312114 Construction Estimator
312115 Plumbing Inspector
312116 Surveying or Cartographic Technician
312200 Civil Engineering Draftspersons and Technicians nfd
312211 Civil Engineering Draftsperson
312212 Civil Engineering Technician
312300 Electrical Engineering Draftspersons and Technicians nfd
312311 Electrical Engineering Draftsperson
312312 Electrical Engineering Technician
312400 Electronic Engineering Draftspersons and Technicians nfd
312411 Electronic Engineering Draftsperson
312412 Electronic Engineering Technician
312500 Mechanical Engineering Draftspersons and Technicians nfd
312511 Mechanical Engineering Draftsperson
312512 Mechanical Engineering Technician
312611 Safety Inspector
312900 Other Building and Engineering Technicians nfd
312911 Maintenance Planner
312912 Metallurgical or Materials Technician
312913 Mine Deputy
312999 Building and Engineering Technicians nec
313000 ICT and Telecommunications Technicians nfd
313100 ICT Support Technicians nfd
313111 Hardware Technician
313112 ICT Customer Support Officer
313113 Web Administrator
313199 ICT Support Technicians nec
313200 Telecommunications Technical Specialists nfd
313211 Radiocommunications Technician
313212 Telecommunications Field Engineer
313213 Telecommunications Network Planner
313214 Telecommunications Technical Officer or Technologist
320000 Automotive and Engineering Trades Workers nfd
321000 Automotive Electricians and Mechanics nfd
321111 Automotive Electrician
321200 Motor Mechanics nfd
321211 Motor Mechanic (General)
321212 Diesel Motor Mechanic
321213 Motorcycle Mechanic
321214 Small Engine Mechanic
322000 Fabrication Engineering Trades Workers nfd
322100 Metal Casting, Forging and Finishing Trades Workers nfd
322111 Blacksmith
322112 Electroplater
322113 Farrier
322114 Metal Casting Trades Worker
322115 Metal Polisher
322211 Sheetmetal Trades Worker
322300 Structural Steel and Welding Trades Workers nfd
322311 Metal Fabricator
322312 Pressure Welder
322313 Welder (First Class)
323000 Mechanical Engineering Trades Workers nfd
323100 Aircraft Maintenance Engineers nfd
323111 Aircraft Maintenance Engineer (Avionics)
323112 Aircraft Maintenance Engineer (Mechanical)
323113 Aircraft Maintenance Engineer (Structures)
323200 Metal Fitters and Machinists nfd
323211 Fitter (General)
323212 Fitter and Turner
323213 Fitter-Welder
323214 Metal Machinist (First Class)
323215 Textile, Clothing and Footwear Mechanic
323299 Metal Fitters and Machinists nec
323300 Precision Metal Trades Workers nfd
323311 Engraver
323312 Gunsmith
323313 Locksmith
323314 Precision Instrument Maker and Repairer
323315 Saw Maker and Repairer
323316 Watch and Clock Maker and Repairer
323400 Toolmakers and Engineering Patternmakers nfd
323411 Engineering Patternmaker
323412 Toolmaker
324000 Panelbeaters, and Vehicle Body Builders, Trimmers and Painters nfd
324111 Panelbeater
324200 Vehicle Body Builders and Trimmers nfd
324211 Vehicle Body Builder
324212 Vehicle Trimmer
324311 Vehicle Painter
330000 Construction Trades Workers nfd
331000 Bricklayers, and Carpenters and Joiners nfd
331100 Bricklayers and Stonemasons nfd
331111 Bricklayer
331112 Stonemason
331211 Carpenter and Joiner
331212 Carpenter
331213 Joiner
332000 Floor Finishers and Painting Trades Workers nfd
332111 Floor Finisher
332211 Painting Trades Worker
333000 Glaziers, Plasterers and Tilers nfd
333111 Glazier
333200 Plasterers nfd
333211 Fibrous Plasterer
333212 Solid Plasterer
333311 Roof Tiler
333411 Wall and Floor Tiler
334100 Plumbers nfd
334111 Plumber (General)
334112 Airconditioning and Mechanical Services Plumber
334113 Drainer
334114 Gasfitter
334115 Roof Plumber
340000 Electrotechnology and Telecommunications Trades Workers nfd
341100 Electricians nfd
341111 Electrician (General)
341112 Electrician (Special Class)
341113 Lift Mechanic
342000 Electronics and Telecommunications Trades Workers nfd
342111 Airconditioning and Refrigeration Mechanic
342200 Electrical Distribution Trades Workers nfd
342211 Electrical Linesworker
342212 Technical Cable Jointer
342300 Electronics Trades Workers nfd
342311 Business Machine Mechanic
342312 Communications Operator
342313 Electronic Equipment Trades Worker
342314 Electronic Instrument Trades Worker (General)
342315 Electronic Instrument Trades Worker (Special Class)
342400 Telecommunications Trades Workers nfd
342411 Cabler (Data and Telecommunications)
342412 Telecommunications Cable Jointer
342413 Telecommunications Linesworker
342414 Telecommunications Technician
351000 Food Trades Workers nfd
351100 Bakers and Pastrycooks nfd
351111 Baker
351112 Pastrycook
351211 Butcher or Smallgoods Maker
351311 Chef
351411 Cook
360000 Skilled Animal and Horticultural Workers nfd
361000 Animal Attendants and Trainers, and Shearers nfd
361100 Animal Attendants and Trainers nfd
361111 Dog Handler or Trainer
361112 Horse Trainer
361113 Pet Groomer
361114 Zookeeper
361199 Animal Attendants and Trainers nec
361211 Shearer
361311 Veterinary Nurse
362000 Horticultural Trades Workers nfd
362111 Florist
362200 Gardeners nfd
362211 Gardener (General)
362212 Arborist
362213 Landscape Gardener
362311 Greenkeeper
362411 Nurseryperson
390000 Other Technicians and Trades Workers nfd
391111 Hairdresser
392000 Printing Trades Workers nfd
392100 Binders, Finishers and Screen Printers nfd
392111 Binder and Finisher
392112 Screen Printer
392211 Graphic Pre-press Trades Worker
392300 Printers nfd
392311 Printing Machinist
392312 Small Offset Printer
393000 Textile, Clothing and Footwear Trades Workers nfd
393100 Canvas and Leather Goods Makers nfd
393111 Canvas Goods Maker
393112 Leather Goods Maker
393113 Sail Maker
393114 Shoemaker
393200 Clothing Trades Workers nfd
393211 Apparel Cutter
393212 Clothing Patternmaker
393213 Dressmaker or Tailor
393299 Clothing Trades Workers nec
393311 Upholsterer
394000 Wood Trades Workers nfd
394111 Cabinetmaker
394200 Wood Machinists and Other Wood Trades Workers nfd
394211 Furniture Finisher
394212 Picture Framer
394213 Wood Machinist
394214 Wood Turner
394299 Wood Machinists and Other Wood Trades Workers nec
399000 Miscellaneous Technicians and Trades Workers nfd
399100 Boat Builders and Shipwrights nfd
399111 Boat Builder and Repairer
399112 Shipwright
399200 Chemical, Gas, Petroleum and Power Generation Plant Operators nfd
399211 Chemical Plant Operator
399212 Gas or Petroleum Operator
399213 Power Generation Plant Operator
399300 Gallery, Library and Museum Technicians nfd
399311 Gallery or Museum Technician
399312 Library Technician
399411 Jeweller
399500 Performing Arts Technicians nfd
399511 Broadcast Transmitter Operator
399512 Camera Operator (Film, Television or Video)
399513 Light Technician
399514 Make Up Artist
399515 Musical Instrument Maker or Repairer
399516 Sound Technician
399517 Television Equipment Operator
399599 Performing Arts Technicians nec
399611 Signwriter
399900 Other Miscellaneous Technicians and Trades Workers nfd
399911 Diver
399912 Interior Decorator
399913 Optical Dispenser
399914 Optical Mechanic
399915 Photographer's Assistant
399916 Plastics Technician
399917 Wool Classer
399999 Technicians and Trades Workers nec
400000 Community and Personal Service Workers nfd
411000 Health and Welfare Support Workers nfd
411100 Ambulance Officers and Paramedics nfd
411111 Ambulance Officer
411112 Intensive Care Ambulance Paramedic
411200 Dental Hygienists, Technicians and Therapists nfd
411211 Dental Hygienist
411212 Dental Prosthetist
411213 Dental Technician
411214 Dental Therapist
411311 Diversional Therapist
411400 Enrolled and Mothercraft Nurses nfd
411411 Enrolled Nurse
411412 Mothercraft Nurse
411511 Aboriginal and Torres Strait Islander Health Worker
411611 Massage Therapist
411700 Welfare Support Workers nfd
411711 Community Worker
411712 Disabilities Services Officer
411713 Family Support Worker
411714 Parole or Probation Officer
411715 Residential Care Officer
411716 Youth Worker
420000 Carers and Aides nfd
421100 Child Carers nfd
421111 Child Care Worker
421112 Family Day Care Worker
421113 Nanny
421114 Out of School Hours Care Worker
422100 Education Aides nfd
422111 Aboriginal and Torres Strait Islander Education Worker
422112 Integration Aide
422115 Preschool Aide
422116 Teachers' Aide
423000 Personal Carers and Assistants nfd
423111 Aged or Disabled Carer
423211 Dental Assistant
423300 Nursing Support and Personal Care Workers nfd
423311 Hospital Orderly
423312 Nursing Support Worker
423313 Personal Care Assistant
423314 Therapy Aide
423400 Special Care Workers nfd
423411 Child or Youth Residential Care Assistant
423412 Hostel Parent
423413 Refuge Worker
431000 Hospitality Workers nfd
431100 Bar Attendants and Baristas nfd
431111 Bar Attendant
431112 Barista
431211 Cafe Worker
431311 Gaming Worker
431411 Hotel Service Manager
431511 Waiter
431900 Other Hospitality Workers nfd
431911 Bar Useful or Busser
431912 Doorperson or Luggage Porter
431999 Hospitality Workers nec
440000 Protective Service Workers nfd
441000 Defence Force Members, Fire Fighters and Police nfd
441111 Defence Force Member - Other Ranks
441200 Fire and Emergency Workers nfd
441211 Emergency Service Worker
441212 Fire Fighter
441300 Police nfd
441311 Detective
441312 Police Officer
442000 Prison and Security Officers nfd
442111 Prison Officer
442200 Security Officers and Guards nfd
442211 Alarm, Security or Surveillance Monitor
442212 Armoured Car Escort
442213 Crowd Controller
442214 Private Investigator
442215 Retail Loss Prevention Officer
442216 Security Consultant
442217 Security Officer
442299 Security Officers and Guards nec
450000 Sports and Personal Service Workers nfd
451000 Personal Service and Travel Workers nfd
451111 Beauty Therapist
451211 Driving Instructor
451300 Funeral Workers nfd
451311 Funeral Director
451399 Funeral Workers nec
451400 Gallery, Museum and Tour Guides nfd
451411 Gallery or Museum Guide
451412 Tour Guide
451500 Personal Care Consultants nfd
451511 Natural Remedy Consultant
451512 Weight Loss Consultant
451600 Tourism and Travel Advisers nfd
451611 Tourist Information Officer
451612 Travel Consultant
451700 Travel Attendants nfd
451711 Flight Attendant
451799 Travel Attendants nec
451800 Other Personal Service Workers nfd
451811 Civil Celebrant
451812 Hair or Beauty Salon Assistant
451813 Sex Worker or Escort
451899 Personal Service Workers nec
452000 Sports and Fitness Workers nfd
452111 Fitness Instructor
452200 Outdoor Adventure Guides nfd
452211 Bungy Jump Master
452212 Fishing Guide
452213 Hunting Guide
452214 Mountain or Glacier Guide
452215 Outdoor Adventure Instructor
452216 Trekking Guide
452217 Whitewater Rafting Guide
452299 Outdoor Adventure Guides nec
452300 Sports Coaches, Instructors and Officials nfd
452311 Diving Instructor (Open Water)
452312 Gymnastics Coach or Instructor
452313 Horse Riding Coach or Instructor
452314 Snowsport Instructor
452315 Swimming Coach or Instructor
452316 Tennis Coach
452317 Other Sports Coach or Instructor
452318 Dog or Horse Racing Official
452321 Sports Development Officer
452322 Sports Umpire
452323 Other Sports Official
452400 Sportspersons nfd
452411 Footballer
452412 Golfer
452413 Jockey
452414 Lifeguard
452499 Sportspersons nec
500000 Clerical and Administrative Workers nfd
510000 Office Managers and Program Administrators nfd
511100 Contract, Program and Project Administrators nfd
511111 Contract Administrator
511112 Program or Project Administrator
512000 Office and Practice Managers nfd
512111 Office Manager
512200 Practice Managers nfd
512211 Health Practice Manager
512299 Practice Managers nec
521000 Personal Assistants and Secretaries nfd
521111 Personal Assistant
521200 Secretaries nfd
521211 Secretary (General)
521212 Legal Secretary
530000 General Clerical Workers nfd
531111 General Clerk
532100 Keyboard Operators nfd
532111 Data Entry Operator
532112 Machine Shorthand Reporter
532113 Word Processing Operator
540000 Inquiry Clerks and Receptionists nfd
541000 Call or Contact Centre Information Clerks nfd
541100 Call or Contact Centre Workers nfd
541111 Call or Contact Centre Team Leader
541112 Call or Contact Centre Operator
541211 Inquiry Clerk
542100 Receptionists nfd
542111 Receptionist (General)
542112 Admissions Clerk
542113 Hotel or Motel Receptionist
542114 Medical Receptionist
550000 Numerical Clerks nfd
551000 Accounting Clerks and Bookkeepers nfd
551100 Accounting Clerks nfd
551111 Accounts Clerk
551112 Cost Clerk
551211 Bookkeeper
551311 Payroll Clerk
552000 Financial and Insurance Clerks nfd
552111 Bank Worker
552211 Credit or Loans Officer
552300 Insurance, Money Market and Statistical Clerks nfd
552311 Bookmaker
552312 Insurance Consultant
552313 Money Market Clerk
552314 Statistical Clerk
561000 Clerical and Office Support Workers nfd
561100 Betting Clerks nfd
561111 Betting Agency Counter Clerk
561112 Bookmaker's Clerk
561113 Telephone Betting Clerk
561199 Betting Clerks nec
561200 Couriers and Postal Deliverers nfd
561211 Courier
561212 Postal Delivery Officer
561311 Filing or Registry Clerk
561400 Mail Sorters nfd
561411 Mail Clerk
561412 Postal Sorting Officer
561511 Survey Interviewer
561611 Switchboard Operator
561900 Other Clerical and Office Support Workers nfd
561911 Classified Advertising Clerk
561912 Meter Reader
561913 Parking Inspector
561999 Clerical and Office Support Workers nec
590000 Other Clerical and Administrative Workers nfd
591000 Logistics Clerks nfd
591100 Purchasing and Supply Logistics Clerks nfd
591111 Order Clerk
591112 Production Clerk
591113 Purchasing Officer
591114 Sales Clerk
591115 Stock Clerk
591116 Warehouse Administrator
591200 Transport and Despatch Clerks nfd
591211 Despatching and Receiving Clerk
591212 Import-Export Clerk
599000 Miscellaneous Clerical and Administrative Workers nfd
599100 Conveyancers and Legal Executives nfd
599111 Conveyancer
599112 Legal Executive
599200 Court and Legal Clerks nfd
599211 Clerk of Court
599212 Court Bailiff or Sheriff
599213 Court Orderly
599214 Law Clerk
599215 Trust Officer
599311 Debt Collector
599411 Human Resource Clerk
599500 Inspectors and Regulatory Officers nfd
599511 Customs Officer
599512 Immigration Officer
599513 Motor Vehicle Licence Examiner
599514 Noxious Weeds and Pest Inspector
599515 Social Security Assessor
599516 Taxation Inspector
599517 Train Examiner
599518 Transport Operations Inspector
599521 Water Inspector
599599 Inspectors and Regulatory Officers nec
599600 Insurance Investigators, Loss Adjusters and Risk Surveyors nfd
599611 Insurance Investigator
599612 Insurance Loss Adjuster
599613 Insurance Risk Surveyor
599711 Library Assistant
599900 Other Miscellaneous Clerical and Administrative Workers nfd
599911 Coding Clerk
599912 Production Assistant (Film, Television, Radio or Stage)
599913 Proof Reader
599914 Radio Despatcher
599999 Clerical and Administrative Workers nec
600000 Sales Workers nfd
610000 Sales Representatives and Agents nfd
611000 Insurance Agents and Sales Representatives nfd
611100 Auctioneers, and Stock and Station Agents nfd
611111 Auctioneer
611112 Stock and Station Agent
611211 Insurance Agent
611300 Sales Representatives nfd
611311 Sales Representative (Building and Plumbing Supplies)
611312 Sales Representative (Business Services)
611313 Sales Representative (Motor Vehicle Parts and Accessories)
611314 Sales Representative (Personal and Household Goods)
611399 Sales Representatives nec
612100 Real Estate Sales Agents nfd
612111 Business Broker
612112 Property Manager
612113 Real Estate Agency Principal
612114 Real Estate Agent
612115 Real Estate Representative
621000 Sales Assistants and Salespersons nfd
621111 Sales Assistant (General)
621211 ICT Sales Assistant
621300 Motor Vehicle and Vehicle Parts Salespersons nfd
621311 Motor Vehicle or Caravan Salesperson
621312 Motor Vehicle Parts Interpreter
621411 Pharmacy Sales Assistant
621511 Retail Supervisor
621611 Service Station Attendant
621700 Street Vendors and Related Salespersons nfd
621711 Cash Van Salesperson
621712 Door-to-door Salesperson
621713 Street Vendor
621900 Other Sales Assistants and Salespersons nfd
621911 Materials Recycler
621912 Rental Salesperson
621999 Sales Assistants and Salespersons nec
630000 Sales Support Workers nfd
631100 Checkout Operators and Office Cashiers nfd
631111 Checkout Operator
631112 Office Cashier
639000 Miscellaneous Sales Support Workers nfd
639100 Models and Sales Demonstrators nfd
639111 Model
639112 Sales Demonstrator
639200 Retail and Wool Buyers nfd
639211 Retail Buyer
639212 Wool Buyer
639311 Telemarketer
639400 Ticket Salespersons nfd
639411 Ticket Seller
639412 Transport Conductor
639511 Visual Merchandiser
639911 Other Sales Support Worker
700000 Machinery Operators and Drivers nfd
710000 Machine and Stationary Plant Operators nfd
711000 Machine Operators nfd
711100 Clay, Concrete, Glass and Stone Processing Machine Operators nfd
711111 Clay Products Machine Operator
711112 Concrete Products Machine Operator
711113 Glass Production Machine Operator
711114 Stone Processing Machine Operator
711199 Clay, Concrete, Glass and Stone Processing Machine Operators nec
711211 Industrial Spraypainter
711300 Paper and Wood Processing Machine Operators nfd
711311 Paper Products Machine Operator
711312 Wood Processing Machine Operator
711411 Photographic Developer and Printer
711500 Plastics and Rubber Production Machine Operators nfd
711511 Plastic Cablemaking Machine Operator
711512 Plastic Compounding and Reclamation Machine Operator
711513 Plastics Fabricator or Welder
711514 Plastics Production Machine Operator (General)
711515 Reinforced Plastic and Composite Production Worker
711516 Rubber Production Machine Operator
711599 Plastics and Rubber Production Machine Operators nec
711611 Sewing Machinist
711700 Textile and Footwear Production Machine Operators nfd
711711 Footwear Production Machine Operator
711712 Hide and Skin Processing Machine Operator
711713 Knitting Machine Operator
711714 Textile Dyeing and Finishing Machine Operator
711715 Weaving Machine Operator
711716 Yarn Carding and Spinning Machine Operator
711799 Textile and Footwear Production Machine Operators nec
711900 Other Machine Operators nfd
711911 Chemical Production Machine Operator
711912 Motion Picture Projectionist
711913 Sand Blaster
711914 Sterilisation Technician
711999 Machine Operators nec
712000 Stationary Plant Operators nfd
712111 Crane, Hoist or Lift Operator
712200 Drillers, Miners and Shot Firers nfd
712211 Driller
712212 Miner
712213 Shot Firer
712311 Engineering Production Systems Worker
712900 Other Stationary Plant Operators nfd
712911 Boiler or Engine Operator
712912 Bulk Materials Handling Plant Operator
712913 Cement Production Plant Operator
712914 Concrete Batching Plant Operator
712915 Concrete Pump Operator
712916 Paper and Pulp Mill Operator
712917 Railway Signal Operator
712918 Train Controller
712921 Waste Water or Water Plant Operator
712922 Weighbridge Operator
712999 Stationary Plant Operators nec
721000 Mobile Plant Operators nfd
721100 Agricultural, Forestry and Horticultural Plant Operators nfd
721111 Agricultural and Horticultural Mobile Plant Operator
721112 Logging Plant Operator
721200 Earthmoving Plant Operators nfd
721211 Earthmoving Plant Operator (General)
721212 Backhoe Operator
721213 Bulldozer Operator
721214 Excavator Operator
721215 Grader Operator
721216 Loader Operator
721311 Forklift Driver
721900 Other Mobile Plant Operators nfd
721911 Aircraft Baggage Handler and Airline Ground Crew
721912 Linemarker
721913 Paving Plant Operator
721914 Railway Track Plant Operator
721915 Road Roller Operator
721916 Streetsweeper Operator
721999 Mobile Plant Operators nec
730000 Road and Rail Drivers nfd
731000 Automobile, Bus and Rail Drivers nfd
731100 Automobile Drivers nfd
731111 Chauffeur
731112 Taxi Driver
731199 Automobile Drivers nec
731200 Bus and Coach Drivers nfd
731211 Bus Driver
731212 Charter and Tour Bus Driver
731213 Passenger Coach Driver
731300 Train and Tram Drivers nfd
731311 Train Driver
731312 Tram Driver
732111 Delivery Driver
733100 Truck Drivers nfd
733111 Truck Driver (General)
733112 Aircraft Refueller
733113 Furniture Removalist
733114 Tanker Driver
733115 Tow Truck Driver
741111 Storeperson
800000 Labourers nfd
811000 Cleaners and Laundry Workers nfd
811111 Car Detailer
811211 Commercial Cleaner
811311 Domestic Cleaner
811400 Housekeepers nfd
811411 Commercial Housekeeper
811412 Domestic Housekeeper
811500 Laundry Workers nfd
811511 Laundry Worker (General)
811512 Drycleaner
811513 Ironer or Presser
811600 Other Cleaners nfd
811611 Carpet Cleaner
811612 Window Cleaner
811699 Cleaners nec
821000 Construction and Mining Labourers nfd
821100 Building and Plumbing Labourers nfd
821111 Builder's Labourer
821112 Drainage, Sewerage and Stormwater Labourer
821113 Earthmoving Labourer
821114 Plumber's Assistant
821211 Concreter
821311 Fencer
821400 Insulation and Home Improvement Installers nfd
821411 Building Insulation Installer
821412 Home Improvement Installer
821511 Paving and Surfacing Labourer
821611 Railway Track Worker
821700 Structural Steel Construction Workers nfd
821711 Construction Rigger
821712 Scaffolder
821713 Steel Fixer
821714 Structural Steel Erector
821900 Other Construction and Mining Labourers nfd
821911 Crane Chaser
821912 Driller's Assistant
821913 Lagger
821914 Mining Support Worker
821915 Surveyor's Assistant
830000 Factory Process Workers nfd
831000 Food Process Workers nfd
831100 Food and Drink Factory Workers nfd
831111 Baking Factory Worker
831112 Brewery Worker
831113 Confectionery Maker
831114 Dairy Products Maker
831115 Fruit and Vegetable Factory Worker
831116 Grain Mill Worker
831117 Sugar Mill Worker
831118 Winery Cellar Hand
831199 Food and Drink Factory Workers nec
831200 Meat Boners and Slicers, and Slaughterers nfd
831211 Meat Boner and Slicer
831212 Slaughterer
831300 Meat, Poultry and Seafood Process Workers nfd
831311 Meat Process Worker
831312 Poultry Process Worker
831313 Seafood Process Worker
832000 Packers and Product Assemblers nfd
832100 Packers nfd
832111 Chocolate Packer
832112 Container Filler
832113 Fruit and Vegetable Packer
832114 Meat Packer
832115 Seafood Packer
832199 Packers nec
832211 Product Assembler
839000 Miscellaneous Factory Process Workers nfd
839111 Metal Engineering Process Worker
839200 Plastics and Rubber Factory Workers nfd
839211 Plastics Factory Worker
839212 Rubber Factory Worker
839300 Product Quality Controllers nfd
839311 Product Examiner
839312 Product Grader
839313 Product Tester
839400 Timber and Wood Process Workers nfd
839411 Paper and Pulp Mill Worker
839412 Sawmill or Timber Yard Worker
839413 Wood and Wood Products Factory Worker
839900 Other Factory Process Workers nfd
839911 Cement and Concrete Plant Worker
839912 Chemical Plant Worker
839913 Clay Processing Factory Worker
839914 Fabric and Textile Factory Worker
839915 Footwear Factory Worker
839916 Glass Processing Worker
839917 Hide and Skin Processing Worker
839999 Factory Process Workers nec
841000 Farm, Forestry and Garden Workers nfd
841111 Aquaculture Worker
841200 Crop Farm Workers nfd
841211 Fruit or Nut Farm Worker
841212 Fruit or Nut Picker
841213 Grain, Oilseed or Pasture Farm Worker
841214 Vegetable Farm Worker
841215 Vegetable Picker
841216 Vineyard Worker
841299 Crop Farm Workers nec
841300 Forestry and Logging Workers nfd
841311 Forestry Worker
841312 Logging Assistant
841313 Tree Faller
841400 Garden and Nursery Labourers nfd
841411 Garden Labourer
841412 Horticultural Nursery Assistant
841500 Livestock Farm Workers nfd
841511 Beef Cattle Farm Worker
841512 Dairy Cattle Farm Worker
841513 Mixed Livestock Farm Worker
841514 Poultry Farm Worker
841515 Sheep Farm Worker
841516 Stablehand
841517 Wool Handler
841599 Livestock Farm Workers nec
841611 Mixed Crop and Livestock Farm Worker
841900 Other Farm, Forestry and Garden Workers nfd
841911 Hunter-Trapper
841912 Pest or Weed Controller
841999 Farm, Forestry and Garden Workers nec
851000 Food Preparation Assistants nfd
851111 Fast Food Cook
851200 Food Trades Assistants nfd
851211 Pastrycook's Assistant
851299 Food Trades Assistants nec
851311 Kitchenhand
890000 Other Labourers nfd
891000 Freight Handlers and Shelf Fillers nfd
891100 Freight and Furniture Handlers nfd
891111 Freight Handler (Rail or Road)
891112 Truck Driver's Offsider
891113 Waterside Worker
891211 Shelf Filler
899000 Miscellaneous Labourers nfd
899111 Caretaker
899200 Deck and Fishing Hands nfd
899211 Deck Hand
899212 Fishing Hand
899311 Handyperson
899400 Motor Vehicle Parts and Accessories Fitters nfd
899411 Motor Vehicle Parts and Accessories Fitter (General)
899412 Autoglazier
899413 Exhaust and Muffler Fitter
899414 Radiator Fitter
899415 Tyre Fitter
899500 Printing Assistants and Table Workers nfd
899511 Printer's Assistant
899512 Printing Table Worker
899611 Recycling or Rubbish Collector
899711 Vending Machine Attendant
899900 Other Miscellaneous Labourers nfd
899911 Bicycle Mechanic
899912 Car Park Attendant
899913 Crossing Supervisor
899914 Electrical or Telecommunications Trades Assistant
899915 Leaflet or Newspaper Deliverer
899916 Mechanic's Assistant
899917 Railways Assistant
899918 Sign Erector
899921 Ticket Collector or Usher
899922 Trolley Collector
899999 Labourers nec
+
+
+ + Valueset "encounter-special-courtesy" to support automated processing + http://hl7.org/fhir/vs/encounter-special-courtesy + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SpecialCourtesy

This value set defines a set of codes that can be used to indicate special courtesies provided to the patient.

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/EncounterSpecialCourtesy
    CodeDisplayDefinition
    EXTextended courtesy
    NRMnormal courtesy
    PRFprofessional courtesy
    STFstaffCourtesies extended to the staff of the entity providing service.
    VIPvery important person
  • Include these codes as defined in http://hl7.org/fhir/v3/NullFlavor
    CodeDisplayDefinition
    UNKunknownDescription:A proper value is applicable, but not known.
    + + Usage Notes: This means the actual value is not known. If the only thing that is unknown is how to properly express the value in the necessary constraints (value set, datatype, etc.), then the OTH or UNC flavor should be used. No properties should be included for a datatype with this property unless:
    + + Those properties themselves directly translate to a semantic of "unknown". (E.g. a local code sent as a translation that conveys 'unknown') + Those properties further qualify the nature of what is unknown. (E.g. specifying a use code of "H" and a URL prefix of "tel:" to convey that it is the home phone number that is unknown.)
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

SpecialCourtesy

This value set defines a set of codes that can be used to indicate special courtesies provided to the patient.

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/EncounterSpecialCourtesy
    CodeDisplayDefinition
    EXTextended courtesy
    NRMnormal courtesy
    PRFprofessional courtesy
    STFstaffCourtesies extended to the staff of the entity providing service.
    VIPvery important person
  • Include these codes as defined in http://hl7.org/fhir/v3/NullFlavor
    CodeDisplayDefinition
    UNKunknownDescription:A proper value is applicable, but not known.
    + + Usage Notes: This means the actual value is not known. If the only thing that is unknown is how to properly express the value in the necessary constraints (value set, datatype, etc.), then the OTH or UNC flavor should be used. No properties should be included for a datatype with this property unless:
    + + Those properties themselves directly translate to a semantic of "unknown". (E.g. a local code sent as a translation that conveys 'unknown') + Those properties further qualify the nature of what is unknown. (E.g. specifying a use code of "H" and a URL prefix of "tel:" to convey that it is the home phone number that is unknown.)
+
+
+ + Valueset "contract-subtype" to support automated processing + http://hl7.org/fhir/vs/contract-subtype + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample Contract Subtype codes. +

Contract Subtype Codes

This value set includes sample Contract Subtype codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://www.hl7.org/fhir/contractsubtypecodes

CodeDisplayDefinition
disclosure-CA
disclosure-US
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample Contract Subtype codes. +

Contract Subtype Codes

This value set includes sample Contract Subtype codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://www.hl7.org/fhir/contractsubtypecodes

CodeDisplayDefinition
disclosure-CA
disclosure-US
+
+
+ + Valueset "entformula-additive" to support automated processing + http://hl7.org/fhir/vs/entformula-additive + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

EnteralFormulaAdditiveType

EnteralFormulaAdditiveType : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+ + + + + + + + + + + + + + + +
+
+

EnteralFormulaAdditiveType

EnteralFormulaAdditiveType : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+
+ + Valueset "practitioner-role" to support automated processing + http://hl7.org/fhir/vs/practitioner-role + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

PractitionerRole

This example value set defines a set of codes that can be used to indicate the role of a Practitioner.

This value set defines its own terms in the system http://hl7.org/fhir/practitioner-role

CodeDisplayDefinition
doctor
nurse
pharmacist
researcher
teacher Teacher/educator
ict ICT professional
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

PractitionerRole

This example value set defines a set of codes that can be used to indicate the role of a Practitioner.

This value set defines its own terms in the system http://hl7.org/fhir/practitioner-role

CodeDisplayDefinition
doctor
nurse
pharmacist
researcher
teacher Teacher/educator
ict ICT professional
+
+
+ + Valueset "diagnostic-order-event" to support automated processing + http://hl7.org/fhir/vs/diagnostic-order-event + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Diagnostic Order Event Codes

Additional information about an event that occurred to a diagnostic order

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://loinc.org
    CodeDisplayDefinition
    440622005
    394838008
    26895000
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Diagnostic Order Event Codes

Additional information about an event that occurred to a diagnostic order

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://loinc.org
    CodeDisplayDefinition
    440622005
    394838008
    26895000
+
+
+ + Valueset "media-view" to support automated processing + http://hl7.org/fhir/vs/media-view + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Media Collection View/Projection

Codes defined in SNOMED CT that can be used to record Media Recording views

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 260419006
+
+ + + + + + + + + + + + + + + + + + + + +
+
+

Media Collection View/Projection

Codes defined in SNOMED CT that can be used to record Media Recording views

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 260419006
+
+
+ + Valueset "contract-term-subtype" to support automated processing + http://hl7.org/fhir/vs/contract-term-subtype + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample Financial Contract Term SubType codes. +

Contract Term Type Codes

This value set includes sample Contract Term SubType codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://www.hl7.org/fhir/contracttermsubtypecodes

CodeDisplayDefinition
OralHealth-Basic
OralHealth-Major
OralHealth-Orthodontic
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample Financial Contract Term SubType codes. +

Contract Term Type Codes

This value set includes sample Contract Term SubType codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://www.hl7.org/fhir/contracttermsubtypecodes

CodeDisplayDefinition
OralHealth-Basic
OralHealth-Major
OralHealth-Orthodontic
+
+
+ + Valueset "media-subtype" to support automated processing + http://hl7.org/fhir/vs/media-subtype + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Media SubType

Detailed information about the type of the image - its kind, purpose, or the kind of equipment used to generate it

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set defines its own terms in the system http://hl7.org/fhir/media-subtype

CodeDisplayDefinition
diagram DiagramA diagram. Often used in diagnostic reports
fax FaxA digital record of a fax document
scan Scanned DocumentA digital scan of a document. This is reserved for when there is not enough metadata to create a document reference
retina Retina scanA retinal image used for identification purposes
fingerprint fingerprintA finger print scan used for identification purposes
iris irisAn iris scan used for identification purposes
palm palmA palm scan used for identification purposes
face faceA face scan used for identification purposes

In addition, this value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Media SubType

Detailed information about the type of the image - its kind, purpose, or the kind of equipment used to generate it

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set defines its own terms in the system http://hl7.org/fhir/media-subtype

CodeDisplayDefinition
diagram DiagramA diagram. Often used in diagnostic reports
fax FaxA digital record of a fax document
scan Scanned DocumentA digital scan of a document. This is reserved for when there is not enough metadata to create a document reference
retina Retina scanA retinal image used for identification purposes
fingerprint fingerprintA finger print scan used for identification purposes
iris irisAn iris scan used for identification purposes
palm palmA palm scan used for identification purposes
face faceA face scan used for identification purposes

In addition, this value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "ruleset" to support automated processing + http://hl7.org/fhir/vs/ruleset + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample ruleset codes. +

Ruleset Codes

This value set includes sample ruleset codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ruleset

CodeDisplayDefinition
x12-4010
x12-5010
x12-7010
cdanet-v2
cdanet-v4
cpha-3
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample ruleset codes. +

Ruleset Codes

This value set includes sample ruleset codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ruleset

CodeDisplayDefinition
x12-4010
x12-5010
x12-7010
cdanet-v2
cdanet-v4
cpha-3
+
+
+ + Valueset "medication-codes" to support automated processing + http://hl7.org/fhir/vs/medication-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains medictation concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - Children of SCTID: xxxxxxxx "xxxxxxxxxxxxxx"
  • +
  • ISO 11615 - Identification of Medicinal Products
  • +
+

SNOMED CT is being used here as the example terminology.

+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains medictation concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - Children of SCTID: xxxxxxxx "xxxxxxxxxxxxxx"
  • +
  • ISO 11615 - Identification of Medicinal Products
  • +
+

SNOMED CT is being used here as the example terminology.

+
+
+
+ + Valueset "adjudication" to support automated processing + http://hl7.org/fhir/vs/adjudication + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes a smattering of adjudication codes. +

Adjudication Codes

This value set includes a adjudication of Adjudication codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/adjudication

CodeDisplayDefinition
total
copay
eligible
deductable
eligpercent
tax
benefit
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes a smattering of adjudication codes. +

Adjudication Codes

This value set includes a adjudication of Adjudication codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/adjudication

CodeDisplayDefinition
total
copay
eligible
deductable
eligpercent
tax
benefit
+
+
+ + Valueset "medication-form-codes" to support automated processing + http://hl7.org/fhir/vs/medication-form-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains medicvation form concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - Children of SCTID: xxxxxxxx "xxxxxxxxxxxxxx"
  • +
  • ISO 11239 - Medication form
  • +
+

Snomed is being used here as the example terminology.

+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains medicvation form concepts.

+

Possible sources include:

+
    +
  • SNOMED CT - Children of SCTID: xxxxxxxx "xxxxxxxxxxxxxx"
  • +
  • ISO 11239 - Medication form
  • +
+

Snomed is being used here as the example terminology.

+
+
+
+ + Valueset "encounter-reason" to support automated processing + http://hl7.org/fhir/vs/encounter-reason + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Encounter Reason Codes

This examples value set defines the set of codes that can be used to indicate reasons for an encounter

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 404684003
  • Include codes from http://snomed.info/sct where concept is-a 71388002
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Encounter Reason Codes

This examples value set defines the set of codes that can be used to indicate reasons for an encounter

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 404684003
  • Include codes from http://snomed.info/sct where concept is-a 71388002
+
+
+ + Valueset "immunization-recommendation-status" to support automated processing + http://hl7.org/fhir/vs/immunization-recommendation-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Immunization Recommendation Status Codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set defines its own terms in the system http://hl7.org/fhir/immunization-recommendation-status

CodeDisplayDefinition
due dueThe patient is due for their next vaccination
overdue overdueThe patient is considered overdue for their next vaccination
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+

Immunization Recommendation Status Codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set defines its own terms in the system http://hl7.org/fhir/immunization-recommendation-status

CodeDisplayDefinition
due dueThe patient is due for their next vaccination
overdue overdueThe patient is considered overdue for their next vaccination
+
+
+ + Valueset "vaccination-protocol-dose-target" to support automated processing + http://hl7.org/fhir/vs/vaccination-protocol-dose-target + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Vaccination Protocol Dose TargetCodes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set defines its own terms in the system http://hl7.org/fhir/vaccination-protocol-dose-target

CodeDisplayDefinition
crs Congenital Rubella Syndrome
dip Diptheria
mea Measles
mum Mumps
rub Rubella
tet Tetanus
hib Haemophilus influenzae type b
per Pertussis
pol Poliomyelitis
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Vaccination Protocol Dose TargetCodes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set defines its own terms in the system http://hl7.org/fhir/vaccination-protocol-dose-target

CodeDisplayDefinition
crs Congenital Rubella Syndrome
dip Diptheria
mea Measles
mum Mumps
rub Rubella
tet Tetanus
hib Haemophilus influenzae type b
per Pertussis
pol Poliomyelitis
+
+
+ + Valueset "entformula-type" to support automated processing + http://hl7.org/fhir/vs/entformula-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

EnteralFormulaType

EnteralFormulaType : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+ + + + + + + + + + + + + + + +
+
+

EnteralFormulaType

EnteralFormulaType : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+
+ + Valueset "list-item-flag" to support automated processing + http://hl7.org/fhir/vs/list-item-flag + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Patient Medicine Change Types

Example Item Flags for the List Resource. In this case, these are the kind of flags that would be used on a medication list at the end of a consultation

Copyright Statement: Copyright © 2012-2013 National E-Health Transition Authority Ltd : This document contains information which is protected by copyright. All Rights Reserved. No part of this work may be reproduced or used in any form or by any means—graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage and retrieval systems—without the permission of NEHTA. All copies of this document must include the copyright and other information contained on this page.
Revision 1
Telephone: 1300 901 001 or email: servicedesk@nehta.gov.au
Disclaimer: The National E-Health Transition Authority Ltd (NEHTA) makes the information and other material ('Information') in this document available in good faith but without any representation or warranty as to its accuracy or completeness. NEHTA cannot accept any responsibility for the consequences of any use of the Information. As the Information is of a general nature only, it is up to any person using or relying on the Information to ensure that it is accurate, complete and suitable for the circumstances of its use.

This value set defines its own terms in the system urn:oid:1.2.36.1.2001.1001.101.104.16592

CodeDisplayDefinition
01 UnchangedNo change has been made to the status of this medicine item.
02 ChangedThe medicine item has changed. The change may be described in an extension (not defined yet)
03 CancelledThe prescription for this medicine item was cancelled by an authorized health care provider. The patient may be advised to complete the course of the prescribed medicine. This advice is a clinical decision made based on assessment of the patient‟s clinical condition.
04 PrescribedA new medicine item has been prescribed
05 CeasedAdministration of this medication item that the patient is currently taking is stopped or recommended to be stopped (i.e. instructed to be ceased by a health care provider). This cessation is anticipated to be permanent. The Change Description should describe the reason for cessation. Example uses: the medication in question is considered ineffective or has caused serious adverse effects. This value applies both to the cessation of a medication that is prescribed by another healthcare provider or patient self-administration of OTC medicines.
06 SuspendedAdministration of this medication item that the patient is currently taking is on hold, or instructed or recommended by a health care provider to be temporarily stopped, or subject to clinical review (i.e. the stop may be temporary or permanent depending on the outcome of clinical review), or temporarily suspended as a pre-requisite to certain surgical or diagnostic procedures.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Patient Medicine Change Types

Example Item Flags for the List Resource. In this case, these are the kind of flags that would be used on a medication list at the end of a consultation

Copyright Statement: Copyright © 2012-2013 National E-Health Transition Authority Ltd : This document contains information which is protected by copyright. All Rights Reserved. No part of this work may be reproduced or used in any form or by any means—graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage and retrieval systems—without the permission of NEHTA. All copies of this document must include the copyright and other information contained on this page.
Revision 1
Telephone: 1300 901 001 or email: servicedesk@nehta.gov.au
Disclaimer: The National E-Health Transition Authority Ltd (NEHTA) makes the information and other material ('Information') in this document available in good faith but without any representation or warranty as to its accuracy or completeness. NEHTA cannot accept any responsibility for the consequences of any use of the Information. As the Information is of a general nature only, it is up to any person using or relying on the Information to ensure that it is accurate, complete and suitable for the circumstances of its use.

This value set defines its own terms in the system urn:oid:1.2.36.1.2001.1001.101.104.16592

CodeDisplayDefinition
01 UnchangedNo change has been made to the status of this medicine item.
02 ChangedThe medicine item has changed. The change may be described in an extension (not defined yet)
03 CancelledThe prescription for this medicine item was cancelled by an authorized health care provider. The patient may be advised to complete the course of the prescribed medicine. This advice is a clinical decision made based on assessment of the patient‟s clinical condition.
04 PrescribedA new medicine item has been prescribed
05 CeasedAdministration of this medication item that the patient is currently taking is stopped or recommended to be stopped (i.e. instructed to be ceased by a health care provider). This cessation is anticipated to be permanent. The Change Description should describe the reason for cessation. Example uses: the medication in question is considered ineffective or has caused serious adverse effects. This value applies both to the cessation of a medication that is prescribed by another healthcare provider or patient self-administration of OTC medicines.
06 SuspendedAdministration of this medication item that the patient is currently taking is on hold, or instructed or recommended by a health care provider to be temporarily stopped, or subject to clinical review (i.e. the stop may be temporary or permanent depending on the outcome of clinical review), or temporarily suspended as a pre-requisite to certain surgical or diagnostic procedures.
+
+
+ + Valueset "security-source-type" to support automated processing + http://hl7.org/fhir/vs/security-source-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ +

Security Event Source Type

The type of process where the security event originated from

This value set defines its own terms in the system http://hl7.org/fhir/security-source-type

CodeDisplayDefinition
1 User DeviceEnd-user display device, diagnostic device
2 Data InterfaceData acquisition device or instrument
3 Web ServerWeb Server process or thread
4 Application ServerApplication Server process or thread
5 Database ServerDatabase Server process or thread
6 Security ServerSecurity server, e.g., a domain controller
7 Network DeviceISO level 1-3 network component
8 Network RouterISO level 4-6 operating software
9 Otherother kind of device (defined by DICOM, but some other code/system can be used)
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +

Security Event Source Type

The type of process where the security event originated from

This value set defines its own terms in the system http://hl7.org/fhir/security-source-type

CodeDisplayDefinition
1 User DeviceEnd-user display device, diagnostic device
2 Data InterfaceData acquisition device or instrument
3 Web ServerWeb Server process or thread
4 Application ServerApplication Server process or thread
5 Database ServerDatabase Server process or thread
6 Security ServerSecurity server, e.g., a domain controller
7 Network DeviceISO level 1-3 network component
8 Network RouterISO level 4-6 operating software
9 Otherother kind of device (defined by DICOM, but some other code/system can be used)
+
+
+ + Valueset "security-event-sub-type" to support automated processing + http://hl7.org/fhir/vs/security-event-sub-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ +

Security Event Sub-Type

More detailed code concerning the type of the security event - defined by DICOM with some FHIR specific additions

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    110120Application StartAudit event: Application Entity has started
    110121Application StopAudit event: Application Entity has stopped
    110122LoginAudit event: User login has been attempted
    110123LogoutAudit event: User logout has been attempted
    110124AttachAudit event: Node has been attached
    110125DetachAudit event: Node has been detached
    110126Node AuthenticationAudit event: Node Authentication has been attempted
    110127Emergency Override StartedAudit event: Emergency Override has started
    110128Network ConfigurationAudit event: Network configuration has been changed
    110129Security ConfigurationAudit event: Security configuration has been changed
    110130Hardware ConfigurationAudit event: Hardware configuration has been changed
    110131Software ConfigurationAudit event: Software configuration has been changed
    110132Use of Restricted FunctionAudit event: A use of a restricted function has been attempted
    110133Audit Recording StoppedAudit event: Audit recording has been stopped
    110134Audit Recording StartedAudit event: Audit recording has been started
    110135Object Security Attributes ChangedAudit event: Security attributes of an object have been changed
    110136Security Roles ChangedAudit event: Security roles have been changed
    110137User security Attributes ChangedAudit event: Security attributes of a user have been changed
    110138Emergency Override StoppedAudit event: Emergency Override has Stopped
    110139Remote Service Operation StartedAudit event: Remote Service Operation has Begun
    110140Remote Service Operation StoppedAudit event: Remote Service Operation has Stopped
    110141Local Service Operation StartedAudit event: Local Service Operation has Begun
    110142Local Service Operation StoppedAudit event: Local Service Operation Stopped
  • Include these codes as defined in http://hl7.org/fhir/restful-interaction
    CodeDisplayDefinition
    readreadRead the current state of the resource
    vreadvreadRead the state of a specific version of the resource
    updateupdateUpdate an existing resource by its id (or create it if it is new)
    deletedeleteDelete a resource
    validatevalidateCheck that the content would be acceptable as an update
    createcreateCreate a new resource with a server assigned id
    history-instancehistory-instanceRetrieve the update history for a particular resource
    history-typehistory-typeRetrieve the update history for a all resources of a particular type
    history-systemhistory-systemRetrieve the update history for all resources on a system
    search-typesearch-typeSearch all resources of the specified type based on some filter criteria
    search-systemsearch-systemSearch all resources based on some filter criteria
    transactiontransactionUpdate, create or delete a set of resources as a single transaction
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +

Security Event Sub-Type

More detailed code concerning the type of the security event - defined by DICOM with some FHIR specific additions

Copyright Statement: These codes are excerpted from Digital Imaging and Communications in Medicine (DICOM) Standard, Part 16: Content Mapping Resource, Copyright 2011 by the National Electrical Manufacturers Association

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://nema.org/dicom/dcid
    CodeDisplayDefinition
    110120Application StartAudit event: Application Entity has started
    110121Application StopAudit event: Application Entity has stopped
    110122LoginAudit event: User login has been attempted
    110123LogoutAudit event: User logout has been attempted
    110124AttachAudit event: Node has been attached
    110125DetachAudit event: Node has been detached
    110126Node AuthenticationAudit event: Node Authentication has been attempted
    110127Emergency Override StartedAudit event: Emergency Override has started
    110128Network ConfigurationAudit event: Network configuration has been changed
    110129Security ConfigurationAudit event: Security configuration has been changed
    110130Hardware ConfigurationAudit event: Hardware configuration has been changed
    110131Software ConfigurationAudit event: Software configuration has been changed
    110132Use of Restricted FunctionAudit event: A use of a restricted function has been attempted
    110133Audit Recording StoppedAudit event: Audit recording has been stopped
    110134Audit Recording StartedAudit event: Audit recording has been started
    110135Object Security Attributes ChangedAudit event: Security attributes of an object have been changed
    110136Security Roles ChangedAudit event: Security roles have been changed
    110137User security Attributes ChangedAudit event: Security attributes of a user have been changed
    110138Emergency Override StoppedAudit event: Emergency Override has Stopped
    110139Remote Service Operation StartedAudit event: Remote Service Operation has Begun
    110140Remote Service Operation StoppedAudit event: Remote Service Operation has Stopped
    110141Local Service Operation StartedAudit event: Local Service Operation has Begun
    110142Local Service Operation StoppedAudit event: Local Service Operation Stopped
  • Include these codes as defined in http://hl7.org/fhir/restful-interaction
    CodeDisplayDefinition
    readreadRead the current state of the resource
    vreadvreadRead the state of a specific version of the resource
    updateupdateUpdate an existing resource by its id (or create it if it is new)
    deletedeleteDelete a resource
    validatevalidateCheck that the content would be acceptable as an update
    createcreateCreate a new resource with a server assigned id
    history-instancehistory-instanceRetrieve the update history for a particular resource
    history-typehistory-typeRetrieve the update history for a all resources of a particular type
    history-systemhistory-systemRetrieve the update history for all resources on a system
    search-typesearch-typeSearch all resources of the specified type based on some filter criteria
    search-systemsearch-systemSearch all resources based on some filter criteria
    transactiontransactionUpdate, create or delete a set of resources as a single transaction
+
+
+ + Valueset "patient-contact-relationship" to support automated processing + http://hl7.org/fhir/vs/patient-contact-relationship + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

PatientContactRelationship

This value set defines a set of codes that are used to indicate the nature of the relationship between a patient and a contactperson for that patient

This value set defines its own terms in the system http://hl7.org/fhir/patient-contact-relationship

CodeDisplayDefinition
emergency EmergencyContact for use in case of emergency
family Family
guardian Guardian
friend Friend
partner Partner
work WorkContact for matters related to the patients occupation/employment
caregiver Caregiver(Non)professional caregiver
agent AgentContact that acts on behalf of the patient
guarantor GuarantorContact for financial matters
owner Owner of animalFor animals, the owner of the animal
parent ParentParent of the patient
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

PatientContactRelationship

This value set defines a set of codes that are used to indicate the nature of the relationship between a patient and a contactperson for that patient

This value set defines its own terms in the system http://hl7.org/fhir/patient-contact-relationship

CodeDisplayDefinition
emergency EmergencyContact for use in case of emergency
family Family
guardian Guardian
friend Friend
partner Partner
work WorkContact for matters related to the patients occupation/employment
caregiver Caregiver(Non)professional caregiver
agent AgentContact that acts on behalf of the patient
guarantor GuarantorContact for financial matters
owner Owner of animalFor animals, the owner of the animal
parent ParentParent of the patient
+
+
+ + Valueset "encounter-priority" to support automated processing + http://hl7.org/fhir/vs/encounter-priority + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Encounter Priority

This is an example value set defined by the FHIR project, that could be used in Emergency to indicate the encounter priority as determined by triage.

This value set defines its own terms in the system http://hl7.org/fhir/encounter-priority

CodeDisplayDefinition
imm ImmediateWithin seconds
emg EmergencyWithin 10 minutes
urg UrgentWithin 30 minutes
s-urg Semi-urgentWithin 60 minutes
no-urg Non-urgentWithin 120 minutes
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Encounter Priority

This is an example value set defined by the FHIR project, that could be used in Emergency to indicate the encounter priority as determined by triage.

This value set defines its own terms in the system http://hl7.org/fhir/encounter-priority

CodeDisplayDefinition
imm ImmediateWithin seconds
emg EmergencyWithin 10 minutes
urg UrgentWithin 30 minutes
s-urg Semi-urgentWithin 60 minutes
no-urg Non-urgentWithin 120 minutes
+
+
+ + Valueset "organization-type" to support automated processing + http://hl7.org/fhir/vs/organization-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

OrganizationType

This example value set defines a set of codes that can be used to indicate a type of organization.

This value set defines its own terms in the system http://hl7.org/fhir/organization-type

CodeDisplayDefinition
prov Healthcare Provider
dept Hospital Department
icu Intensive Care Unit
team Organizational team
fed Federal Government
ins Insurance Company
edu Educational Institute
reli Religious Institution
pharm Pharmacy
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

OrganizationType

This example value set defines a set of codes that can be used to indicate a type of organization.

This value set defines its own terms in the system http://hl7.org/fhir/organization-type

CodeDisplayDefinition
prov Healthcare Provider
dept Hospital Department
icu Intensive Care Unit
team Organizational team
fed Federal Government
ins Insurance Company
edu Educational Institute
reli Religious Institution
pharm Pharmacy
+
+
+ + Valueset "udi" to support automated processing + http://hl7.org/fhir/vs/udi + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample UDI codes. +

UDI Codes

This value set includes sample UDI codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ex-udi

CodeDisplayDefinition
{01}123456789
+
+ + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample UDI codes. +

UDI Codes

This value set includes sample UDI codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ex-udi

CodeDisplayDefinition
{01}123456789
+
+
+ + Valueset "dataelement-sdccode" to support automated processing + http://hl7.org/fhir/vs/dataelement-sdccode + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DataElement SDC Concept

The allowed codes for identifying the ISO 11179 data element concept if intended for registration/use within the U.S. Structured Data Capture (SDC) project.

Copyright Statement: This value set includes content from LOINC®, which is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use. This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
  • Include all codes defined in http://loinc.org
  • Include all codes defined in http://www.nlm.nih.gov/research/umls/rxnorm
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+

DataElement SDC Concept

The allowed codes for identifying the ISO 11179 data element concept if intended for registration/use within the U.S. Structured Data Capture (SDC) project.

Copyright Statement: This value set includes content from LOINC®, which is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use. This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
  • Include all codes defined in http://loinc.org
  • Include all codes defined in http://www.nlm.nih.gov/research/umls/rxnorm
+
+
+ + Valueset "xds-facilitycodes" to support automated processing + http://hl7.org/fhir/vs/xds-facilitycodes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

XDS Connect-a-thon healthcareFacilityTypeCodes

Example Connectathon Codes from http://ihexds.nist.gov:12080/xdsref/codes/codes.xml, with substantial corrections applied

This value set defines its own terms in the system urn:uuid:f33fb8ac-18af-42cc-ae0e-ed0b0bdb91e1

CodeDisplayDefinition
Home Home
Assisted Living Assisted Living
Home Health Care Home Health Care
Hospital Setting Hospital Setting
Acute care hospital Acute care hospital
Hospital Unit Hospital Unit
Critical Care Unit Critical Care Unit
Emergency Department Emergency Department
Observation Ward Observation Ward
Rehabilitation hospital Rehabilitation hospital
Nursing Home Nursing Home
Skilled Nursing Facility Skilled Nursing Facility
Outpatient Outpatient

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/HealthcareProviderTaxonomyHIPAA
    CodeDisplayDefinition
    394802001
    281PC2000NHospitals; Chronic Disease Hospital; Children
    282NC2000NHospitals; General Acute Care Hospital; Children
    281NR1301N
    282NW0100NHospitals; General Acute Care Hospital; Women
    283XC2000NHospitals; Rehabilitation Hospital; Children
    2865C1500NHospitals; Military Hospital; Community Health
    2865M2000NHospitals; Military Hospital; Medical Center
    2865X1600NHospitals; Military Hospital; Operational Component Facility
  • Include these codes as defined in http://hl7.org/fhir/v3/RoleCode
    CodeDisplayDefinition
    ACCaccident siteLocation of an accident where healthcare service was delivered, such as a roadside.
    ALLAllergy clinic
    AMBAmbulanceLocation (mobile) where healthcare service was delivered, identified specifically as an ambulance.
    AMPUTAmputee clinic
    BMTCBone marrow transplant clinic
    BMTUBone marrow transplant unit
    BREASTBreast clinic
    CANCChild and adolescent neurology clinic
    CAPCChild and adolescent psychiatry clinic
    CARDAmbulatory Health Care Facilities; Clinic/Center; Rehabilitation: Cardiac Facilities
    CATHCardiac catheterization lab
    CCUCoronary care unit
    CHESTChest unitA specialty unit in hospital that focuses on chronic respirator patients and pulmonary failure
    CHRChronic Care Facility(1) A hospital including a physical plant and personnel that provides multidisciplinary diagnosis and treatment for diseases that have one or more of the following characteristics: is permanent; leaves residual disability; is caused by nonreversible pathological alteration; requires special training of the patient for rehabilitation; and/or may be expected to require a long period of supervision or care. In addition, patients require the safety, security, and shelter of these specialized inpatient or partial hospitalization settings. (2) A hospital that provides medical and skilled nursing services to patients with long-term illnesses who are not in an acute phase but who require an intensity of services not available in nursing homes
    COAGCoagulation clinic
    COMMCommunity LocationCommunity location where healthcare is delivered.
    CRSColon and rectal surgery clinic
    CVDXCardiovascular diagnostics or therapeutics unitA practice setting where cardiovascular diagnostic procedures or therapeutic interventions are performed (e.g., cardiac catheterization lab, echocardiography suite)
    DADDRDelivery AddressLocation address where medical supplies were transported to for use.
    DERMDermatology clinic
    DXDiagnostics or therapeutics unitA practice setting where diagnostic procedures or therapeutic interventions are performed
    ECHOEchocardiography lab
    ENDOEndocrinology clinic
    ENDOSEndoscopy lab(X12N 261QD0000N)
    ENTOtorhinolaryngology clinic
    EPILEpilepsy unit
    EREmergency roomThe section of a health care facility for providing rapid treatment to victims of sudden illness or trauma.
    ETUEmergency trauma unit
    FMCFamily medicine clinic
    GACHHospitals; General Acute Care Hospital(X12N 282N00000N)
    GIGastroenterology clinic
    GIDXGastroenterology diagnostics or therapeutics labA practice setting where GI procedures (such as endoscopies) are performed
    GIMGeneral internal medicine clinic
    GYNGynecology clinic
    HANDHand clinic
    HDHemodialysis unit
    HEMHematology clinic
    HOSPHospitalAn acute care institution that provides medical, surgical, or psychiatric care and treatment for the sick or the injured.
    HTNHypertension clinic
    HUHospital unit
    ICUIntensive care unit
    IECImpairment evaluation centerFocuses on assessing disability
    INFDInfectious disease clinic
    INVInfertility clinic
    LYMPHLympedema clinic
    MGENMedical genetics clinic
    MHSPMilitary HospitalA health care facility operated by the Department of Defense or other military operation.
    MOBLMobile UnitLocation (mobile) where healthcare service was delivered.
    NCCFNursing or custodial care facility
    NCCSNeurology critical care and stroke unit
    NEPHNephrology clinic
    NEURNeurology clinic
    NSNeurosurgery unit
    OBObstetrics clinic
    OFOutpatient facility
    OMSOral and maxillofacial surgery clinic
    ONCLMedical oncology clinic
    OPHOpthalmology clinic
    ORTHOOrthopedics clinic
    PAINCLPain clinic(X12N 261QP3300N)
    PCPrimary care clinic(X12N 261QP2300N)
    PEDCPediatrics clinic
    PEDCARDPediatric cardiology clinic
    PEDEPediatric endocrinology clinic
    PEDGIPediatric gastroenterology clinic
    PEDHEMPediatric hematology clinic
    PEDHOPediatric oncology clinic
    PEDICUPediatric intensive care unit
    PEDIDPediatric infectious disease clinic
    PEDNEPHPediatric nephrology clinic
    PEDNICUPediatric neonatal intensive care unit
    PEDRHEUMPediatric rheumatology clinic
    PEDUPediatric unit
    PHARMPharmacyLocation where healthcare service was delivered, identified as a pharmacy.
    PHUPsychiatric hospital unit(X12N 273R00000N)
    PLSPlastic surgery clinic
    PODPodiatry clinic(X12N 261QP1100N)
    PRCPain rehabilitation center
    PREVPreventive medicine clinic
    PROCTOProctology clinic
    PROFFProvider's OfficeLocation where healthcare service was delivered, identified as the healthcare provider's practice office.
    PROSProsthodontics clinic
    PSIPsychology clinic
    PSYPsychiatry clinic
    PSYCHFPsychatric Care FacilityHealthcare facility that cares for patients with psychiatric illness(s).
    PTRESPatient's Residencelocation where healthcare was delivered which is the residence of the Patient.
    RADDXRadiology diagnostics or therapeutics unitA practice setting where radiology services (diagnostic or therapeutic) are provided (X12N 261QR0200N)
    RADORadiation oncology unit(X12N 261QX0203N)
    RHRehabilitation hospital(X12N 283X00000N)
    RHEUMRheumatology clinic
    RHURehabilitation hospital unit
    RNEUNeuroradiology unit
    RTFResidential treatment facility
    SCHOOLschoolLocation where healthcare service was delivered, identified as a school or educational facility.
    SLEEPSleep disorders unit(X12N 261QA1200N)
    SNFSkilled nursing facility(X12N 314000000N)
    SPMEDSports medicine clinic
    SUSurgery clinic
    SURFSubstance use rehabilitation facility(X12N 324500000N)
    TRTransplant clinic
    TRAVELTravel and geographic medicine clinic
    UROUrology clinic
    WNDWound clinic
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

XDS Connect-a-thon healthcareFacilityTypeCodes

Example Connectathon Codes from http://ihexds.nist.gov:12080/xdsref/codes/codes.xml, with substantial corrections applied

This value set defines its own terms in the system urn:uuid:f33fb8ac-18af-42cc-ae0e-ed0b0bdb91e1

CodeDisplayDefinition
Home Home
Assisted Living Assisted Living
Home Health Care Home Health Care
Hospital Setting Hospital Setting
Acute care hospital Acute care hospital
Hospital Unit Hospital Unit
Critical Care Unit Critical Care Unit
Emergency Department Emergency Department
Observation Ward Observation Ward
Rehabilitation hospital Rehabilitation hospital
Nursing Home Nursing Home
Skilled Nursing Facility Skilled Nursing Facility
Outpatient Outpatient

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/HealthcareProviderTaxonomyHIPAA
    CodeDisplayDefinition
    394802001
    281PC2000NHospitals; Chronic Disease Hospital; Children
    282NC2000NHospitals; General Acute Care Hospital; Children
    281NR1301N
    282NW0100NHospitals; General Acute Care Hospital; Women
    283XC2000NHospitals; Rehabilitation Hospital; Children
    2865C1500NHospitals; Military Hospital; Community Health
    2865M2000NHospitals; Military Hospital; Medical Center
    2865X1600NHospitals; Military Hospital; Operational Component Facility
  • Include these codes as defined in http://hl7.org/fhir/v3/RoleCode
    CodeDisplayDefinition
    ACCaccident siteLocation of an accident where healthcare service was delivered, such as a roadside.
    ALLAllergy clinic
    AMBAmbulanceLocation (mobile) where healthcare service was delivered, identified specifically as an ambulance.
    AMPUTAmputee clinic
    BMTCBone marrow transplant clinic
    BMTUBone marrow transplant unit
    BREASTBreast clinic
    CANCChild and adolescent neurology clinic
    CAPCChild and adolescent psychiatry clinic
    CARDAmbulatory Health Care Facilities; Clinic/Center; Rehabilitation: Cardiac Facilities
    CATHCardiac catheterization lab
    CCUCoronary care unit
    CHESTChest unitA specialty unit in hospital that focuses on chronic respirator patients and pulmonary failure
    CHRChronic Care Facility(1) A hospital including a physical plant and personnel that provides multidisciplinary diagnosis and treatment for diseases that have one or more of the following characteristics: is permanent; leaves residual disability; is caused by nonreversible pathological alteration; requires special training of the patient for rehabilitation; and/or may be expected to require a long period of supervision or care. In addition, patients require the safety, security, and shelter of these specialized inpatient or partial hospitalization settings. (2) A hospital that provides medical and skilled nursing services to patients with long-term illnesses who are not in an acute phase but who require an intensity of services not available in nursing homes
    COAGCoagulation clinic
    COMMCommunity LocationCommunity location where healthcare is delivered.
    CRSColon and rectal surgery clinic
    CVDXCardiovascular diagnostics or therapeutics unitA practice setting where cardiovascular diagnostic procedures or therapeutic interventions are performed (e.g., cardiac catheterization lab, echocardiography suite)
    DADDRDelivery AddressLocation address where medical supplies were transported to for use.
    DERMDermatology clinic
    DXDiagnostics or therapeutics unitA practice setting where diagnostic procedures or therapeutic interventions are performed
    ECHOEchocardiography lab
    ENDOEndocrinology clinic
    ENDOSEndoscopy lab(X12N 261QD0000N)
    ENTOtorhinolaryngology clinic
    EPILEpilepsy unit
    EREmergency roomThe section of a health care facility for providing rapid treatment to victims of sudden illness or trauma.
    ETUEmergency trauma unit
    FMCFamily medicine clinic
    GACHHospitals; General Acute Care Hospital(X12N 282N00000N)
    GIGastroenterology clinic
    GIDXGastroenterology diagnostics or therapeutics labA practice setting where GI procedures (such as endoscopies) are performed
    GIMGeneral internal medicine clinic
    GYNGynecology clinic
    HANDHand clinic
    HDHemodialysis unit
    HEMHematology clinic
    HOSPHospitalAn acute care institution that provides medical, surgical, or psychiatric care and treatment for the sick or the injured.
    HTNHypertension clinic
    HUHospital unit
    ICUIntensive care unit
    IECImpairment evaluation centerFocuses on assessing disability
    INFDInfectious disease clinic
    INVInfertility clinic
    LYMPHLympedema clinic
    MGENMedical genetics clinic
    MHSPMilitary HospitalA health care facility operated by the Department of Defense or other military operation.
    MOBLMobile UnitLocation (mobile) where healthcare service was delivered.
    NCCFNursing or custodial care facility
    NCCSNeurology critical care and stroke unit
    NEPHNephrology clinic
    NEURNeurology clinic
    NSNeurosurgery unit
    OBObstetrics clinic
    OFOutpatient facility
    OMSOral and maxillofacial surgery clinic
    ONCLMedical oncology clinic
    OPHOpthalmology clinic
    ORTHOOrthopedics clinic
    PAINCLPain clinic(X12N 261QP3300N)
    PCPrimary care clinic(X12N 261QP2300N)
    PEDCPediatrics clinic
    PEDCARDPediatric cardiology clinic
    PEDEPediatric endocrinology clinic
    PEDGIPediatric gastroenterology clinic
    PEDHEMPediatric hematology clinic
    PEDHOPediatric oncology clinic
    PEDICUPediatric intensive care unit
    PEDIDPediatric infectious disease clinic
    PEDNEPHPediatric nephrology clinic
    PEDNICUPediatric neonatal intensive care unit
    PEDRHEUMPediatric rheumatology clinic
    PEDUPediatric unit
    PHARMPharmacyLocation where healthcare service was delivered, identified as a pharmacy.
    PHUPsychiatric hospital unit(X12N 273R00000N)
    PLSPlastic surgery clinic
    PODPodiatry clinic(X12N 261QP1100N)
    PRCPain rehabilitation center
    PREVPreventive medicine clinic
    PROCTOProctology clinic
    PROFFProvider's OfficeLocation where healthcare service was delivered, identified as the healthcare provider's practice office.
    PROSProsthodontics clinic
    PSIPsychology clinic
    PSYPsychiatry clinic
    PSYCHFPsychatric Care FacilityHealthcare facility that cares for patients with psychiatric illness(s).
    PTRESPatient's Residencelocation where healthcare was delivered which is the residence of the Patient.
    RADDXRadiology diagnostics or therapeutics unitA practice setting where radiology services (diagnostic or therapeutic) are provided (X12N 261QR0200N)
    RADORadiation oncology unit(X12N 261QX0203N)
    RHRehabilitation hospital(X12N 283X00000N)
    RHEUMRheumatology clinic
    RHURehabilitation hospital unit
    RNEUNeuroradiology unit
    RTFResidential treatment facility
    SCHOOLschoolLocation where healthcare service was delivered, identified as a school or educational facility.
    SLEEPSleep disorders unit(X12N 261QA1200N)
    SNFSkilled nursing facility(X12N 314000000N)
    SPMEDSports medicine clinic
    SUSurgery clinic
    SURFSubstance use rehabilitation facility(X12N 324500000N)
    TRTransplant clinic
    TRAVELTravel and geographic medicine clinic
    UROUrology clinic
    WNDWound clinic
+
+
+ + Valueset "fundsreserve" to support automated processing + http://hl7.org/fhir/vs/fundsreserve + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample funds reservation type codes. +

Funds Reservation Codes

This value set includes sample funds reservation type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/fundsreserve

CodeDisplayDefinition
patient
provider
none
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample funds reservation type codes. +

Funds Reservation Codes

This value set includes sample funds reservation type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/fundsreserve

CodeDisplayDefinition
patient
provider
none
+
+
+ + Valueset "immunization-site" to support automated processing + http://hl7.org/fhir/vs/immunization-site + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Codes for Immunization Site of Administration

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + + + + + + + + + +
+
+

Codes for Immunization Site of Administration

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "teeth" to support automated processing + http://hl7.org/fhir/vs/teeth + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes the FDI Teeth codes. +

Teeth Codes

This value set includes the FDI Teeth codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ex-fdi

CodeDisplayDefinition
11
12
13
14
15
16
17
18
21
22
23
24
25
26
27
28
31
32
33
34
35
36
37
38
41
42
43
44
45
46
47
48
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes the FDI Teeth codes. +

Teeth Codes

This value set includes the FDI Teeth codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ex-fdi

CodeDisplayDefinition
11
12
13
14
15
16
17
18
21
22
23
24
25
26
27
28
31
32
33
34
35
36
37
38
41
42
43
44
45
46
47
48
+
+
+ + Valueset "animal-species" to support automated processing + http://hl7.org/fhir/vs/animal-species + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

AnimalSpecies

This example value set defines a set of codes that can be used to indicate species of animal patients.

This value set defines its own terms in the system http://hl7.org/fhir/animal-species

CodeDisplayDefinition
canislf DogCanis lupus familiaris
ovisa SheepOvis aries
serinuscd Domestic CanarySerinus canaria domestica
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

AnimalSpecies

This example value set defines a set of codes that can be used to indicate species of animal patients.

This value set defines its own terms in the system http://hl7.org/fhir/animal-species

CodeDisplayDefinition
canislf DogCanis lupus familiaris
ovisa SheepOvis aries
serinuscd Domestic CanarySerinus canaria domestica
+
+
+ + Valueset "modifiers" to support automated processing + http://hl7.org/fhir/vs/modifiers + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample Modifier type codes. +

Modifier type Codes

This value set includes sample Modifier type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/modifiers

CodeDisplayDefinition
A
B
C
E
X
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample Modifier type codes. +

Modifier type Codes

This value set includes sample Modifier type codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/modifiers

CodeDisplayDefinition
A
B
C
E
X
+
+
+ + Valueset "questionnaire-text-type" to support automated processing + http://hl7.org/fhir/vs/questionnaire-text-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Questionnaire Text Type

Codes that define types of additional text that may be associated with a Questionnaire group or question.

This value set defines its own terms in the system http://hl7.org/fhir/questionnaire-text-type

CodeDisplayDefinition
instruction instructionThe text provides instructions intended to be rendered with the element explaining how the content of the element is to be completed. This should be rendered in-line before the question or group.
security security and privacy textThe text describes specific security and/or privacy considerations associated with the element. E.g. retention rules, data access control expectations, etc.
help help textThe content is intended for display if a user selects an icon or performs some other action seeking help about the element
tooltip tool tipThe content is intended for use in a fly-over or similar display mechanism - primarily intended for online form entry
trailing trailing textThe text should be displayed after all of the other the content of the group or question
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Questionnaire Text Type

Codes that define types of additional text that may be associated with a Questionnaire group or question.

This value set defines its own terms in the system http://hl7.org/fhir/questionnaire-text-type

CodeDisplayDefinition
instruction instructionThe text provides instructions intended to be rendered with the element explaining how the content of the element is to be completed. This should be rendered in-line before the question or group.
security security and privacy textThe text describes specific security and/or privacy considerations associated with the element. E.g. retention rules, data access control expectations, etc.
help help textThe content is intended for display if a user selects an icon or performs some other action seeking help about the element
tooltip tool tipThe content is intended for use in a fly-over or similar display mechanism - primarily intended for online form entry
trailing trailing textThe text should be displayed after all of the other the content of the group or question
+
+
+ + Valueset "security-event-sensitivity" to support automated processing + http://hl7.org/fhir/vs/security-event-sensitivity + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Security Event Object Sensitivity

The sensitivity of an object in a secuity event resource. May also encompass confidentiality and rudimentary access control

This value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + +
+
+

Security Event Object Sensitivity

The sensitivity of an object in a secuity event resource. May also encompass confidentiality and rudimentary access control

This value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "docset-codes" to support automated processing + http://hl7.org/fhir/vs/docset-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

FHIR Document Codes

FHIR Document Codes - all LOINC codes where scale_type = 'DOC'

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://loinc.org where SCALE_TYP = DOC
+
+ + + + + + + + + + + + + + + + + + + + +
+
+

FHIR Document Codes

FHIR Document Codes - all LOINC codes where scale_type = 'DOC'

Copyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://loinc.org where SCALE_TYP = DOC
+
+
+ + Valueset "observation-interpretation" to support automated processing + http://hl7.org/fhir/vs/observation-interpretation + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Observation Interpretation Codes

This value set defines the set of codes that can be used to indicate the meaning/use of a reference range

This value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + + + +
+
+

Observation Interpretation Codes

This value set defines the set of codes that can be used to indicate the meaning/use of a reference range

This value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "immunization-reason" to support automated processing + http://hl7.org/fhir/vs/immunization-reason + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Immunization Reason Codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://snomed.info/sct
    CodeDisplayDefinition
    429060002Procedure to meet occupational requirement
    281657000Travel vaccinations
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+

Immunization Reason Codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://snomed.info/sct
    CodeDisplayDefinition
    429060002Procedure to meet occupational requirement
    281657000Travel vaccinations
+
+
+ + Valueset "animal-genderstatus" to support automated processing + http://hl7.org/fhir/vs/animal-genderstatus + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

GenderStatus

This example value set defines a set of codes that can be used to indicate the current state of the animal's reproductive organs.

This value set defines its own terms in the system http://hl7.org/fhir/animal-genderstatus

CodeDisplayDefinition
neutered NeuteredThe animal has been castrated and is infertile
intact IntactThe animals reproductive organs are intact
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+
+

GenderStatus

This example value set defines a set of codes that can be used to indicate the current state of the animal's reproductive organs.

This value set defines its own terms in the system http://hl7.org/fhir/animal-genderstatus

CodeDisplayDefinition
neutered NeuteredThe animal has been castrated and is infertile
intact IntactThe animals reproductive organs are intact
+
+
+ + Valueset "substance-type" to support automated processing + http://hl7.org/fhir/vs/substance-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Substance Type

This value sets refers to a substance type

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 105590001
  • Include codes from http://snomed.info/sct where concept is-a 373873005
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Substance Type

This value sets refers to a substance type

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 105590001
  • Include codes from http://snomed.info/sct where concept is-a 373873005
+
+
+ + Valueset "designation-use" to support automated processing + http://hl7.org/fhir/vs/designation-use + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Designation Use

Details of how a designation would be used

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 900000000000446008 (Snomed description types)
+
+ + + + + + + + + + + + + + + + + + + +
+
+

Designation Use

Details of how a designation would be used

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 900000000000446008 (Snomed description types)
+
+
+ + Valueset "relationship" to support automated processing + http://hl7.org/fhir/vs/relationship + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes the Patient to subscriber relationship codes. +

Surface Codes

This value set includes the Patient to subscriber relationship codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/relationship

CodeDisplayDefinition
1
2
3
4
5
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes the Patient to subscriber relationship codes. +

Surface Codes

This value set includes the Patient to subscriber relationship codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/relationship

CodeDisplayDefinition
1
2
3
4
5
+
+
+ + Valueset "fm-conditions" to support automated processing + http://hl7.org/fhir/vs/fm-conditions + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample Conditions codes. +

Conditions Codes

This value set includes sample Conditions codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/fm-conditions

CodeDisplayDefinition
123987
+
+ + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample Conditions codes. +

Conditions Codes

This value set includes sample Conditions codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/fm-conditions

CodeDisplayDefinition
123987
+
+
+ + Valueset "operation-definition-parameter-type" to support automated processing + http://hl7.org/fhir/vs/operation-definition-parameter-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Parameter Types used in Operation Definitions

Parameter Types used in Operation Definitions

Copyright Statement: Copyright HL7 Inc

This value set includes codes defined in other code systems, using the following rules:

+
+ + + + + + + + + + + + + +
+
+

Parameter Types used in Operation Definitions

Parameter Types used in Operation Definitions

Copyright Statement: Copyright HL7 Inc

This value set includes codes defined in other code systems, using the following rules:

+
+
+ + Valueset "clinical-findings" to support automated processing + http://hl7.org/fhir/vs/clinical-findings + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes all the "Clinical finding" SNOMED CT codes (i.e. codes with an is-a relationship with 404684003: Clinical finding) +

SNOMED CT Clinical Findings

This value set includes all the "Clinical finding" SNOMED CT codes (i.e. codes with an is-a relationship with 404684003: Clinical finding)

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 404684003
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes all the "Clinical finding" SNOMED CT codes (i.e. codes with an is-a relationship with 404684003: Clinical finding) +

SNOMED CT Clinical Findings

This value set includes all the "Clinical finding" SNOMED CT codes (i.e. codes with an is-a relationship with 404684003: Clinical finding)

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include codes from http://snomed.info/sct where concept is-a 404684003
+
+
+ + Valueset "encounter-diet" to support automated processing + http://hl7.org/fhir/vs/encounter-diet + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Diet

This value set defines a set of codes that can be used to indicate dietary preferences or restrictions a patient may have.

This value set defines its own terms in the system http://hl7.org/fhir/diet

CodeDisplayDefinition
vegetarian Food without meat, poultry or seafood
dairy-free Exludes dairy products
nut-free Excludes ingredients containing nuts
gluten-free Excludes ingredients containing gluten
vegan Food without meat, poultry, seafood, eggs, dairy products and other animal-derived substances
halal Foods that conform to Islamic law
kosher foods that conform to Jewish dietary law
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Diet

This value set defines a set of codes that can be used to indicate dietary preferences or restrictions a patient may have.

This value set defines its own terms in the system http://hl7.org/fhir/diet

CodeDisplayDefinition
vegetarian Food without meat, poultry or seafood
dairy-free Exludes dairy products
nut-free Excludes ingredients containing nuts
gluten-free Excludes ingredients containing gluten
vegan Food without meat, poultry, seafood, eggs, dairy products and other animal-derived substances
halal Foods that conform to Islamic law
kosher foods that conform to Jewish dietary law
+
+
+ + Valueset "texture-code" to support automated processing + http://hl7.org/fhir/vs/texture-code + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

TextureModifier

TextureModifier : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+ + + + + + + + + + + + + + + +
+
+

TextureModifier

TextureModifier : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+
+ + Valueset "list-example-codes" to support automated processing + http://hl7.org/fhir/vs/list-example-codes + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Example Use Codes for List

Example use codes for the List resource - typical kinds of use. TODO: Does LOINC define useful codes?

This value set defines its own terms in the system http://hl7.org/fhir/list-example-use-codes

CodeDisplayDefinition
alerts AlertsA list of alerts for the patient
adverserxns Adverse ReactionsA list of part adverse reactions
allergies AllergiesA list of Allergies for the patient
medications Medication ListA list of medication statements for the patient
problems Problem ListA list of problems that the patient is known of have (or have had in the past)
worklist WorklistA list of items that constitute a set of work to be performed (typically this code would be specialised for more specific uses, such as a ward round list)
waiting Waiting ListA list of items waiting for an event (perhaps a surgical patient waiting list)
protocols ProtocolsA set of protocols to be followed
plans Care PlansA set of care plans that apply in a particular context of care
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Example Use Codes for List

Example use codes for the List resource - typical kinds of use. TODO: Does LOINC define useful codes?

This value set defines its own terms in the system http://hl7.org/fhir/list-example-use-codes

CodeDisplayDefinition
alerts AlertsA list of alerts for the patient
adverserxns Adverse ReactionsA list of part adverse reactions
allergies AllergiesA list of Allergies for the patient
medications Medication ListA list of medication statements for the patient
problems Problem ListA list of problems that the patient is known of have (or have had in the past)
worklist WorklistA list of items that constitute a set of work to be performed (typically this code would be specialised for more specific uses, such as a ward round list)
waiting Waiting ListA list of items waiting for an event (perhaps a surgical patient waiting list)
protocols ProtocolsA set of protocols to be followed
plans Care PlansA set of care plans that apply in a particular context of care
+
+
+ + Valueset "missing-tooth-reason" to support automated processing + http://hl7.org/fhir/vs/missing-tooth-reason + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes sample Missing Tooth Reason codes. +

Missing Tooth Reason Codes

This value set includes sample Missing Tooth Reason codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/missingtoothreason

CodeDisplayDefinition
E
C
U
O
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes sample Missing Tooth Reason codes. +

Missing Tooth Reason Codes

This value set includes sample Missing Tooth Reason codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/missingtoothreason

CodeDisplayDefinition
E
C
U
O
+
+
+ + Valueset "service-uscls" to support automated processing + http://hl7.org/fhir/vs/service-uscls + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes a smattering of USCLS codes. +

USCLS Codes

This value set includes a smattering of USCLS codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ex-USCLS

CodeDisplayDefinition
1101
1102
1103
1201
1205
2101
2102
2141
2601
11101
11102
11103
11104
21211
21212
27211
99111
99333
99555
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes a smattering of USCLS codes. +

USCLS Codes

This value set includes a smattering of USCLS codes

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ex-USCLS

CodeDisplayDefinition
1101
1102
1103
1201
1205
2101
2102
2141
2601
11101
11102
11103
11104
21211
21212
27211
99111
99333
99555
+
+
+ + Valueset "observation-ccdasmokingstatus" to support automated processing + http://hl7.org/fhir/vs/observation-ccdasmokingstatus + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Smoking Status

This value set indicates the current smoking status of a patient. The vocabulary selected for this value set is the best approximation of the statuses in Meaningful Use (MU) Stage 1. The smoking status value set includes a special code to communicate if the smoking status is unknown

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://snomed.info/sct
    CodeDisplayDefinition
    449868002Smokes tobacco daily (finding)
    428041000124106
    8517006Ex-smoker (finding)
    266919005Never smoked tobacco (finding)
    77176002Smoker (finding)
    266927001Tobacco smoking consumption unknown (finding)
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Smoking Status

This value set indicates the current smoking status of a patient. The vocabulary selected for this value set is the best approximation of the statuses in Meaningful Use (MU) Stage 1. The smoking status value set includes a special code to communicate if the smoking status is unknown

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://snomed.info/sct
    CodeDisplayDefinition
    449868002Smokes tobacco daily (finding)
    428041000124106
    8517006Ex-smoker (finding)
    266919005Never smoked tobacco (finding)
    77176002Smoker (finding)
    266927001Tobacco smoking consumption unknown (finding)
+
+
+ + Valueset "units" to support automated processing + http://hl7.org/fhir/vs/units + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes all UCUM codes +

UCUM Codes

This value set includes all UCUM codes

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://unitsofmeasure.org
+
+ + + + + + + + + + + + + + +
+
+
+ This value set includes all UCUM codes +

UCUM Codes

This value set includes all UCUM codes

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://unitsofmeasure.org
+
+
+ + Valueset "no-immunization-reason" to support automated processing + http://hl7.org/fhir/vs/no-immunization-reason + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Immunization Reasons for Not Immunizing Codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/ActReason
    CodeDisplayDefinition
    IMMUNEimmunityDefinition:Testing has shown that the patient already has immunity to the agent targeted by the immunization.
    MEDPRECmedical precautionDefinition:The patient currently has a medical condition for which the vaccine is contraindicated or for which precaution is warranted.
    OSTOCKproduct out of stockDefinition:There was no supply of the product on hand to perform the service.
    PATOBJpatient objectionDefinition:The patient or their guardian objects to receiving the vaccine.
  • Include codes from http://snomed.info/sct where concept is-a 310376006
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Immunization Reasons for Not Immunizing Codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/ActReason
    CodeDisplayDefinition
    IMMUNEimmunityDefinition:Testing has shown that the patient already has immunity to the agent targeted by the immunization.
    MEDPRECmedical precautionDefinition:The patient currently has a medical condition for which the vaccine is contraindicated or for which precaution is warranted.
    OSTOCKproduct out of stockDefinition:There was no supply of the product on hand to perform the service.
    PATOBJpatient objectionDefinition:The patient or their guardian objects to receiving the vaccine.
  • Include codes from http://snomed.info/sct where concept is-a 310376006
+
+
+ + Valueset "marital-status" to support automated processing + http://hl7.org/fhir/vs/marital-status + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Marital Status Codes

This value set defines the set of codes that can be used to indicate the marital status of a person

This value set defines its own terms in the system http://hl7.org/fhir/marital-status

CodeDisplayDefinition
U unmarriedThe person is not presently married. The marital history is not known or stated

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/MaritalStatus
    CodeDisplayDefinition
    AAnnulledMarriage contract has been declared null and to not have existed
    DDivorcedMarriage contract has been declared dissolved and inactive
    IInterlocutorySubject to an Interlocutory Decree.
    LLegally Separated
    MMarriedA current marriage contract is active
    PPolygamousMore than 1 current spouse
    SNever MarriedNo marriage contract has ever been entered
    TDomestic partnerPerson declares that a domestic partner relationship exists.
    WWidowedThe spouse has died
  • Include these codes as defined in http://hl7.org/fhir/v3/NullFlavor
    CodeDisplayDefinition
    UNKunknownDescription:A proper value is applicable, but not known.
    + + Usage Notes: This means the actual value is not known. If the only thing that is unknown is how to properly express the value in the necessary constraints (value set, datatype, etc.), then the OTH or UNC flavor should be used. No properties should be included for a datatype with this property unless:
    + + Those properties themselves directly translate to a semantic of "unknown". (E.g. a local code sent as a translation that conveys 'unknown') + Those properties further qualify the nature of what is unknown. (E.g. specifying a use code of "H" and a URL prefix of "tel:" to convey that it is the home phone number that is unknown.)
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Marital Status Codes

This value set defines the set of codes that can be used to indicate the marital status of a person

This value set defines its own terms in the system http://hl7.org/fhir/marital-status

CodeDisplayDefinition
U unmarriedThe person is not presently married. The marital history is not known or stated

In addition, this value set includes codes defined in other code systems, using the following rules:

  • Include these codes as defined in http://hl7.org/fhir/v3/MaritalStatus
    CodeDisplayDefinition
    AAnnulledMarriage contract has been declared null and to not have existed
    DDivorcedMarriage contract has been declared dissolved and inactive
    IInterlocutorySubject to an Interlocutory Decree.
    LLegally Separated
    MMarriedA current marriage contract is active
    PPolygamousMore than 1 current spouse
    SNever MarriedNo marriage contract has ever been entered
    TDomestic partnerPerson declares that a domestic partner relationship exists.
    WWidowedThe spouse has died
  • Include these codes as defined in http://hl7.org/fhir/v3/NullFlavor
    CodeDisplayDefinition
    UNKunknownDescription:A proper value is applicable, but not known.
    + + Usage Notes: This means the actual value is not known. If the only thing that is unknown is how to properly express the value in the necessary constraints (value set, datatype, etc.), then the OTH or UNC flavor should be used. No properties should be included for a datatype with this property unless:
    + + Those properties themselves directly translate to a semantic of "unknown". (E.g. a local code sent as a translation that conveys 'unknown') + Those properties further qualify the nature of what is unknown. (E.g. specifying a use code of "H" and a URL prefix of "tel:" to convey that it is the home phone number that is unknown.)
+
+
+ + Valueset "supplement-type" to support automated processing + http://hl7.org/fhir/vs/supplement-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

SupplementType

SupplementType : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+ + + + + + + + + + + + + + + +
+
+

SupplementType

SupplementType : all SNOMED CT codes for now. This is a placeholder until code set defined

Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
+
+
+ + Valueset "vaccination-protocol-dose-status-reason" to support automated processing + http://hl7.org/fhir/vs/vaccination-protocol-dose-status-reason + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Vaccination Protocol Dose Status Reason codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set defines its own terms in the system http://hl7.org/fhir/vaccination-protocol-dose-status-reason

CodeDisplayDefinition
advstorage Adverse storgage condition
coldchbrk Cold chain break
explot Expired lot
outsidesched Administered outside recommended schedule
prodrecall Product recall
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Vaccination Protocol Dose Status Reason codes

The value set to instantiate this attribute should be drawn from a terminologically robust code system that consists of or contains concepts to support the medication process, in particular the process and reasons for dispensing. This value set is provided as a suggestive example

This value set defines its own terms in the system http://hl7.org/fhir/vaccination-protocol-dose-status-reason

CodeDisplayDefinition
advstorage Adverse storgage condition
coldchbrk Cold chain break
explot Expired lot
outsidesched Administered outside recommended schedule
prodrecall Product recall
+
+
+ + Valueset "dataelement-sdcobjectclass" to support automated processing + http://hl7.org/fhir/vs/dataelement-sdcobjectclass + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

DataElement SDC Object Class

The allowed codes for identifying the ISO 11179 ObjectClass for a particular data element if intended for registration/use within the U.S. Structured Data Capture (SDC) project.

Copyright Statement: This value set includes content from LOINC®, which is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use. This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
  • Include all codes defined in http://loinc.org
  • Include all codes defined in http://www.nlm.nih.gov/research/umls/rxnorm
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+

DataElement SDC Object Class

The allowed codes for identifying the ISO 11179 ObjectClass for a particular data element if intended for registration/use within the U.S. Structured Data Capture (SDC) project.

Copyright Statement: This value set includes content from LOINC®, which is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use. This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement

This value set includes codes defined in other code systems, using the following rules:

  • Include all codes defined in http://snomed.info/sct
  • Include all codes defined in http://loinc.org
  • Include all codes defined in http://www.nlm.nih.gov/research/umls/rxnorm
+
+
+ + Valueset "contactentity-type" to support automated processing + http://hl7.org/fhir/vs/contactentity-type + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

ContactEntityType

This example value set defines a set of codes that can be used to indicate the purpose for which you would contact a contact party.

This value set defines its own terms in the system http://hl7.org/fhir/contactentity-type

CodeDisplayDefinition
BILL Billing
ADMIN Administrative
HR Human Resource
PAYOR Payor
PATINF PatientGeneric information contact for patients
PRESS Press
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

ContactEntityType

This example value set defines a set of codes that can be used to indicate the purpose for which you would contact a contact party.

This value set defines its own terms in the system http://hl7.org/fhir/contactentity-type

CodeDisplayDefinition
BILL Billing
ADMIN Administrative
HR Human Resource
PAYOR Payor
PATINF PatientGeneric information contact for patients
PRESS Press
+
+
+ + Valueset "tooth" to support automated processing + http://hl7.org/fhir/vs/tooth + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+ This value set includes a smattering of ISO tooth surface codes. +

Surface Codes

This value set includes a smattering of FDI tooth surface codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ex-surface

CodeDisplayDefinition
0
1
2
3
4
5
10
20
30
40
11
12
13
14
15
16
17
18
21
22
23
24
25
26
27
28
31
32
33
34
35
36
37
38
41
42
43
44
45
46
47
48
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ This value set includes a smattering of ISO tooth surface codes. +

Surface Codes

This value set includes a smattering of FDI tooth surface codes.

Copyright Statement: This is an example set

This value set defines its own terms in the system http://hl7.org/fhir/ex-surface

CodeDisplayDefinition
0
1
2
3
4
5
10
20
30
40
11
12
13
14
15
16
17
18
21
22
23
24
25
26
27
28
31
32
33
34
35
36
37
38
41
42
43
44
45
46
47
48
+
+
+ + Valueset "condition-certainty" to support automated processing + http://hl7.org/fhir/vs/condition-certainty + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +
+

This value set includes all SNOMED CT codes relating to the qualifier "Known" (concepts with an is-a relationship with 36692007)

+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+

This value set includes all SNOMED CT codes relating to the qualifier "Known" (concepts with an is-a relationship with 36692007)

+
+
+
+ + Valueset "message-reason-encounter" to support automated processing + http://hl7.org/fhir/vs/message-reason-encounter + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

Example Message Reason Codes

Example Message Reasons. These are the set of codes that might be used an updating an encounter using admin-update

This value set defines its own terms in the system http://hl7.org/fhir/message-reasons-encounter

CodeDisplayDefinition
admit AdmitThe patient has been admitted
discharge DischargeThe patient has been discharged
absent AbsentThe patient has temporarily left the institution
return ReturnedThe patient has returned from a temporary absence
moved MovedThe patient has been moved to a new location
edit EditEncounter details have been updated (e.g. to correct a coding error)
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Example Message Reason Codes

Example Message Reasons. These are the set of codes that might be used an updating an encounter using admin-update

This value set defines its own terms in the system http://hl7.org/fhir/message-reasons-encounter

CodeDisplayDefinition
admit AdmitThe patient has been admitted
discharge DischargeThe patient has been discharged
absent AbsentThe patient has temporarily left the institution
return ReturnedThe patient has returned from a temporary absence
moved MovedThe patient has been moved to a new location
edit EditEncounter details have been updated (e.g. to correct a coding error)
+
+
+ + Valueset "practitioner-specialty" to support automated processing + http://hl7.org/fhir/vs/practitioner-specialty + + + 2014-10-20T20:22:54.816+00:00 + + HL7, Inc (FHIR Project) + http://hl7.org/fhir + + 2014-10-20T20:22:54.816+00:00 + + + +

PractitionerSpecialty

This example value set defines a set of codes that can be used to indicate the specialty of a Practitioner

This value set defines its own terms in the system http://hl7.org/fhir/practitioner-specialty

CodeDisplayDefinition
cardio Cardiologist
dent Dentist
dietary Dietary consultant
midw Midwife
sysarch Systems architect
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

PractitionerSpecialty

This example value set defines a set of codes that can be used to indicate the specialty of a Practitioner

This value set defines its own terms in the system http://hl7.org/fhir/practitioner-specialty

CodeDisplayDefinition
cardio Cardiologist
dent Dentist
dietary Dietary consultant
midw Midwife
sysarch Systems architect
+
+
+ \ No newline at end of file diff --git a/hapi-tinder-test/pom.xml b/hapi-tinder-test/pom.xml index 4202374e31d..b4fc6d96ac9 100644 --- a/hapi-tinder-test/pom.xml +++ b/hapi-tinder-test/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../pom.xml @@ -17,12 +17,12 @@ ca.uhn.hapi.fhir hapi-fhir-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-structures-dstu - 0.7-SNAPSHOT + 0.8-SNAPSHOT @@ -45,7 +45,7 @@ ca.uhn.hapi.fhir hapi-tinder-plugin - 0.7-SNAPSHOT + 0.8-SNAPSHOT custom-structs @@ -55,6 +55,7 @@ ca.uhn.test.customstructs http://foo + dstu ${project.basedir}/src/test/resources/profile/patient.xml @@ -82,6 +83,7 @@
ca.uhn.test.realstructs + dstu patient valueset @@ -102,7 +104,7 @@ ca.uhn.hapi.fhir hapi-fhir-structures-dstu - 0.7-SNAPSHOT + 0.8-SNAPSHOT
diff --git a/pom.xml b/pom.xml index b45a8f663e8..14e78d20390 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ ca.uhn.hapi.fhir hapi-fhir pom - 0.7-SNAPSHOT + 0.8-SNAPSHOT HAPI-FHIR http://hl7api.sourceforge.net/hapi-fhir/ diff --git a/restful-server-example-test/pom.xml b/restful-server-example-test/pom.xml index 3a40c55effb..e620caa09d0 100644 --- a/restful-server-example-test/pom.xml +++ b/restful-server-example-test/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 0.7-SNAPSHOT + 0.8-SNAPSHOT ../pom.xml @@ -17,12 +17,12 @@ ca.uhn.hapi.fhir hapi-fhir-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-structures-dstu - 0.7-SNAPSHOT + 0.8-SNAPSHOT test diff --git a/restful-server-example/.settings/org.eclipse.wst.common.component b/restful-server-example/.settings/org.eclipse.wst.common.component index b22f61289cf..38e539885da 100644 --- a/restful-server-example/.settings/org.eclipse.wst.common.component +++ b/restful-server-example/.settings/org.eclipse.wst.common.component @@ -3,10 +3,13 @@ - + uses - + + uses + + consumes diff --git a/restful-server-example/pom.xml b/restful-server-example/pom.xml index a15b6697717..77661aacc92 100644 --- a/restful-server-example/pom.xml +++ b/restful-server-example/pom.xml @@ -1,11 +1,11 @@ 4.0.0 + - org.sonatype.oss oss-parent 7 @@ -34,21 +34,20 @@ ca.uhn.hapi.fhir hapi-fhir-base - 0.7-SNAPSHOT + 0.8-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-structures-dstu - 0.7-SNAPSHOT - test + 0.8-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-testpage-overlay - 0.7-SNAPSHOT + 0.8-SNAPSHOT war provided