PH Core Implementation Guide
0.1.0 - ci-build Philippines flag

PH Core Implementation Guide, published by UP Manila SILab. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/UP-Manila-SILab/ph-core/ and changes regularly. See the Directory of published versions

: relatedperson-single-ex - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:RelatedPerson ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "relatedperson-single-ex"] ; # 
  fhir:meta [
    ( fhir:profile [ fhir:v "urn://example.com/ph-core/fhir/StructureDefinition/ph-core-relatedperson"^^xsd:anyURI ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Maria Cruz Santos, born on January 1, 1955, is the mother of the patient. She resides at 123 Mabini Street, 1100, Philippines, with regional associations to Ilocos Norte and Occidental Mindoro. Her PhilSys ID is 1234-1234567-1.</div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
fhir:system [ fhir:v "urn://example.com/ph-core/fhir/NamingSystem/philsys-id-ns"^^xsd:anyURI ] ;
fhir:value [ fhir:v "1234-1234567-1" ]
  ] ) ; # 
  fhir:patient [
fhir:reference [ fhir:v "Patient/patient-single-ex" ]
  ] ; # 
  fhir:relationship ( [
    ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ] ;
fhir:code [ fhir:v "MTH" ]     ] )
  ] ) ; # 
  fhir:name ( [
fhir:family [ fhir:v "Santos" ] ;
    ( fhir:given [ fhir:v "Maria" ] [ fhir:v "Cruz" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "female"] ; # 
  fhir:birthDate [ fhir:v "1955-01-01"^^xsd:date] ; # 
  fhir:address ( [
    ( fhir:extension [
fhir:url [ fhir:v "urn://example.com/ph-core/fhir/StructureDefinition/region"^^xsd:anyURI ] ;
fhir:value [
a fhir:Coding ;
fhir:system [ fhir:v "urn://example.com/ph-core/fhir/CodeSystem/PSGC"^^xsd:anyURI ] ;
fhir:code [ fhir:v "0102800000" ] ;
fhir:display [ fhir:v "Ilocos Norte" ]       ]     ] [
fhir:url [ fhir:v "urn://example.com/ph-core/fhir/StructureDefinition/province"^^xsd:anyURI ] ;
fhir:value [
a fhir:Coding ;
fhir:system [ fhir:v "urn://example.com/ph-core/fhir/CodeSystem/PSGC"^^xsd:anyURI ] ;
fhir:code [ fhir:v "1705100000" ] ;
fhir:display [ fhir:v "Occidental Mindoro" ]       ]     ] ) ;
    ( fhir:line [ fhir:v "123 Mabini Street" ] ) ;
fhir:postalCode [ fhir:v "1100" ] ;
fhir:country [ fhir:v "PH" ]
  ] ) . #