Release 4 FHIR CI-Build

This page is part of the Continuous Integration Build of FHIR Specification (v4.0.1: R4 - Mixed Normative and STU ) in it's permanent home (it will always (will be available incorrect/inconsistent at this URL). The current version which supercedes this version is 5.0.0 . For a full list of available versions, see times).
See the Directory of published versions . Page versions: R5 R4B R4 R3

Flag-example.ttl

Example Flag/example (Turtle)

Maturity Level : N/A
Responsible Owner: Patient Care Work Group Standards Status : Informative Compartments : Device , Group , Patient , Practitioner

Raw Turtle (+ also see Turtle/RDF Format Specification )

Example of flag

@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://hl7.org/fhir/Flag/example> a fhir:Flag;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Large Dog warning for Peter Patient</div>"
  ];
  fhir:Flag.identifier [
     fhir:index 0;
     fhir:Identifier.value [ fhir:value "12345" ]
  ];
  fhir:Flag.status [ fhir:value "inactive"];
  fhir:Flag.category [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/flag-category" ];
       fhir:Coding.code [ fhir:value "safety" ];
       fhir:Coding.display [ fhir:value "Safety" ]
     ];
     fhir:CodeableConcept.text [ fhir:value "Safety" ]
  ];
  fhir:Flag.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://example.org/local" ];
       fhir:Coding.code [ fhir:value "bigdog" ];
       fhir:Coding.display [ fhir:value "Big dog" ]
     ];
     fhir:CodeableConcept.text [ fhir:value "Patient has a big dog at his home. Always always wear a suit of armor or take other active counter-measures" ]
  ];
  fhir:Flag.subject [
     fhir:link <http://hl7.org/fhir/Patient/example>;
     fhir:Reference.reference [ fhir:value "Patient/example" ];
     fhir:Reference.display [ fhir:value "Peter Patient" ]
  ];
  fhir:Flag.period [
     fhir:Period.start [ fhir:value "2015-01-17"^^xsd:date ];
     fhir:Period.end [ fhir:value "2016-12-01"^^xsd:date ]
  ];
  fhir:Flag.author [
     fhir:link <http://hl7.org/fhir/Practitioner/example>;
     fhir:Reference.reference [ fhir:value "Practitioner/example" ];
     fhir:Reference.display [ fhir:value "Nancy Nurse" ]
  ] .

<http://hl7.org/fhir/Flag/example> a fhir:Flag ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">Large Dog warning for Peter Patient</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:value [ fhir:v "12345" ]
  ] ) ; # 
  fhir:status [ fhir:v "inactive"] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/flag-category"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/flag-category>
       ] ;
       fhir:code [ fhir:v "safety" ] ;
       fhir:display [ fhir:v "Safety" ]
     ] ) ;
     fhir:text [ fhir:v "Safety" ]
  ] ) ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://example.org/local"^^xsd:anyURI ;
         fhir:l <http://example.org/local>
       ] ;
       fhir:code [ fhir:v "bigdog" ] ;
       fhir:display [ fhir:v "Big dog" ]
     ] ) ;
     fhir:text [ fhir:v "Patient has a big dog at his home. Always always wear a suit of armor or take other active counter-measures" ]
  ] ; # 
  fhir:subject [
     fhir:l <http://hl7.org/fhir/Patient/example> ;
     fhir:reference [ fhir:v "Patient/example" ] ;
     fhir:display [ fhir:v "Peter Patient" ]
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2015-01-17"^^xsd:date ] ;
     fhir:end [ fhir:v "2016-12-01"^^xsd:date ]
  ] ; # 
  fhir:author [
     fhir:l <http://hl7.org/fhir/Practitioner/example> ;
     fhir:reference [ fhir:v "Practitioner/example" ] ;
     fhir:display [ fhir:v "Nancy Nurse" ]
  ] . # 


<http://hl7.org/fhir/Patient/example> a fhir:Patient .

<http://hl7.org/fhir/Practitioner/example> a fhir:Practitioner .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Flag/example.ttl> a owl:Ontology;
  owl:imports fhir:fhir.ttl;
  owl:versionIRI <http://build.fhir.org/Flag/example.ttl> .


# -------------------------------------------------------------------------------------


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.