Release 4B

This page is part of the FHIR Specification (v4.3.0: R4B - STU). 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

Codesystem-example-supplement.ttl

Vocabulary Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Not linked to any defined compartments

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

Example Code System Supplement

@prefix fhir: <http://hl7.org/fhir/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

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

[] a fhir:CodeSystem;
  fhir:Resource.id [ fhir:value "example-supplement"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ]
  ];
  fhir:CodeSystem.url [ fhir:value "http://hl7.org/fhir/CodeSystem/example-supplement"];
  fhir:CodeSystem.version [ fhir:value "201801103"];
  fhir:CodeSystem.name [ fhir:value "CholCodeLegacyStatus"];
  fhir:CodeSystem.status [ fhir:value "draft"];
  fhir:CodeSystem.experimental [ fhir:value "true"];
  fhir:CodeSystem.date [ fhir:value "2016-01-28"];
  fhir:CodeSystem.publisher [ fhir:value "ACME Co"];
  fhir:CodeSystem.contact [
     fhir:index 0;
     fhir:ContactDetail.name [ fhir:value "FHIR project team" ];
     fhir:ContactDetail.telecom [
       fhir:index 0;
       fhir:ContactPoint.system [ fhir:value "url" ];
       fhir:ContactPoint.value [ fhir:value "http://hl7.org/fhir" ]
     ]
  ];
  fhir:CodeSystem.content [ fhir:value "supplement"];
  fhir:CodeSystem.supplements [ fhir:value "http://hl7.org/fhir/CodeSystem/example"];
  fhir:CodeSystem.property [
     fhir:index 0;
     fhir:CodeSystem.code [ fhir:value "legacy" ];
     fhir:CodeSystem.description [ fhir:value "hether the test is currently performed" ];
     fhir:CodeSystem.type [ fhir:value "boolean" ]
  ];
  fhir:CodeSystem.concept [
     fhir:index 0;
     fhir:CodeSystem.code [ fhir:value "chol-mmol" ];
     fhir:CodeSystem.property [
       fhir:index 0;
       fhir:CodeSystem.code [ fhir:value "legacy" ];
       fhir:CodeSystem.value [ fhir:value "false" ]
     ]
  ], [
     fhir:index 1;
     fhir:CodeSystem.code [ fhir:value "chol-mass" ];
     fhir:CodeSystem.property [
       fhir:index 0;
       fhir:CodeSystem.code [ fhir:value "legacy" ];
       fhir:CodeSystem.value [ fhir:value "true" ]
     ]
  ], [
     fhir:index 2;
     fhir:CodeSystem.code [ fhir:value "chol" ];
     fhir:CodeSystem.property [
       fhir:index 0;
       fhir:CodeSystem.code [ fhir:value "legacy" ];
       fhir:CodeSystem.value [ fhir:value "true" ]
     ]
  ] .

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


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.