Universal API Implementation Guide
1.1.19 - ci-build

Universal API Implementation Guide - Local Development build (v1.1.19). See the Directory of published versions

: External - Practice Organization example - 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 "37dc02b7-b49f-4198-a81b-7073593cb93d"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://fhir.developer.gene.com/StructureDefinition/uapi-organization";
       fhir:index 0;
       fhir:link <https://fhir.developer.gene.com/StructureDefinition/uapi-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=\"37dc02b7-b49f-4198-a81b-7073593cb93d\"> </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 \"37dc02b7-b49f-4198-a81b-7073593cb93d\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-uapi-organization.html\">UAPI Organization</a></p></div><p><b>identifier</b>: id: HOSP-12345(use: USUAL)</p><p><b>type</b>: Healthcare Provider <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://hl7.org/fhir/R4B/codesystem-organization-type.html\">OrganizationType</a>#prov)</span></p><p><b>name</b>: Mid Atlantic Retina</p><p><b>telecom</b>: ph: -unknown-</p><p><b>address</b>: 8 Ranoldo Terrace Cherry Hill NJ 08034 US </p><h3>Contacts</h3><table class=\"grid\"><tr><td>-</td><td><b>Name</b></td><td><b>Telecom</b></td></tr><tr><td>*</td><td>Venus Yardav (OFFICIAL)</td><td>ph: 8882704882(WORK), fax: 8179974042(WORK)</td></tr></table></div>"
  ];
  fhir:Organization.identifier [
     fhir:index 0;
     fhir:Identifier.use [ fhir:value "usual" ];
     fhir:Identifier.system [ fhir:value "http://vendor.com/ab" ];
     fhir:Identifier.value [ fhir:value "HOSP-12345" ];
     fhir:Identifier.assigner [
       fhir:Reference.display [ fhir:value "AB Vendor" ]     ]
  ];
  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 "prov" ];
       fhir:Coding.display [ fhir:value "Healthcare Provider" ]     ]
  ];
  fhir:Organization.name [ fhir:value "Mid Atlantic Retina"];
  fhir:Organization.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "phone" ]
  ];
  fhir:Organization.address [
     fhir:index 0;
     fhir:Address.line [
       fhir:value "8 Ranoldo Terrace";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "Cherry Hill" ];
     fhir:Address.state [ fhir:value "NJ" ];
     fhir:Address.postalCode [ fhir:value "08034" ];
     fhir:Address.country [ fhir:value "US" ]
  ];
  fhir:Organization.contact [
     fhir:index 0;
     fhir:Organization.contact.name [
       fhir:HumanName.use [ fhir:value "official" ];
       fhir:HumanName.family [ fhir:value "Yardav" ];
       fhir:HumanName.given [
         fhir:value "Venus";
         fhir:index 0       ]     ];
     fhir:Organization.contact.telecom [
       fhir:index 0;
       fhir:ContactPoint.system [ fhir:value "phone" ];
       fhir:ContactPoint.value [ fhir:value "8882704882" ];
       fhir:ContactPoint.use [ fhir:value "work" ];
       fhir:ContactPoint.rank [ fhir:value "1"^^xsd:positiveInteger ]     ], [
       fhir:index 1;
       fhir:ContactPoint.system [ fhir:value "fax" ];
       fhir:ContactPoint.value [ fhir:value "8179974042" ];
       fhir:ContactPoint.use [ fhir:value "work" ];
       fhir:ContactPoint.rank [ fhir:value "2"^^xsd:positiveInteger ]     ]
  ].

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

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