@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/us/ndh/Group/aGroup> a fhir:Group ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "aGroup"] ; # 
  fhir:meta [
     fhir:lastUpdated [ fhir:v "2026-02-18T13:26:22.0314215+00:00"^^xsd:dateTime ] ;
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/ndh/StructureDefinition/ndh-Group"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/ndh/StructureDefinition/ndh-Group>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Group aGroup</b></p><a name=\"aGroup\"> </a><a name=\"hcaGroup\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Last updated: 2026-02-18 13:26:22+0000</p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-ndh-Group.html\">NDH Group</a></p></div><p><b>active</b>: true</p><p><b>type</b>: Practitioner</p><p><b>actual</b>: true</p><p><b>code</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/ndh-healthcare-service-category behav}\">Behavioral Health</span></p><p><b>name</b>: Behavioral Health Group</p><p><b>managingEntity</b>: <a href=\"Organization-BurrClinic.html\">Organization Burr Clinic</a></p><blockquote><p><b>member</b></p><p><b>entity</b>: <a href=\"Practitioner-JoeSmith.html\">Practitioner Joe Smith, MD</a></p><p><b>period</b>: 2020-01-01 --&gt; 2025-12-31</p><p><b>inactive</b>: false</p></blockquote><blockquote><p><b>member</b></p><p><b>entity</b>: <a href=\"Practitioner-HansSolo.html\">Practitioner Hans Solo, MD</a></p><p><b>period</b>: 2020-01-01 --&gt; 2025-12-31</p><p><b>inactive</b>: false</p></blockquote></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:type [ fhir:v "practitioner"] ; # 
  fhir:actual [ fhir:v true] ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/ndh-healthcare-service-category"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/ndh-healthcare-service-category>
       ] ;
       fhir:code [ fhir:v "behav" ]
     ] )
  ] ; # 
  fhir:name [ fhir:v "Behavioral Health Group"] ; # 
  fhir:managingEntity [
     fhir:l <http://hl7.org/fhir/us/ndh/Organization/BurrClinic> ;
     fhir:reference [ fhir:v "Organization/BurrClinic" ]
  ] ; # 
  fhir:member ( [
     fhir:entity [
       fhir:l <http://hl7.org/fhir/us/ndh/Practitioner/JoeSmith> ;
       fhir:reference [ fhir:v "Practitioner/JoeSmith" ]
     ] ;
     fhir:period [
       fhir:start [ fhir:v "2020-01-01"^^xsd:date ] ;
       fhir:end [ fhir:v "2025-12-31"^^xsd:date ]
     ] ;
     fhir:inactive [ fhir:v false ]
  ] [
     fhir:entity [
       fhir:l <http://hl7.org/fhir/us/ndh/Practitioner/HansSolo> ;
       fhir:reference [ fhir:v "Practitioner/HansSolo" ]
     ] ;
     fhir:period [
       fhir:start [ fhir:v "2020-01-01"^^xsd:date ] ;
       fhir:end [ fhir:v "2025-12-31"^^xsd:date ]
     ] ;
     fhir:inactive [ fhir:v false ]
  ] ) . # 

<http://hl7.org/fhir/us/ndh/Organization/BurrClinic> a fhir:Us .

<http://hl7.org/fhir/us/ndh/Practitioner/JoeSmith> a fhir:Us .

<http://hl7.org/fhir/us/ndh/Practitioner/HansSolo> a fhir:Us .

# -------------------------------------------------------------------------------------

