Da Vinci - Risk Based Contracts Member Attribution (ATR) List
0.1.0 - STU1 Ballot

This page is part of the Risk Based Contracts Member Attribution List FHIR IG (v0.1.0: STU 1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 1.0.0. For a full list of available versions, see the Directory of published versions

- TTL Representation

(back to description)

Raw ttl

Source view

@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:Patient;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "pat2"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n	<p> <b> Generated Narrative with Details</b> </p> \n	<p> <b> Example Patient : </b> Patient-2 </p> \n	</div>"
  ];
  fhir:Patient.identifier [
     fhir:index 0;
     fhir:Identifier.use [ fhir:value "usual" ];
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
         fhir:Coding.code [ fhir:value "MR" ];
         fhir:Coding.display [ fhir:value "Medical Record Number" ]       ];
       fhir:CodeableConcept.text [ fhir:value "Medical Record Number" ]     ];
     fhir:Identifier.system [ fhir:value "http://multicareprovider.org" ];
     fhir:Identifier.value [ fhir:value "1233232702" ]
  ], [
     fhir:index 1;
     fhir:Identifier.use [ fhir:value "usual" ];
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
         fhir:Coding.code [ fhir:value "MC" ];
         fhir:Coding.display [ fhir:value "Patient's Medicare number" ]       ];
       fhir:CodeableConcept.text [ fhir:value "Patient's Medicare number" ]     ];
     fhir:Identifier.system [ fhir:value "http://medicare.gov" ];
     fhir:Identifier.value [ fhir:value "34234" ]
  ], [
     fhir:index 2;
     fhir:Identifier.use [ fhir:value "usual" ];
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
         fhir:Coding.code [ fhir:value "MA" ];
         fhir:Coding.display [ fhir:value "Patient Medicaid number" ]       ];
       fhir:CodeableConcept.text [ fhir:value "Patient Medicaid number" ]     ];
     fhir:Identifier.system [ fhir:value "http://medicare.gov" ];
     fhir:Identifier.value [ fhir:value "435345" ]
  ], [
     fhir:index 3;
     fhir:Identifier.use [ fhir:value "usual" ];
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
         fhir:Coding.code [ fhir:value "MB" ];
         fhir:Coding.display [ fhir:value "Member Number" ]       ];
       fhir:CodeableConcept.text [ fhir:value "Member Number" ]     ];
     fhir:Identifier.system [ fhir:value "http://cambia.org" ];
     fhir:Identifier.value [ fhir:value "454534435" ]
  ], [
     fhir:index 4;
     fhir:Identifier.use [ fhir:value "usual" ];
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
         fhir:Coding.code [ fhir:value "SS" ];
         fhir:Coding.display [ fhir:value "Social Security number" ]       ];
       fhir:CodeableConcept.text [ fhir:value "Social Security number" ]     ];
     fhir:Identifier.system [ fhir:value "http://http://hl7.org/fhir/sid/us-ssn" ];
     fhir:Identifier.value [ fhir:value "558-24-2345" ]
  ];
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.use [ fhir:value "official" ];
     fhir:HumanName.family [ fhir:value "Harper" ];
     fhir:HumanName.given [
       fhir:value "Jane";
       fhir:index 0     ], [
       fhir:value "Philip";
       fhir:index 1     ];
     fhir:HumanName.prefix [
       fhir:value "Ms";
       fhir:index 0     ]
  ];
  fhir:Patient.gender [ fhir:value "male"];
  fhir:Patient.birthDate [ fhir:value "2001-02-20"^^xsd:date];
  fhir:Patient.address [
     fhir:index 0;
     fhir:Address.line [
       fhir:value "123 Market St";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "Portland" ];
     fhir:Address.state [ fhir:value "OR" ];
     fhir:Address.postalCode [ fhir:value "23455" ];
     fhir:Address.country [ fhir:value "US" ]
  ];
  fhir:Patient.generalPractitioner [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Organization/MulticareProviderOrg" ]
  ].

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

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