Vital Records Death Reporting (VRDR) FHIR Implementation Guide
2.0.0 - STU 2 US

This page is part of the Vital Records Mortality and Morbidity Reporting FHIR IG (v2.0.0: STU 2) based on FHIR R4. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions

: CodingStatusValues-Example1 - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:Parameters;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "CodingStatusValues-Example1"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/vrdr/StructureDefinition/vrdr-coding-status-values";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/vrdr/StructureDefinition/vrdr-coding-status-values>     ]
  ];
  fhir:Parameters.parameter [
     fhir:index 0;
     fhir:Parameters.parameter.name [ fhir:value "shipmentNumber" ];
     fhir:Parameters.parameter.valueString [ fhir:value "A2B2" ]
  ], [
     fhir:index 1;
     fhir:Parameters.parameter.name [ fhir:value "receiptDate" ];
     fhir:Parameters.parameter.valueDate [ fhir:value "2021-12-12"^^xsd:date ]
  ], [
     fhir:index 2;
     fhir:Parameters.parameter.name [ fhir:value "coderStatus" ];
     fhir:Parameters.parameter.valueInteger [ fhir:value "5"^^xsd:integer ]
  ], [
     fhir:index 3;
     fhir:Parameters.parameter.name [ fhir:value "intentionalReject" ];
     fhir:Parameters.parameter.valueCodeableConcept [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://hl7.org/fhir/us/vrdr/CodeSystem/vrdr-intentional-reject-cs" ];
         fhir:Coding.code [ fhir:value "1" ];
         fhir:Coding.display [ fhir:value "Reject1" ]       ]     ]
  ], [
     fhir:index 4;
     fhir:Parameters.parameter.name [ fhir:value "acmeSystemReject" ];
     fhir:Parameters.parameter.valueCodeableConcept [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://hl7.org/fhir/us/vrdr/CodeSystem/vrdr-system-reject-cs" ];
         fhir:Coding.code [ fhir:value "0" ];
         fhir:Coding.display [ fhir:value "Not Rejected" ]       ]     ]
  ], [
     fhir:index 5;
     fhir:Parameters.parameter.name [ fhir:value "transaxConversion" ];
     fhir:Parameters.parameter.valueCodeableConcept [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://hl7.org/fhir/us/vrdr/CodeSystem/vrdr-transax-conversion-cs" ];
         fhir:Coding.code [ fhir:value "3" ];
         fhir:Coding.display [ fhir:value "Conversion using non-ambivalent table entries" ]       ]     ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.