Your User Friendly Name for MyIG Here, publié par HL7 International - [Some] Work Group. Ce guide nest pas une publication autorisée ; cest la version en intégration continue pour la version 0.2.0 construite par le CI Build FHIR (HL7® FHIR® Standard). Cette version est basée sur le contenu actuel de https://github.com/FHIR/sample-ig/ et change régulièrement. Voir le répertoire des versions publiées
: Simple patient example
Brut ttl | Télécharger
@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 -------------------------------------------------------------------
#
test comment for display
a fhir:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://somewhere.org/fhir/uv/myig/StructureDefinition/mypatient"^^xsd:anyURI ;
fhir:l <http://somewhere.org/fhir/uv/myig/StructureDefinition/mypatient> ] )
] ; #
fhir:language [ fhir:v "fr"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div [ fhir:v "<div xml:lang=\"fr\" lang=\"fr\"><hr/><p><b>French</b></p><hr/><p class=\"res-header-id\"><b>Narratif généré : Patient example</b></p><a name=\"fr-example\"> </a><a name=\"fr-hcexample\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Langue : en</p><p style=\"margin-bottom: 0px\">Profil: <a href=\"StructureDefinition-mypatient.html\">My Favorite Patient Profile</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Jack Smith (sexe non précisé), Date de Naissance :2018-09-07</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Statut Marital connu du Patient\">Statut Marital :</td><td colspan=\"3\"><span title=\"Codes :\">Married</span></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"What this extension means.\"><a href=\"StructureDefinition-ext-myExtension.html\">My awesome extension</a></td><td colspan=\"3\">false</td></tr></table></div>"^^rdf:XMLLiteral ]
] ; #
fhir:extension ( [
fhir:url [
fhir:v "http://somewhere.org/fhir/uv/myig/StructureDefinition/ext-myExtension"^^xsd:anyURI ;
fhir:l <http://somewhere.org/fhir/uv/myig/StructureDefinition/ext-myExtension> ] ;
fhir:value [
a fhir:Boolean ;
fhir:v false ]
] ) ; #
fhir:name ( [
fhir:use [ fhir:v "usual" ] ;
fhir:family [ fhir:v "Smith" ] ;
( fhir:given [ fhir:v "Jack" ] )
] [
fhir:use [ fhir:v "official" ] ;
fhir:family [ fhir:v "Smith" ] ;
( fhir:given [ fhir:v "John" ] [ fhir:v "Jacob" ] [ fhir:v "Jingleheimer" ] ) ;
fhir:period [
fhir:end [ fhir:v "2001-01-01"^^xsd:date ] ]
] [
fhir:use [ fhir:v "official" ] ;
fhir:family [ fhir:v "Smith" ] ;
( fhir:given [ fhir:v "John" ] [ fhir:v "Jacob" ] [ fhir:v "Jingleheimer" ] ) ;
fhir:period [
fhir:start [ fhir:v "2001-01-01"^^xsd:date ] ]
] ) ; #
fhir:birthDate [ fhir:v "2018-09-07"^^xsd:date] ; #
fhir:maritalStatus [
fhir:text [ fhir:v "Married" ]
] . #