Argonaut Provider Directory Implementation Guide Version 1.0.0

This page is part of the Argonaut Provider Directory Guide (v1.0.0: Release) based on FHIR R3. This is the current published version. For a full list of available versions, see the Directory of published versions

Example: Organization-example-organization-2

Formats: Narrative, XML, JSON, Turtle

Raw ttl

@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 "example-organization-2"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://fhir.org/guides/argonaut-pd/StructureDefinition/argo-organization";
       fhir:index 0     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <h1>Organization</h1>\n            <div>\n                <p>ID: 393872</p>\n                <p>Name: Saint Luke's Hospital of Kansas City </p>\n                <p>NPI: 1063494177</p>\n                <p>Phone:(816)932-2000</p>\n                <p>Address:4401 Wornall Rd,, MO, 64111</p>\n            </div>\n        </div>"
  ];
  fhir:DomainResource.contained [
     a fhir:Endpoint;
     fhir:index 0;
     fhir:Resource.id [ fhir:value "71" ];
     fhir:Endpoint.status [ fhir:value "active" ];
     fhir:Endpoint.connectionType [
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/endpoint-connection-type" ];
       fhir:Coding.code [ fhir:value "direct-project" ]     ];
     fhir:Endpoint.name [ fhir:value "Dr. Ronald Bone Direct Address" ];
     fhir:Endpoint.managingOrganization [
       fhir:Reference.reference [ fhir:value "Organization/example-organization-2" ]     ];
     fhir:Endpoint.payloadType [
       fhir:index 0;
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "urn:oid:1.3.6.1.4.1.19376.1.2.3" ];
         fhir:Coding.code [ fhir:value "urn:hl7-org:sdwg:ccda-structuredBody:1.1" ]       ]     ];
     fhir:Endpoint.payloadMimeType [
       fhir:value "text/xml";
       fhir:index 0     ];
     fhir:Endpoint.address [ fhir:value "mailto:Interoperability@DirectAddress.com" ]
  ];
  fhir:Organization.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ];
     fhir:Identifier.value [ fhir:value "1063494177" ]
  ], [
     fhir:index 1;
     fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/us/argo/sid/us-ein" ];
     fhir:Identifier.value [ fhir:value "00-0000000" ]
  ];
  fhir:Organization.active [ fhir:value "true"^^xsd:boolean];
  fhir:Organization.name [ fhir:value "Saint Luke's Hospital of Kansas City"];
  fhir:Organization.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "(816)932-2000" ];
     fhir:ContactPoint.use [ fhir:value "work" ]
  ], [
     fhir:index 1;
     fhir:ContactPoint.system [ fhir:value "other" ];
     fhir:ContactPoint.value [ fhir:value "http://www.saintlukeshealthsystem.org/locations/saint-lukes-hospital-kansas-city" ];
     fhir:ContactPoint.use [ fhir:value "work" ]
  ];
  fhir:Organization.address [
     fhir:index 0;
     fhir:Address.text [ fhir:value "3300 Washtenaw Avenue, Suite 227 Amherst MA 01002" ];
     fhir:Address.line [
       fhir:value "4401 Wornall Rd,";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "Amherst" ];
     fhir:Address.state [ fhir:value "MA" ];
     fhir:Address.postalCode [ fhir:value "64111" ]
  ];
  fhir:Organization.endpoint [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "#71" ]
  ].

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

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