Guide d'implémentation FHIR - Mesures de santé 3.1.0-ballot - working
Publication Build: This will be filled in by the publication tooling
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:id [ fhir:v "ExamplefrPatient001"] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Pierre Jean Durand (Official)</b> male, DoB: 1974-12-25 ( <code>urn:oid:1.2.250.1.213.1.4.8</code>/123456789012244 (use: official))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td>true</td><td style=\"background-color: #f3f5da\" title=\"Known status of Patient\">Deceased:</td><td colspan=\"3\">false</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li>ph: 01 23 24 67 89(HOME)</li><li>ph: 01 99 88 77 66(WORK)</li><li>ph: 06 80 55 34 33(MOBILE)</li><li>367 rue Troussier, 45100 Orléans, France(home)</li></ul></td></tr></table></div>" ] ; # fhir:identifier ( [ fhir:use [ fhir:v "official" ] ; fhir:system [ fhir:v "urn:oid:1.2.250.1.213.1.4.8"^^xsd:anyURI ] ; fhir:value [ fhir:v "123456789012244" ] ] ) ; # fhir:active [ fhir:v "true"^^xsd:boolean] ; # fhir:name ( [ fhir:use [ fhir:v "official" ] ; fhir:family [ fhir:v "Durand" ] ; ( fhir:given [ fhir:v "Pierre" ] [ fhir:v "Jean" ] ) ] ) ; # fhir:telecom ( [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "01 23 24 67 89" ] ; fhir:use [ fhir:v "home" ] ] [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "01 99 88 77 66" ] ; fhir:use [ fhir:v "work" ] ; fhir:rank [ fhir:v "1"^^xsd:positiveInteger ] ] [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "06 80 55 34 33" ] ; fhir:use [ fhir:v "mobile" ] ; fhir:rank [ fhir:v "2"^^xsd:positiveInteger ] ] ) ; # fhir:gender [ fhir:v "male"] ; # fhir:birthDate [ fhir:v "1974-12-25"^^xsd:date] ; # fhir:deceased [ fhir:v "false"^^xsd:boolean] ; # fhir:address ( [ fhir:use [ fhir:v "home" ] ; fhir:type [ fhir:v "both" ] ; fhir:text [ fhir:v "367 rue Troussier, 45100 Orléans, France" ] ; ( fhir:line [ fhir:v "367 rue Troussier" ] ) ; fhir:city [ fhir:v "Orléans" ] ; fhir:postalCode [ fhir:v "45100" ] ; fhir:period [ fhir:start [ fhir:v "2018-06-01"^^xsd:date ] ] ] ) . #