HL7 FHIR Implementation Guide: Profiles for Transfusion and Vaccination Adverse Event Detection and Reporting, published by Biomedical Research & Regulation WG. This is not an authorized publication; it is the continuous build for version 1.0.1). This version is based on the current content of https://github.com/HL7/fhir-icsr-ae-reporting/ and changes regularly. See the Directory of published versions
: Sample ICSR Report Patient - TTL Representation
Raw ttl | Download
@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:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "SampleICSRPatient"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://hl7.org/fhir/us/icsr-ae-reporting/StructureDefinition/icsr-patient"^^xsd:anyURI ;
fhir:link <http://hl7.org/fhir/us/icsr-ae-reporting/StructureDefinition/icsr-patient> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Irma Black </b> female, DoB: 1998-08-31 ( id: 123456789)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Details:</td><td colspan=\"3\"><ul><li><a href=\"tel:+1-234-653-6558\">+ 1-234-653-6558</a></li><li>50878 Coleman Ferry Montague MA US </li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Information on the military status of the ICSR Patient\"><a href=\"StructureDefinition-icsr-ext-militarystatus.html\">null:</a></td><td colspan=\"3\"><ul><li><span title=\"Codes: {http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl C114854}\">C114854</span></li></ul></td></tr></table></div>"
] ; #
fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/us/icsr-ae-reporting/StructureDefinition/icsr-ext-militarystatus"^^xsd:anyURI ] ;
fhir:value [
a fhir:CodeableConcept ;
( fhir:coding [
fhir:system [ fhir:v "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl"^^xsd:anyURI ] ;
fhir:code [ fhir:v "C114854" ] ] ) ]
] ) ; #
fhir:identifier ( [
fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-ssn"^^xsd:anyURI ] ;
fhir:value [ fhir:v "123456789" ]
] ) ; #
fhir:name ( [
fhir:family [ fhir:v "Black" ] ;
( fhir:given [ fhir:v "Irma" ] )
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+ 1-234-653-6558" ]
] ) ; #
fhir:gender [ fhir:v "female"] ; #
fhir:birthDate [ fhir:v "1998-08-31"^^xsd:date] ; #
fhir:address ( [
( fhir:line [ fhir:v "50878 Coleman Ferry" ] ) ;
fhir:city [ fhir:v "Montague" ] ;
fhir:state [ fhir:v "MA" ] ;
fhir:country [ fhir:v "US" ]
] ) . #