@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/dme-orders/Organization/Inpatient> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Inpatient"] ; # 
  fhir:meta [
     fhir:versionId [ fhir:v "1" ] ;
     fhir:lastUpdated [ fhir:v "2020-08-09T19:08:18.345Z"^^xsd:dateTime ]
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Organization</b><a name=\"Inpatient\"> </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 &quot;Inpatient&quot; Version &quot;1&quot; Updated &quot;2020-08-09 19:08:18+0000&quot; </p></div><p><b>identifier</b>: id: 1063494177</p><p><b>active</b>: true</p><p><b>name</b>: St. Michael's Hospital</p><p><b>telecom</b>: ph: (816)932-2000(WORK), http://www.stmichaelmedicalcenter.org(WORK)</p><p><b>address</b>: 6666 135th St, Overland Park, KS 66223</p></div>"
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-npi"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "1063494177" ]
  ] ) ; # 
  fhir:active [ fhir:v "true"^^xsd:boolean] ; # 
  fhir:name [ fhir:v "St. Michael's Hospital"] ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "(816)932-2000" ] ;
     fhir:use [ fhir:v "work" ]
  ] [
     fhir:system [ fhir:v "other" ] ;
     fhir:value [ fhir:v "http://www.stmichaelmedicalcenter.org" ] ;
     fhir:use [ fhir:v "work" ]
  ] ) ; # 
  fhir:address ( [
     fhir:text [ fhir:v "6666 135th St, Overland Park, KS 66223" ] ;
     fhir:line ( [ fhir:v "6666 135th Street," ] ) ;
     fhir:city [ fhir:v "Overland Park" ] ;
     fhir:state [ fhir:v "KS" ] ;
     fhir:postalCode [ fhir:v "66223" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

