@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/core/Provenance/example-targeted-provenance> a fhir:Provenance ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-targeted-provenance"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-provenance"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-provenance>
     ] )
  ] ; # 
  fhir:target ( [
     fhir:link <http://hl7.org/fhir/us/core/Patient/example-targeted-provenance> ;
     fhir:extension ( [
       fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/targetElement"^^xsd:anyURI ] ;
       fhir:value [ fhir:v "race"^^xsd:anyURI ]
     ] ) ;
     fhir:reference [ fhir:v "Patient/example-targeted-provenance" ]
  ] ) ; # 
  fhir:recorded [ fhir:v "2023-02-28T15:26:23.217+00:00"^^xsd:dateTime] ; # 
  fhir:agent ( [
     fhir:role ( [
       fhir:coding ( [
         fhir:system [ fhir:v "http://dicom.nema.org/resources/ontology/DCM"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "110150" ] ;
         fhir:display [ fhir:v "Application" ]
       ] )
     ] ) ;
     fhir:who [
       fhir:display [ fhir:v "My_Form" ]
     ]
  ] [
     fhir:type [
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/provenance-participant-type"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "informant" ] ;
         fhir:display [ fhir:v "Informant" ]
       ] )
     ] ;
     fhir:who [
       fhir:link <http://hl7.org/fhir/us/core/Patient/example-targeted-provenance> ;
       fhir:reference [ fhir:v "Patient/example-targeted-provenance" ]
     ]
  ] ) . # 

<http://hl7.org/fhir/us/core/Patient/example-targeted-provenance> a fhir:us .

# -------------------------------------------------------------------------------------

