HL7 FHIR Implementation Guide: Profiles for ICSR Transfusion and Vaccination Adverse Event Detection and Reporting
0.1.0 - STU 1 Ballot

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

: Sender Organization for VAERS/FAERS - 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:Organization;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "SenderOrganization"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/icsr-ae-reporting/StructureDefinition/ibm-fda-icsr-messageorganization";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/icsr-ae-reporting/StructureDefinition/ibm-fda-icsr-messageorganization>     ]
  ];
  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>DepartmentName</b>: sender department</p><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes: {urn:oid:2.16.840.1.113883.3.989.2.1.1.7 1}\">Pharmaceutical Company</span></p><p><b>name</b>: sender organization</p><p><b>telecom</b>: <a href=\"tel:+0112345678\">+01 123 456 78</a>, fax: +01 123 456 89, <a href=\"mailto:email@city.us\">email@city.us</a></p><p><b>address</b>: street city state postcode US </p><h3>Contacts</h3><table class=\"grid\"><tr><td>-</td><td><b>Name</b></td></tr><tr><td>*</td><td>sender gname sender fname </td></tr></table></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-departmentname" ];
     fhir:Extension.valueString [ fhir:value "sender department" ]
  ];
  fhir:Organization.active [ fhir:value "true"^^xsd:boolean];
  fhir:Organization.type [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "urn:oid:2.16.840.1.113883.3.989.2.1.1.7" ];
       fhir:Coding.code [ fhir:value "1" ];
       fhir:Coding.display [ fhir:value "Pharmaceutical Company" ]     ]
  ];
  fhir:Organization.name [ fhir:value "sender organization"];
  fhir:Organization.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "+01 123 456 78" ]
  ], [
     fhir:index 1;
     fhir:ContactPoint.system [ fhir:value "fax" ];
     fhir:ContactPoint.value [ fhir:value "+01 123 456 89" ]
  ], [
     fhir:index 2;
     fhir:ContactPoint.system [ fhir:value "email" ];
     fhir:ContactPoint.value [ fhir:value "email@city.us" ]
  ];
  fhir:Organization.address [
     fhir:index 0;
     fhir:Address.line [
       fhir:value "street";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "city" ];
     fhir:Address.state [ fhir:value "state" ];
     fhir:Address.postalCode [ fhir:value "postcode" ];
     fhir:Address.country [ fhir:value "US" ]
  ];
  fhir:Organization.contact [
     fhir:index 0;
     fhir:Organization.contact.name [
       fhir:HumanName.family [ fhir:value "sender fname" ];
       fhir:HumanName.given [
         fhir:value "sender gname";
         fhir:index 0       ];
       fhir:HumanName.prefix [
         fhir:value "sender title";
         fhir:index 0       ]     ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.