@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 -------------------------------------------------------------------

<http://canshare.co.nz/fhir/Observation/bsa> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "bsa"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://canshare.co.nz/fhir/StructureDefinition/an-bsa"^^xsd:anyURI ;
       fhir:link <http://canshare.co.nz/fhir/StructureDefinition/an-bsa>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">BSA</div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://canshare.co.nz/identifiers"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "bsa" ]
  ] ) ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [ fhir:v "http://snomed.info/sct/21000210109"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "301898006" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:link <http://canshare.co.nz/fhir/Patient/exPatient> ;
     fhir:reference [ fhir:v "Patient/exPatient" ]
  ] ; # 
  fhir:effective [
     a fhir:dateTime ;
     fhir:v "2020-01-01"^^xsd:date
  ] ; # 
  fhir:performer ( [
     fhir:link <http://canshare.co.nz/fhir/Practitioner/exPractitioner> ;
     fhir:reference [ fhir:v "Practitioner/exPractitioner" ]
  ] ) ; # 
  fhir:value [
     a fhir:Quantity ;
     fhir:value [ fhir:v 1.4 ]
  ] . # 

# -------------------------------------------------------------------------------------

