Colorado BHA FHIR Implementation Guide
0.3.0-current - ci-build United States of America flag

Colorado BHA FHIR Implementation Guide, published by Colorado Behavioral Health Administration. This guide is not an authorized publication; it is the continuous build for version 0.3.0-current built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/CoBHA/CoBHRM-FHIR-IG/ and changes regularly. See the Directory of published versions

: Example Organization

Page standards status: Informative

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 -------------------------------------------------------------------

<http://hl7.org/fhir/Organization/BHAOrganizationExample> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "BHAOrganizationExample"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://bha.colorado.gov/fhir/bha-ig/StructureDefinition/bha-organization" ;
       fhir:index -1 ;
       fhir:link <http://bha.colorado.gov/fhir/bha-ig/StructureDefinition/bha-organization>
     ]
  ] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Organization BHAOrganizationExample</b></p><a name=\"BHAOrganizationExample\"> </a><a name=\"hcBHAOrganizationExample\"> </a><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\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-bha-organization.html\">BHA Provider Organization Profile</a></p></div><p><b>identifier</b>: <a href=\"http://terminology.hl7.org/7.1.0/NamingSystem-npi.html\" title=\"National Provider Identifier\">United States National Provider Identifier</a>/1234567893</p><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/organization-type prov}\">Provider</span></p><p><b>name</b>: Community Health Clinic</p><p><b>telecom</b>: ph: (+1) 555-555-5555, <a href=\"mailto:hq@chc.example.org\">hq@chc.example.org</a></p><p><b>address</b>: 100 Hope Place Denver CO 11111 USA </p></div>"
  ] ;
  fhir:Organization.identifier [
     fhir:index -1 ;
     fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ] ;
     fhir:Identifier.value [ fhir:value "1234567893" ]
  ] ;
  fhir:Organization.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:Organization.type [
     fhir:index -1 ;
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/organization-type" ] ;
       fhir:Coding.code [ fhir:value "prov" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Provider" ]
  ] ;
  fhir:Organization.name [ fhir:value "Community Health Clinic"] ;
  fhir:Organization.telecom [
     fhir:index -1 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "(+1) 555-555-5555" ]
  ], [
     fhir:index -1 ;
     fhir:ContactPoint.system [ fhir:value "email" ] ;
     fhir:ContactPoint.value [ fhir:value "hq@chc.example.org" ]
  ] ;
  fhir:Organization.address [
     fhir:index -1 ;
     fhir:Address.line [
       fhir:value "100 Hope Place" ;
       fhir:index -1
     ] ;
     fhir:Address.city [ fhir:value "Denver" ] ;
     fhir:Address.state [ fhir:value "CO" ] ;
     fhir:Address.postalCode [ fhir:value "11111" ] ;
     fhir:Address.country [ fhir:value "USA" ]
  ] .

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

<http://hl7.org/fhir/Organization/BHAOrganizationExample.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Organization/BHAOrganizationExample.ttl> .