@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 -------------------------------------------------------------------

<http://hl7.org/fhir/us/quality-core/CareTeam/example> a fhir:CareTeam ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/quality-core/StructureDefinition/us-quality-core-careteam" ;
       fhir:index 0 ;
       fhir:link <http://hl7.org/fhir/us/quality-core/StructureDefinition/us-quality-core-careteam>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: CareTeam example</b></p><a name=\"example\"> </a><a name=\"hcexample\"> </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\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-us-quality-core-careteam.html\">US Quality Core CareTeam</a></p></div><p><b>status</b>: Active</p><p><b>subject</b>: <a href=\"Patient-reproductive-health-example.html\">Example Reproductive Health Patient</a></p><h3>Participants</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Role</b></td><td><b>Member</b></td></tr><tr><td style=\"display: none\">*</td><td><span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-ParticipationFunction MDWF}\">midwife</span></td><td>Example Midwife</td></tr></table></div>"
  ] ;
  fhir:CareTeam.status [ fhir:value "active"] ;
  fhir:CareTeam.subject [
     fhir:link <http://hl7.org/fhir/us/quality-core/Patient/reproductive-health-example> ;
     fhir:Reference.reference [ fhir:value "Patient/reproductive-health-example" ] ;
     fhir:Reference.display [ fhir:value "Example Reproductive Health Patient" ]
  ] ;
  fhir:CareTeam.participant [
     fhir:index 0 ;
     fhir:CareTeam.participant.role [
       fhir:index 0 ;
       fhir:CodeableConcept.coding [
         fhir:index 0 ;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ParticipationFunction" ] ;
         fhir:Coding.code [ fhir:value "MDWF" ] ;
         fhir:Coding.display [ fhir:value "midwife" ]
       ]
     ] ;
     fhir:CareTeam.participant.member [
       fhir:Reference.display [ fhir:value "Example Midwife" ]
     ]
  ] .

<http://hl7.org/fhir/us/quality-core/Patient/reproductive-health-example> a fhir:us .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/us/quality-core/CareTeam/example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/us/quality-core/CareTeam/example.ttl> .

# -------------------------------------------------------------------------------------

