GA4GH Pedigree FHIR Implementation Guide
0.1.0 - ci-build

GA4GH Pedigree FHIR Implementation Guide - Local Development build (v0.1.0). See the Directory of published versions

: Abe - 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 "Abe"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://purl.org/ga4gh/pedigree-fhir-ig/StructureDefinition/PedigreeIndividual";
       fhir:index 0;
       fhir:link <http://purl.org/ga4gh/pedigree-fhir-ig/StructureDefinition/PedigreeIndividual>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Anonymous Patient</b> female, DoB Unknown ( id: 4)</p></div>"
  ];
  fhir:DomainResource.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://purl.org/ga4gh/pedigree-fhir-ig/StructureDefinition/patient-unborn" ];
     fhir:Extension.valueBoolean [ fhir:value "false"^^xsd:boolean ]
  ];
  fhir:Patient.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "urn:fdc:sprinfieldlab.net:2021:id/patient" ];
     fhir:Identifier.value [ fhir:value "4" ]
  ];
  fhir:Patient.gender [ fhir:value "female"];
  fhir:Patient.deceasedBoolean [ fhir:value "false"^^xsd:boolean].

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

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