Clinical
Summary
This
page
is
part
of
the
Continuous
Integration
Build
of
FHIR
Specification
(v4.0.1:
R4
-
Mixed
Normative
and
STU
)
in
it's
permanent
home
(it
will
always
(will
be
available
incorrect/inconsistent
at
this
URL).
The
current
version
which
supercedes
this
version
is
5.0.0
.
For
a
full
list
of
available
versions,
see
times).
See
the
Directory
of
published
versions
.
Page
versions:
R5
R4B
R4
| Responsible Owner: Clinical Decision Support Work Group | Standards Status : Informative | Compartments : Device , Group , Patient , Practitioner |
Raw Turtle (+ also see Turtle/RDF Format Specification )
Breast cancer risk assessment
@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/RiskAssessment/breastcancer-risk> a fhir:RiskAssessment; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "breastcancer-risk"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "additional" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <table>\n <tr>\n <td colspan=\"2\">\n <h1>Information about your risk score:</h1>\n </td>\n </tr>\n <tr>\n <td>\n <strong>Birthdate:</strong>\n </td>\n <td>1981-01-01</td>\n </tr>\n <tr>\n <td>\n <strong>Gender:</strong>\n </td>\n <td>female</td>\n </tr>\n <tr>\n <td>\n <strong>Ethnicity:</strong>\n </td>\n <td>Unknown / Not Reported</td>\n </tr>\n </table>\n </div>" ]; fhir:RiskAssessment.identifier [ fhir:index 0; fhir:Identifier.use [ fhir:value "official" ]; fhir:Identifier.system [ fhir:value "http://example.org" ]; fhir:Identifier.value [ fhir:value "risk-assessment-breastcancer1" ] ]; fhir:RiskAssessment.status [ fhir:value "final"]; fhir:RiskAssessment.code [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://browser.ihtsdotools.org/" ]; fhir:Coding.code [ fhir:value "709510001" ]; fhir:Coding.display [ fhir:value "Assessment of risk for disease (procedure)" ] ] ]; fhir:RiskAssessment.subject [ fhir:link <http://hl7.org/fhir/Patient/example>; fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:RiskAssessment.performer [ fhir:link <http://hl7.org/fhir/Practitioner/example>; fhir:Reference.reference [ fhir:value "Practitioner/example" ] ]; fhir:RiskAssessment.basis [ fhir:index 0; fhir:link <http://hl7.org/fhir/Observation/example-genetics-brcapat>; fhir:Reference.reference [ fhir:value "Observation/example-genetics-brcapat" ] ]; fhir:RiskAssessment.prediction [ fhir:index 0; fhir:RiskAssessment.prediction.outcome [ fhir:CodeableConcept.text [ fhir:value "Unknown risk of developing breast cancer" ]<http://hl7.org/fhir/RiskAssessment/breastcancer-risk> a fhir:RiskAssessment ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "breastcancer-risk"] ; # fhir:text [ fhir:status [ fhir:v "additional" ] ; fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <table>\n <tr>\n <td colspan=\"2\">\n <h1>Information about your risk score:</h1>\n </td>\n </tr>\n <tr>\n <td>\n <strong>Birthdate:</strong>\n </td>\n <td>1981-01-01</td>\n </tr>\n <tr>\n <td>\n <strong>Gender:</strong>\n </td>\n <td>female</td>\n </tr>\n <tr>\n <td>\n <strong>Ethnicity:</strong>\n </td>\n <td>Unknown / Not Reported</td>\n </tr>\n </table>\n </div>"^^rdf:XMLLiteral ] ] ; # fhir:identifier ( [ fhir:use [ fhir:v "official" ] ; fhir:system [ fhir:v "http://example.org"^^xsd:anyURI ; fhir:l <http://example.org> ] ; fhir:value [ fhir:v "risk-assessment-breastcancer1" ] ] ) ; # fhir:status [ fhir:v "final"] ; # fhir:code [ fhir:coding ( [ fhir:system [ fhir:v "http://browser.ihtsdotools.org/"^^xsd:anyURI ; fhir:l <http://browser.ihtsdotools.org/> ] ; fhir:code [ fhir:v "709510001" ] ; fhir:display [ fhir:v "Assessment of risk for disease (procedure)" ] ] ) ] ; # fhir:subject [ fhir:l <http://hl7.org/fhir/Patient/example> ; fhir:reference [ fhir:v "Patient/example" ] ] ; # fhir:performer [ fhir:l <http://hl7.org/fhir/Practitioner/example> ; fhir:reference [ fhir:v "Practitioner/example" ] ] ; # fhir:basis ( [ fhir:l <http://hl7.org/fhir/Observation/example-genetics-brcapat> ; fhir:reference [ fhir:v "Observation/example-genetics-brcapat" ] ] ) ; # fhir:prediction ( [ fhir:outcome [ fhir:text [ fhir:v "Unknown risk of developing breast cancer" ] ]]; fhir:RiskAssessment.note [ fhir:index 0; fhir:Annotation.text [ fhir:value "This risk assessment is based on BRCA1 and BRCA2 genetic mutation test" ] ] .] ) ; # fhir:note ( [ fhir:text [ fhir:v "This risk assessment is based on BRCA1 and BRCA2 genetic mutation test" ] ] ) . # <http://hl7.org/fhir/Patient/example> a fhir:Patient . <http://hl7.org/fhir/Practitioner/example> a fhir:Practitioner . <http://hl7.org/fhir/Observation/example-genetics-brcapat> a fhir:Observation .# - ontology header ------------------------------------------------------------ <http://hl7.org/fhir/RiskAssessment/breastcancer-risk.ttl> a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI <http://build.fhir.org/RiskAssessment/breastcancer-risk.ttl> .# -------------------------------------------------------------------------------------
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.
FHIR
®©
HL7.org
2011+.
FHIR
Release
4
(Technical
Correction
#1)
(v4.0.1)
R6
hl7.fhir.core#6.0.0-ballot3
generated
on
Fri,
Sat,
Nov
1,
2019
09:36+1100.
QA
Page
8,
2025
03:19+0000.
Links:
Search
|
Version
History
|
Table
of
Contents
|
Credits
Glossary
|
QA
|
Compare
to
R3
R4
|
Compare
to
R5
|
Compare
to
Last
Ballot
|
|
Propose
a
change