This page is part of the FHIR Specification (v5.0.0: R5 - STU). This is the current published version. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3
Example Patient/ch-example (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Example Patient resource with Chinese content
@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 "ch-example"] ; #
fhir:meta [
fhir:versionId [ fhir:v "1" ] ;
fhir:lastUpdated [ fhir:v "2016-05-16T00:55:52Z"^^xsd:dateTime ]
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <table>\n <tbody>\n <tr>\n <td>名字</td>\n <td>张无忌</td> </tr>\n <tr>\n <td>地址</td>\n <td>上海市黄埔区马当路190号, 1974年12月25日</td> \n </tr>\n <tr>\n <td>联系方式</td>\n <td>住宅: 不详。工作: 18337177888</td> \n </tr>\n <tr>\n <td>Id</td>\n <td>MRN: 3112219680806371X (市卫生局)</td> \n </tr> \n </tbody> \n </table> \n </div>"
] ; #
fhir:identifier ( [
fhir:use [ fhir:v "usual" ] ;
fhir:type [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "MR" ]
] )
] ;
fhir:system [ fhir:v "urn:oid:1.2.36.146.595.217.0.1"^^xsd:anyURI ] ;
fhir:value [ fhir:v "3112219680806371X" ] ;
fhir:period [
fhir:start [ fhir:v "2001-05-06"^^xsd:date ]
] ;
fhir:assigner [
fhir:display [ fhir:v "市卫生局" ]
]
] ) ; #
fhir:active [ fhir:v "true"^^xsd:boolean] ; #
fhir:name ( [
fhir:use [ fhir:v "official" ] ;
fhir:text [ fhir:v "张无忌" ]
] ) ; #
fhir:telecom ( [
fhir:use [ fhir:v "home" ]
] [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "18337177888" ] ;
fhir:use [ fhir:v "work" ]
] ) ; #
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:line ( [ fhir:v "马当路190号" ] ) ;
fhir:city [ fhir:v "上海市" ] ;
fhir:district [ fhir:v "黄埔区" ] ;
fhir:postalCode [ fhir:v "200000" ] ;
fhir:period [
fhir:start [ fhir:v "1974-12-25"^^xsd:date ]
]
] ) ; #
fhir:managingOrganization [
fhir:reference [ fhir:v "Organization/1" ] ;
fhir:display [ fhir:v "上海东方医院" ]
]] . #
# -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the
examples are correct and useful, but they are not a normative part
of the specification.