Dental Data Exchange
1.0.0 - CI Build United States of America flag

Dental Data Exchange, published by Payer/Provider Information Exchange Work Group. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/dental-data-exchange/ and changes regularly. See the Directory of published versions

: Patient A example - 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:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-dental"] ; # 
  fhir:meta [
fhir:versionId [ fhir:v "6" ] ;
fhir:lastUpdated [ fhir:v "2021-03-30T15:54:14.486+00:00"^^xsd:dateTime ] ;
fhir:source [ fhir:v "#nRym4nap90mqpxVr"^^xsd:anyURI ] ;
    ( fhir:profile [
fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"^^xsd:anyURI ;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient>     ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <div class=\"hapiHeaderText\">Patient \n                \n                <b>A </b>\n            </div>\n            <table class=\"hapiPropertyTable\">\n                <tbody>\n                    <tr>\n                        <td>Identifier</td>\n                        <td>5152020</td>\n                    </tr>\n                    <tr>\n                        <td>Address</td>\n                        <td>\n                            <span>123 Test Dr. </span>\n                            <br/>\n                            <span>Denver </span>\n                            <span>CO </span>\n                            <span>US </span>\n                        </td>\n                    </tr>\n                    <tr>\n                        <td>Date of birth</td>\n                        <td>\n                            <span>01 January 1990</span>\n                        </td>\n                    </tr>\n                </tbody>\n            </table>\n        </div>"
  ] ; # 
  fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race"^^xsd:anyURI ] ;
    ( fhir:extension [
fhir:url [ fhir:v "ombCategory"^^xsd:anyURI ] ;
fhir:value [
a fhir:Coding ;
fhir:system [ fhir:v "urn:oid:2.16.840.1.113883.6.238"^^xsd:anyURI ] ;
fhir:code [ fhir:v "2106-3" ] ;
fhir:display [ fhir:v "White" ]       ]     ] [
fhir:url [ fhir:v "detailed"^^xsd:anyURI ] ;
fhir:value [
a fhir:Coding ;
fhir:system [ fhir:v "urn:oid:2.16.840.1.113883.6.238"^^xsd:anyURI ] ;
fhir:code [ fhir:v "1516-4" ] ;
fhir:display [ fhir:v "Zuni" ]       ]     ] [
fhir:url [ fhir:v "text"^^xsd:anyURI ] ;
fhir:value [ fhir:v "Mixed" ]     ] )
  ] [
fhir:url [ fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity"^^xsd:anyURI ] ;
    ( fhir:extension [
fhir:url [ fhir:v "ombCategory"^^xsd:anyURI ] ;
fhir:value [
a fhir:Coding ;
fhir:system [ fhir:v "urn:oid:2.16.840.1.113883.6.238"^^xsd:anyURI ] ;
fhir:code [ fhir:v "2135-2" ] ;
fhir:display [ fhir:v "Hispanic or Latino" ]       ]     ] [
fhir:url [ fhir:v "text"^^xsd:anyURI ] ;
fhir:value [ fhir:v "Hispanic or Latino" ]     ] )
  ] [
fhir:url [ fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex"^^xsd:anyURI ] ;
fhir:value [ fhir:v "M" ]
  ] ) ; # 
  fhir:identifier ( [
fhir:use [ fhir:v "usual" ] ;
fhir:type [
      ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "MR" ] ;
fhir:display [ fhir:v "Medical Record Number" ]       ] ) ;
fhir:text [ fhir:v "Medical Record Number" ]     ] ;
fhir:system [ fhir:v "http://clinic.goodhealth.org"^^xsd:anyURI ] ;
fhir:value [ fhir:v "5152020" ]
  ] ) ; # 
  fhir:active [ fhir:v "true"^^xsd:boolean] ; # 
  fhir:name ( [
fhir:family [ fhir:v "A" ] ;
    ( fhir:given [ fhir:v "Patient" ] )
  ] ) ; # 
  fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "123-456-7890" ] ;
fhir:use [ fhir:v "home" ]
  ] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "testA@email.com" ]
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1990-01-01"^^xsd:date] ; # 
  fhir:address ( [
    ( fhir:line [ fhir:v "123 Test Dr." ] ) ;
fhir:city [ fhir:v "Denver" ] ;
fhir:state [ fhir:v "CO" ] ;
fhir:postalCode [ fhir:v "80204" ] ;
fhir:country [ fhir:v "US" ]
  ] ) . #