R4 Ballot #1 (Mixed Normative/Trial use)

This page is part of the FHIR Specification (v3.3.0: R4 Ballot 2). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions

Productplan-example.ttl

Patient Administration Work GroupMaturity Level: N/ABallot Status: InformativeCompartments: Not linked to any defined compartments

Raw Turtle,

A general product plan example

@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 -------------------------------------------------------------------

<http://hl7.org/fhir/ProductPlan/example> a fhir:ProductPlan;
  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\">\n			Health Level Seven International Staff Plan\n		</div>"
  ];
  fhir:ProductPlan.name [ fhir:value "Health Level Seven International Staff Plan"];
  fhir:ProductPlan.alias [
     fhir:value "HL7 International";
     fhir:index 0
  ];
  fhir:ProductPlan.period [
     fhir:Period.start [ fhir:value "2017-01-01"^^xsd:date ]
  ];
  fhir:ProductPlan.ownedBy [
     fhir:link <http://hl7.org/fhir/Organization/hl7>;
     fhir:Reference.reference [ fhir:value "Organization/hl7" ];
     fhir:Reference.display [ fhir:value "Health Level Seven International" ]
  ];
  fhir:ProductPlan.administeredBy [
     fhir:link <http://hl7.org/fhir/Organization/hl7>;
     fhir:Reference.reference [ fhir:value "Organization/hl7" ];
     fhir:Reference.display [ fhir:value "Health Level Seven International" ]
  ];
  fhir:ProductPlan.address [
     fhir:index 0;
     fhir:Address.line [
       fhir:value "3300 Washtenaw Avenue, Suite 227";
       fhir:index 0
     ];
     fhir:Address.city [ fhir:value "Ann Arbor" ];
     fhir:Address.state [ fhir:value "MI" ];
     fhir:Address.postalCode [ fhir:value "48104" ];
     fhir:Address.country [ fhir:value "USA" ]
  ];
  fhir:ProductPlan.coverageArea [
     fhir:link <http://hl7.org/fhir/Location/2>;
     fhir:Reference.reference [ fhir:value "Location/2" ];
     fhir:Reference.display [ fhir:value "USSS Enterprise-D" ]
  ];
  fhir:ProductPlan.coverage [
     fhir:index 0;
     fhir:ProductPlan.coverage.type [
       fhir:CodeableConcept.text [ fhir:value "Substance Abuse" ]
     ];
     fhir:ProductPlan.coverage.benefit [
       fhir:index 0;
       fhir:ProductPlan.coverage.benefit.type [
         fhir:CodeableConcept.text [ fhir:value "Primary Care" ]
       ];
       fhir:ProductPlan.coverage.benefit.item [
         fhir:index 0;
         fhir:ProductPlan.coverage.benefit.item.code [
           fhir:CodeableConcept.text [ fhir:value "day" ]
         ];
         fhir:ProductPlan.coverage.benefit.item.benefitValue [
           fhir:Quantity.value [ fhir:value "450.23"^^xsd:decimal ];
           fhir:Quantity.system [ fhir:value "urn:iso:std:iso:4217" ];
           fhir:Quantity.code [ fhir:value "USD" ]
         ]
       ]
     ]
  ];
  fhir:ProductPlan.plan [
     fhir:index 0;
     fhir:ProductPlan.plan.type [
       fhir:CodeableConcept.text [ fhir:value "Silver" ]
     ];
     fhir:ProductPlan.plan.premium [
       fhir:Quantity.value [ fhir:value "2000"^^xsd:decimal ];
       fhir:Quantity.system [ fhir:value "urn:iso:std:iso:4217" ];
       fhir:Quantity.code [ fhir:value "USD" ]
     ]
  ];
  fhir:ProductPlan.endpoint [
     fhir:index 0;
     fhir:link <http://hl7.org/fhir/Endpoint/example>;
     fhir:Reference.reference [ fhir:value "Endpoint/example" ]
  ] .

<http://hl7.org/fhir/Organization/hl7> a fhir:Organization .

<http://hl7.org/fhir/Location/2> a fhir:Location .

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

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

<http://hl7.org/fhir/ProductPlan/example.ttl> a owl:Ontology;
  owl:imports fhir:fhir.ttl;
  owl:versionIRI <http://build.fhir.org/ProductPlan/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.