STU 3 Candidate

This page is part of the FHIR Specification (v1.4.0: STU 3 Ballot 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3

Valueset-example.ttl

Raw Turtle, JSON-LD

ValueSet Example using enumeration of codes (extensional)

@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 xs: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir//ValueSet/example-extensional> a fhir:ValueSet;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example-extensional"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/StructureDefinition/valueset-shareable-definition";
       fhir:index 0     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ]
  ];
  fhir:ValueSet.url [ fhir:value "http://hl7.org/fhir/ValueSet/example-extensional"];
  fhir:ValueSet.identifier [
     fhir:Identifier.system [ fhir:value "http://acme.com/identifiers/valuesets" ];
     fhir:Identifier.value [ fhir:value "loinc-cholesterol-int" ]
  ];
  fhir:ValueSet.version [ fhir:value "20150622"];
  fhir:ValueSet.name [ fhir:value "LOINC Codes for Cholesterol in Serum/Plasma"];
  fhir:ValueSet.status [ fhir:value "draft"];
  fhir:ValueSet.experimental [ fhir:value "true"^^xs:boolean];
  fhir:ValueSet.publisher [ fhir:value "HL7 International"];
  fhir:ValueSet.contact [
     fhir:index 0;
     fhir:ValueSet.contact.name [ fhir:value "FHIR project team" ];
     fhir:ValueSet.contact.telecom [
       fhir:index 0;
       fhir:ContactPoint.system [ fhir:value "other" ];
       fhir:ContactPoint.value [ fhir:value "http://hl7.org/fhir" ]     ]
  ];
  fhir:ValueSet.date [ fhir:value "2015-06-22"^^xs:date];
  fhir:ValueSet.lockedDate [ fhir:value "2012-06-13"^^xs:date];
  fhir:ValueSet.description [ fhir:value "This is an example value set that includes all the LOINC codes for serum/plasma cholesterol from v2.36."];
  fhir:ValueSet.copyright [ fhir:value "This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use."];
  fhir:ValueSet.compose [
     fhir:ValueSet.compose.include [
       fhir:index 0;
       fhir:ValueSet.compose.include.system [ fhir:value "http://loinc.org" ];
       fhir:ValueSet.compose.include.version [ fhir:value "2.36" ];
       fhir:ValueSet.compose.include.concept [
         fhir:index 0;
         fhir:ValueSet.compose.include.concept.code [ fhir:value "14647-2" ];
         fhir:ValueSet.compose.include.concept.display [ fhir:value "Cholesterol [Moles/Volume]" ]       ];
       fhir:ValueSet.compose.include.concept [
         fhir:index 1;
         fhir:ValueSet.compose.include.concept.code [ fhir:value "2093-3" ];
         fhir:ValueSet.compose.include.concept.display [ fhir:value "Cholesterol [Mass/Volume]" ]       ];
       fhir:ValueSet.compose.include.concept [
         fhir:index 2;
         fhir:ValueSet.compose.include.concept.code [ fhir:value "35200-5" ];
         fhir:ValueSet.compose.include.concept.display [ fhir:value "Cholesterol [Mass Or Moles/Volume]" ]       ];
       fhir:ValueSet.compose.include.concept [
         fhir:index 3;
         fhir:ValueSet.compose.include.concept.code [ fhir:value "9342-7" ];
         fhir:ValueSet.compose.include.concept.display [ fhir:value "Cholesterol [Percentile]" ]       ]     ]
  ].

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


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.