This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example Specimen/vma-urine (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
VMA, Random Urine Sample
@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:Specimen ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "vma-urine"] ; #
fhir:accessionIdentifier [
fhir:system [ fhir:v "http://lab.acme.org/specimens/2015"^^xsd:anyURI ] ; # accession identifier - e.g. assigned by the labaratory when it is received.\n This is common, unlike specimen identifier
fhir:value [ fhir:v "X352356" ]
] ; #
fhir:status [ fhir:v "available"] ; #
fhir:type [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0487"^^xsd:anyURI ] ;
fhir:code [ fhir:v "RANDU" ] ;
fhir:display [ fhir:v "Urine, Random" ]
] ) # \n Type is a loosely defined field because there is such a lot of variation in how it is used.\n The principal variation is how much information that could be represented elsewhere is also\n represented here. For instance, here's some possible types:\n lithium heparin plasma (+ .container.additive) (e.g. SNOMED CT 446272009)\n transfusion bag of blood (+ container.type)\n Peritoneal lavage (+ collection.bodySite)\n If the type includes other fields, it would be normal not to populate the other fields\n\n Note that this practice is so widespread that it's pointless to try and stop it\n
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/example" ]
] ; #
fhir:receivedTime [ fhir:v "2015-08-18T07:03:00Z"^^xsd:dateTime] ; #
fhir:collection [
fhir:collector [
fhir:reference [ fhir:v "Practitioner/f202" ] # in practice, collecter is almost always recorded
] ;
fhir:collected [ fhir:v "2015-08-18T07:03:00Z"^^xsd:dateTime ] # the time of collection is usually required. Usually a point in time, but can be a period \n (collectedPeriod) if it's a timed collection (e.g. a 24 hour urine)
] ; # method is usually implied by type
fhir:processing ( [
fhir:description [ fhir:v "Acidify to pH < 3.0 with 6 N HCl." ] ;
fhir:method [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0373"^^xsd:anyURI ] ;
fhir:code [ fhir:v "ACID" ]
] )
] ;
fhir:additive ( [
fhir:display [ fhir:v "6 N HCl" ]
] ) ;
fhir:time [ fhir:v "2015-08-18T08:10:00Z"^^xsd:dateTime ]
] ) ; #
fhir:container ( [
fhir:device [
fhir:reference [ fhir:v "Device/device-example-specimen-container-polycup" ]
] ;
fhir:specimenQuantity [
fhir:value [ fhir:v "10"^^xsd:decimal ] ;
fhir:unit [ fhir:v "mls" ]
]
] )] . #
# -------------------------------------------------------------------------------------
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.