LinuxForHealth FHIR Implementation Guide
8.0.0 - draft United States of America flag

LinuxForHealth FHIR Implementation Guide - Local Development build (v8.0.0). See the Directory of published versions

: CDM Organization - Payer 1 - TTL Representation

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:Organization;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "Payer1"];
  fhir:Resource.meta [
     fhir:Meta.source [ fhir:value "http://acme-health.com/organization/payer" ];
     fhir:Meta.profile [
       fhir:value "http://linuxforhealth.org/fhir/cdm/StructureDefinition/cdm-organization";
       fhir:index 0;
       fhir:link <http://linuxforhealth.org/fhir/cdm/StructureDefinition/cdm-organization>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Organization</b><a name=\"Payer1\"> </a></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource Organization \"Payer1\" </p><p style=\"margin-bottom: 0px\">Information Source: http://acme-health.com/organization/payer!</p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-cdm-organization.html\">CDM Organization</a></p></div><p><b>identifier</b>: Source System Row Identifier: Payer1(use: OFFICIAL)</p><p><b>active</b>: true</p><p><b>type</b>: Payer <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/4.0.0/CodeSystem-organization-type.html\">Organization type</a>#pay; local-provider-type#LocPayerType)</span></p><p><b>name</b>: Payer 1</p><p><b>address</b>: 200 Main Street Suite 101 Irving TX 75014 US (WORK)</p></div>"
  ];
  fhir:Organization.identifier [
     fhir:index 0;
     fhir:Identifier.use [ fhir:value "official" ];
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://linuxforhealth.org/fhir/cdm/CodeSystem/identifier-type" ];
         fhir:Coding.code [ fhir:value "SSRI" ]       ]     ];
     fhir:Identifier.system [ fhir:value "http://acme-health.com/organization/payer" ];
     fhir:Identifier.value [ fhir:value "Payer1" ]
  ];
  fhir:Organization.active [ fhir:value "true"^^xsd:boolean];
  fhir:Organization.type [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/organization-type" ];
       fhir:Coding.code [ fhir:value "pay" ]     ], [
       fhir:index 1;
       fhir:Coding.system [ fhir:value "http://acme-health.com/CodeSystem/local-provider-type" ];
       fhir:Coding.code [ fhir:value "LocPayerType" ]     ]
  ];
  fhir:Organization.name [ fhir:value "Payer 1"];
  fhir:Organization.address [
     fhir:index 0;
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://linuxforhealth.org/fhir/cdm/StructureDefinition/county-code" ];
       fhir:Extension.valueCodeableConcept [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://acme-health.com/CodeSystem/local-county-code" ];
           fhir:Coding.code [ fhir:value "057" ]         ]       ]     ];
     fhir:Address.use [ fhir:value "work" ];
     fhir:Address.type [ fhir:value "physical" ];
     fhir:Address.line [
       fhir:value "200 Main Street";
       fhir:index 0     ], [
       fhir:value "Suite 101";
       fhir:index 1     ];
     fhir:Address.city [ fhir:value "Irving" ];
     fhir:Address.district [ fhir:value "TX" ];
     fhir:Address.state [ fhir:value "TX" ];
     fhir:Address.postalCode [ fhir:value "75014" ];
     fhir:Address.country [ fhir:value "US" ]
  ].

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

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