JASPEHR Implementation Guide
0.5.5 - draft

JASPEHR Implementation Guide - Local Development build (v0.5.5). See the Directory of published versions

: JASPEHR Expression Language - TTL Representation

Draft as of 2021-12-22

Raw ttl | Download


@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:ValueSet;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "expression-language-Jaspehr"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/StructureDefinition/shareablevalueset";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/StructureDefinition/shareablevalueset>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>This value set includes codes based on the following rules:</p><ul><li>Include all codes defined in <a href=\"http://hl7.org/fhir/R4/codesystem-expression-language.html\"><code>http://hl7.org/fhir/expression-language</code></a></li></ul><p>This value set excludes codes based on the following rules:</p><ul><li>Exclude these codes as defined in <a href=\"http://hl7.org/fhir/R4/codesystem-expression-language.html\"><code>http://hl7.org/fhir/expression-language</code></a><table class=\"none\"><tr><td style=\"white-space:nowrap\"><b>Code</b></td><td><b>Display</b></td></tr><tr><td><a href=\"http://hl7.org/fhir/R4/codesystem-expression-language.html#expression-language-text.47cql\">text/cql</a></td><td>CQL</td></tr></table></li></ul></div>"
  ];
  fhir:ValueSet.url [ fhir:value "http://www.hosp.ncgm.go.jp/JASPEHR/fhir/ValueSet/expression-language-Jaspehr"];
  fhir:ValueSet.version [ fhir:value "0.5.5"];
  fhir:ValueSet.name [ fhir:value "ExpressionLanguageJaspehr"];
  fhir:ValueSet.title [ fhir:value "JASPEHR Expression Language"];
  fhir:ValueSet.status [ fhir:value "draft"];
  fhir:ValueSet.experimental [ fhir:value "false"^^xsd:boolean];
  fhir:ValueSet.date [ fhir:value "2021-12-22T17:02:00+09:00"^^xsd:dateTime];
  fhir:ValueSet.publisher [ fhir:value "JASPEHR Project"];
  fhir:ValueSet.description [ fhir:value "The media type of the expression language."];
  fhir:ValueSet.immutable [ fhir:value "true"^^xsd:boolean];
  fhir:ValueSet.compose [
     fhir:ValueSet.compose.include [
       fhir:index 0;
       fhir:ValueSet.compose.include.system [ fhir:value "http://hl7.org/fhir/expression-language" ]     ];
     fhir:ValueSet.compose.exclude [
       fhir:index 0;
       fhir:ValueSet.compose.include.system [ fhir:value "http://hl7.org/fhir/expression-language" ];
       fhir:ValueSet.compose.include.concept [
         fhir:index 0;
         fhir:ValueSet.compose.include.concept.code [ fhir:value "text/cql" ];
         fhir:ValueSet.compose.include.concept.display [ fhir:value "CQL" ]       ]     ]
  ].

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

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.