This
page
is
part
of
the
FHIR
Specification
(v5.0.0:
R5
-
STU
v6.0.0-ballot1:
Release
6
Ballot
(1st
Draft)
(see
Ballot
Notes
).
This
is
the
The
current
published
version
in
it's
permanent
home
(it
will
always
be
available
at
this
URL).
is
5.0.0
.
For
a
full
list
of
available
versions,
see
the
Directory
of
published
versions
.
Page
versions:
R5
R4B
R4
R3
Example
Contract/pcd-example-notThis
(Turtle)
Raw
Turtle
(+
also
see
Turtle/RDF
Format
Specification
)
ConsentDirective
Example
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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:Contract ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "pcd-example-notThis"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">The following scenario is based on existing\n jurisdictional policy and are realized in existing systems in Canada. The default policy is\n one of implied consent for the provision of care, so these scenarios all deal with withdrawal\n or withholding consent for that purpose. In other jurisdictions, where an express consent\n model is used (Opt-In), these would examples would contain the phrase "consent to" rather than\n "withhold" or "withdraw" consent for. <p> specific to use-case 2. Withhold or withdraw consent\n for disclosure of a specific record (e.g. Lab Order/Result) </p><p> Patient "P. van de\n Heuvel" Primary Care Provider, Dr. Philip Primary, has ordered a set of lab test which Adam\n wishes to keep as private as possible. At the sample collection facility, he indicates that\n he would like withhold consent to disclose the order and all results associated with that\n specific order from all other providers </p>\n </div>"
] ; #
fhir:issued [ fhir:v "2015-11-18"^^xsd:date] ; #
fhir:subject ( [
fhir:reference [ fhir:v "Patient/f001" ] ;
fhir:display [ fhir:v "P. van de Heuvel" ]
] ) ; # not bound by a timeframe - Contract.applies
fhir:authority ( [
fhir:reference [ fhir:v "Organization/3" ] ;
fhir:display [ fhir:v "Michigan Health" ]
] ) ; #
fhir:domain ( [
fhir:reference [ fhir:v "Location/ukp" ] ;
fhir:display [ fhir:v "UK Pharmacies" ]
] ) ; # and/or would this [also] go into Contract.domain as a Jurisdiction?? (see the example on UK Pharamacy Juristiction)
fhir:type [
fhir:coding ( [
a loinc:57016-8 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "57016-8" ]
] )
] ; #
fhir:subType ( [
fhir:coding ( [
fhir:system [ fhir:v "http://www.infoway-inforoute.ca.org/Consent-subtype-codes"^^xsd:anyURI ] ;
fhir:code [ fhir:v "Opt-In" ] ;
fhir:display [ fhir:v "Default Authorization with exceptions." ]
] )
] ) ; # made up code-system to represent the set of privacy consent sub-types known and published by Canada Infoway
fhir:term ( [
fhir:identifier [
fhir:system [ fhir:v "http://example.org/fhir/term-items"^^xsd:anyURI ] ;
fhir:value [ fhir:v "3347689" ]
] ;
fhir:issued [ fhir:v "2015-11-01"^^xsd:date ] ;
fhir:applies [
fhir:start [ fhir:v "2015-11-18"^^xsd:date ]
] ;
fhir:type [
fhir:coding ( [
fhir:system [ fhir:v "http://example.org/fhir/consent-term-type-codes"^^xsd:anyURI ] ; # made up code system
fhir:code [ fhir:v "withhold-identified-object-and-related" ] ;
fhir:display [ fhir:v "Withhold the identified object and any other resources that are related to this object." ]
] )
] ;
fhir:offer [
fhir:topic [
fhir:reference [ fhir:v "ServiceRequest/lipid" ]
] ;
fhir:text [ fhir:v "Withhold this order and any results or related objects from any provider." ] # by not specifying term.actor I assume this means everyone?
]
] ) ; # I can easily say to exclude a type of FHIR Resource, but lab-orders is not a direct Resource type. Might we put in FHIR based query parameters?
fhir:friendly ( [
fhir:content [
a fhir:Attachment ;
fhir:title [ fhir:v "The terms of the consent in friendly consumer speak." ]
] # likely use url pointer to common text
] ) ; # the terms of the consent in friendly consumer speak
fhir:legal ( [
fhir:content [
a fhir:Attachment ;
fhir:title [ fhir:v "The terms of the consent in lawyer speak." ]
] # likely use url pointer to common text , I think some think that this should be the pointer to the law by which this consent is derived under. Such as http:\/\/lois-laws.justice.gc.ca\/eng\/acts\/P-21\/index.html
] )] . # the legal terms of the consent in lawyer speak
# -------------------------------------------------------------------------------------
Usage
note:
every
effort
has
been
made
to
ensure
that
the
examples
are
correct
and
useful,
but
they
are
not
a
normative
part
of
the
specification.