0.0.1 - CI Build

SequoiaProjectHealthcareDirectoryImplementationGuideSTU3 - Local Development build (v0.0.1). See the Directory of published versions

: Kyras Clinic - 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 "create-full-example"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "4" ];
     fhir:Meta.lastUpdated [ fhir:value "2020-07-23T16:21:45.875+00:00"^^xsd:dateTime ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>id</b>: create-full-example</p><h3>Meta</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><p><b>identifier</b>: id: urn:oid:8.8.8.8 (OFFICIAL)</p><p><b>active</b>: false</p><p><b>type</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/organization-type other}\">Other</span></p><p><b>name</b>: Kyras Clinic</p><p><b>address</b>: 200 Main St.  Austin TX 2472 US (WORK)</p><p><b>partOf</b>: <span></span></p><h3>Contacts</h3><table class=\"grid\"><tr><td>-</td><td><b>Name</b></td><td><b>Telecom</b></td><td><b>Address</b></td></tr><tr><td>*</td><td>Family, Given(OFFICIAL)</td><td>test21@test.com(WORK)</td><td>100 Main St. Austin 78737 US (WORK)</td></tr></table></div>"
  ];
  fhir:Organization.identifier [
     fhir:index 0;
     fhir:Identifier.use [ fhir:value "official" ];
     fhir:Identifier.system [ fhir:value "http://www.hl7.org/oid/" ];
     fhir:Identifier.value [ fhir:value "urn:oid:8.8.8.8" ]
  ];
  fhir:Organization.active [ fhir:value "false"^^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 "other" ]     ]
  ];
  fhir:Organization.name [ fhir:value "Kyras Clinic"];
  fhir:Organization.address [
     fhir:index 0;
     fhir:Address.use [ fhir:value "work" ];
     fhir:Address.type [ fhir:value "both" ];
     fhir:Address.line [
       fhir:value "200 Main St. ";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "Austin" ];
     fhir:Address.state [ fhir:value "TX" ];
     fhir:Address.postalCode [ fhir:value "2472" ];
     fhir:Address.country [ fhir:value "US" ]
  ];
  fhir:Organization.partOf [
     fhir:Reference.identifier [
       fhir:Identifier.use [ fhir:value "official" ];
       fhir:Identifier.system [ fhir:value "http://www.hl7.org/oid/" ];
       fhir:Identifier.value [ fhir:value "1.1.1.1" ]     ]
  ];
  fhir:Organization.contact [
     fhir:index 0;
     fhir:Organization.contact.name [
       fhir:HumanName.use [ fhir:value "official" ];
       fhir:HumanName.text [ fhir:value "Family, Given" ]     ];
     fhir:Organization.contact.telecom [
       fhir:index 0;
       fhir:ContactPoint.system [ fhir:value "email" ];
       fhir:ContactPoint.value [ fhir:value "test21@test.com" ];
       fhir:ContactPoint.use [ fhir:value "work" ]     ], [
       fhir:index 1;
       fhir:ContactPoint.system [ fhir:value "phone" ];
       fhir:ContactPoint.value [ fhir:value "555-555-5555" ];
       fhir:ContactPoint.use [ fhir:value "work" ]     ];
     fhir:Organization.contact.address [
       fhir:Address.use [ fhir:value "work" ];
       fhir:Address.type [ fhir:value "both" ];
       fhir:Address.line [
         fhir:value "100 Main St.";
         fhir:index 0       ];
       fhir:Address.city [ fhir:value "Austin" ];
       fhir:Address.postalCode [ fhir:value "78737" ];
       fhir:Address.country [ fhir:value "US" ]     ]
  ].

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

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