FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example Flag/clinical-trial-enrollment (Turtle)

Patient Care Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Device, Patient, Practitioner

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

Clinical Trial Enrollment

@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:Flag ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "clinical-trial-enrollment"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Patients in Group 102 are enrolled in the XYZ123 Clinical Trial.</div>"
  ] ; # 
  fhir:identifier ( [
     fhir:value [ fhir:v "clinical-trial-2024-group-a" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/flag-category"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "research" ] ;
       fhir:display [ fhir:v "Research" ]
     ] ) ;
     fhir:text [ fhir:v "Research" ]
  ] ) ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [ fhir:v "http://example.org/local"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "clinical-trial" ] ;
       fhir:display [ fhir:v "Clinical Trial Enrollment" ]
     ] ) ;
     fhir:text [ fhir:v "Patients are enrolled in the XYZ123 Clinical Trial." ]
  ] ; # 
  fhir:subject [
     fhir:reference [ fhir:v "Group/102" ] ;
     fhir:display [ fhir:v "Group 102" ]
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2024-01-01"^^xsd:date ]
  ] ; # 
  fhir:author [
     fhir:display [ fhir:v "ABC Research Institute" ]
  ]] . # 

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


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.