This page is part of the Profiles for ICSR Transfusion and Vaccination Adverse Event Detection and Reporting (v0.1.0: STU 1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 1.0.0. For a full list of available versions, see the Directory of published versions
@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:Resource.id [ fhir:value "SampleICSRPatient"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/icsr-ae-reporting/StructureDefinition/ibm-fda-icsr-patient";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/icsr-ae-reporting/StructureDefinition/ibm-fda-icsr-patient> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "extensions" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>MilitaryStatus</b>: <span title=\"Codes: {http://ncimeta.nci.nih.gov C114854}\">C114854</span></p><p><b>identifier</b>: id: 123456789</p><p><b>name</b>: Irma Black </p><p><b>telecom</b>: <a href=\"tel:+1-234-653-6558\">+ 1-234-653-6558</a></p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1998-08-31</p><p><b>address</b>: 50878 Coleman Ferry Montague MA US </p></div>"
];
fhir:DomainResource.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/icsr-ae-reporting/StructureDefinition/ibm-fda-icsr-ext-militarystatus" ];
fhir:Extension.valueCodeableConcept [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://ncimeta.nci.nih.gov" ];
fhir:Coding.code [ fhir:value "C114854" ] ] ]
];
fhir:Patient.identifier [
fhir:index 0;
fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-ssn" ];
fhir:Identifier.value [ fhir:value "123456789" ]
];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.family [ fhir:value "Black" ];
fhir:HumanName.given [
fhir:value "Irma";
fhir:index 0 ]
];
fhir:Patient.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "phone" ];
fhir:ContactPoint.value [ fhir:value "+ 1-234-653-6558" ]
];
fhir:Patient.gender [ fhir:value "female"];
fhir:Patient.birthDate [ fhir:value "1998-08-31"^^xsd:date];
fhir:Patient.address [
fhir:index 0;
fhir:Address.line [
fhir:value "50878 Coleman Ferry";
fhir:index 0 ];
fhir:Address.city [ fhir:value "Montague" ];
fhir:Address.state [ fhir:value "MA" ];
fhir:Address.country [ fhir:value "US" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.