WellData Implementation Guide
0.1.0 - ci-build

WellData Implementation Guide - Local Development build (v0.1.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

: Voorbeeld WellData-patiënt - 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:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-welldata-patient"] ; # 
  fhir:meta [
fhir:versionId [ fhir:v "1" ] ;
fhir:lastUpdated [ fhir:v "2025-06-10T08:30:00+02:00"^^xsd:dateTime ] ;
    ( fhir:profile [
fhir:v "https://gidsopenstandaarden.github.io/welldata-implementation-guide/StructureDefinition/WellDataPatient"^^xsd:anyURI ;
fhir:link <https://gidsopenstandaarden.github.io/welldata-implementation-guide/StructureDefinition/WellDataPatient>     ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>John Doe — voorbeeld patiënt voor WellData</p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
fhir:system [ fhir:v "https://well-data.example.org/fhir/Patient"^^xsd:anyURI ] ;
fhir:value [ fhir:v "example-patient" ]
  ] [
fhir:system [ fhir:v "https://www.ehealth.fgov.be/standards/fhir/core/NamingSystem/ssin"^^xsd:anyURI ] ;
fhir:value [ fhir:v "83051812345" ]
  ] [
fhir:system [ fhir:v "http://fhir.nl/fhir/NamingSystem/bsn"^^xsd:anyURI ] ;
fhir:value [ fhir:v "999991234" ]
  ] ) ; # 
  fhir:name ( [
fhir:use [ fhir:v "official" ] ;
fhir:family [ fhir:v "Doe" ] ;
    ( fhir:given [ fhir:v "John" ] )
  ] ) ; # 
  fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+32-3-555-0101" ] ;
fhir:use [ fhir:v "mobile" ]
  ] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "john.doe@example.com" ] ;
fhir:use [ fhir:v "home" ]
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1983-05-18"^^xsd:date] ; # 
  fhir:address ( [
fhir:use [ fhir:v "home" ] ;
    ( fhir:line [ fhir:v "Example Street 1" ] ) ;
fhir:city [ fhir:v "Antwerpen" ] ;
fhir:postalCode [ fhir:v "2000" ] ;
fhir:country [ fhir:v "BE" ]
  ] ) ; # 
  fhir:communication ( [
fhir:language [
      ( fhir:coding [
fhir:system [ fhir:v "urn:ietf:bcp:47"^^xsd:anyURI ] ;
fhir:code [ fhir:v "nl-BE" ]       ] )     ]
  ] ) ; # 
  fhir:generalPractitioner ( [
fhir:reference [ fhir:v "Practitioner/prac-1" ]
  ] ) . #