Retrieval of Real World Data for Clinical Research
1.0.0-ballot - ballot International flag

This page is part of the Retrieval of Real World Data for Clinical Research (v1.0.0-ballot: STU1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions

: RWDPatient - 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:Resource.id [ fhir:value "RWDPatient"]; # 
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/uv/ips/StructureDefinition/Patient-uv-ips";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/uv/ips/StructureDefinition/Patient-uv-ips>     ]
  ]; # 
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Sample Patient </b> male, DoB: 1970-11-27</p><hr/></div>"
  ]; # 
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.family [ fhir:value "Patient" ];
     fhir:HumanName.given [
       fhir:value "Sample";
       fhir:index 0     ]
  ]; # 
  fhir:Patient.gender [ fhir:value "male"]; # 
  fhir:Patient.birthDate [ fhir:value "1970-11-27"^^xsd:date]. # 

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

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