SDOH Clinical Care
0.1.0 - STU 1

This page is part of the SDOH Clinical Care for Multiple Domains (v0.1.0: STU 1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 2.0.0. For a full list of available versions, see the Directory of published versions

: John's Pantry 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:Group;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "R101"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "3" ];
     fhir:Meta.lastUpdated [ fhir:value "2020-12-02T15:26:02.113+00:00"^^xsd:dateTime ];
     fhir:Meta.source [ fhir:value "#dNfkbaAMYOAELG3T" ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/sdoh-clinicalcare/StructureDefinition/SDOHCC-Group";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/sdoh-clinicalcare/StructureDefinition/SDOHCC-Group>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>type</b>: person</p><p><b>actual</b>: true</p><p><b>code</b>: <span title=\"Codes: \">Referred to John's Pantry</span></p><p><b>name</b>: John's Pantry</p><p><b>quantity</b>: 25</p><blockquote><p><b>characteristic</b></p><p><b>code</b>: <span title=\"Codes: \">ServiceRequest organization</span></p><p><b>value</b>: <span title=\"Codes: \">Request service</span></p><p><b>exclude</b>: false</p></blockquote><blockquote><p><b>characteristic</b></p><p><b>code</b>: <span title=\"Codes: \">owner</span></p><p><b>value</b>: <span title=\"Codes: \">ABC Medical Group</span></p><p><b>exclude</b>: false</p></blockquote></div>"
  ];
  fhir:Group.type [ fhir:value "person"];
  fhir:Group.actual [ fhir:value "true"^^xsd:boolean];
  fhir:Group.code [
     fhir:CodeableConcept.text [ fhir:value "Referred to John's Pantry" ]
  ];
  fhir:Group.name [ fhir:value "John's Pantry"];
  fhir:Group.quantity [ fhir:value "25"^^xsd:nonNegativeInteger];
  fhir:Group.characteristic [
     fhir:index 0;
     fhir:Group.characteristic.code [
       fhir:CodeableConcept.text [ fhir:value "ServiceRequest organization" ]     ];
     fhir:Group.characteristic.valueCodeableConcept [
       fhir:CodeableConcept.text [ fhir:value "Request service" ]     ];
     fhir:Group.characteristic.exclude [ fhir:value "false"^^xsd:boolean ]
  ], [
     fhir:index 1;
     fhir:Group.characteristic.code [
       fhir:CodeableConcept.text [ fhir:value "owner" ]     ];
     fhir:Group.characteristic.valueCodeableConcept [
       fhir:CodeableConcept.text [ fhir:value "ABC Medical Group" ]     ];
     fhir:Group.characteristic.exclude [ fhir:value "false"^^xsd:boolean ]
  ].

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

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