@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/us/quality-core/Organization/example-1> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-1"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/quality-core/StructureDefinition/us-quality-core-organization" ;
       fhir:index -1 ;
       fhir:link <http://hl7.org/fhir/us/quality-core/StructureDefinition/us-quality-core-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 example-1</b></p><a name=\"example-1\"> </a><a name=\"hcexample-1\"> </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-us-quality-core-organization.html\">US Quality Core Organization</a></p></div><p><b>identifier</b>: <a href=\"http://terminology.hl7.org/5.5.0/NamingSystem-npi.html\" title=\"National Provider Identifier\">United States National Provider Identifier</a>/1285243618 (use: temp, )</p><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/organization-type prov}\">Healthcare Provider</span></p><p><b>name</b>: Example Hospital</p><p><b>telecom</b>: <a href=\"tel:+1-555-555-0100\">+1-555-555-0100</a>, fax: +1-555-555-0101, <a href=\"mailto:staff@example.org\">staff@example.org</a></p><p><b>address</b>: 700 Example Hospital Way Example City VA 99999 US </p></div>"
  ] ;
  fhir:Organization.identifier [
     fhir:index -1 ;
     fhir:Identifier.use [ fhir:value "temp" ] ;
     fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ] ;
     fhir:Identifier.value [ fhir:value "1285243618" ]
  ] ;
  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:Coding.display [ fhir:value "Healthcare Provider" ]
     ]
  ] ;
  fhir:Organization.name [ fhir:value "Example Hospital"] ;
  fhir:Organization.telecom [
     fhir:index -1 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "+1-555-555-0100" ]
  ], [
     fhir:index -1 ;
     fhir:ContactPoint.system [ fhir:value "fax" ] ;
     fhir:ContactPoint.value [ fhir:value "+1-555-555-0101" ]
  ], [
     fhir:index -1 ;
     fhir:ContactPoint.system [ fhir:value "email" ] ;
     fhir:ContactPoint.value [ fhir:value "staff@example.org" ]
  ] ;
  fhir:Organization.address [
     fhir:index -1 ;
     fhir:Address.line [
       fhir:value "700 Example Hospital Way" ;
       fhir:index -1
     ] ;
     fhir:Address.city [ fhir:value "Example City" ] ;
     fhir:Address.state [ fhir:value "VA" ] ;
     fhir:Address.postalCode [ fhir:value "99999" ] ;
     fhir:Address.country [ fhir:value "US" ]
  ] .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/us/quality-core/Organization/example-1.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/us/quality-core/Organization/example-1.ttl> .

# -------------------------------------------------------------------------------------

