Example RiskAssessment/breastcancer-risk (Turtle)
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
[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:Reference.reference [ fhir:value "Patient/example" ]
]; #
fhir:RiskAssessment.performer [
fhir:Reference.reference [ fhir:value "Practitioner/example" ]
]; #
fhir:RiskAssessment.basis [
fhir:index 0;
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" ]
]
]; #
fhir:RiskAssessment.note [
fhir:index 0;
fhir:Annotation.text [ fhir:value "This risk assessment is based on BRCA1 and BRCA2 genetic mutation test" ]
]] . #
# - ontology header ------------------------------------------------------------
[a owl:Ontology;
owl:imports fhir:fhir.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.