@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://fhir.org/fhir/us/anonymized-eicr/Location/location-salem-medical-center> a fhir:Location ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "location-salem-medical-center"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/ecr/StructureDefinition/us-ph-location"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/ecr/StructureDefinition/us-ph-location>
     ] )
  ] ; # 
  fhir:text [
     fhir:extension ( [
       fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/data-absent-reason"^^xsd:anyURI ] ;
       fhir:value [
         a fhir:code ;
         fhir:v "masked"
       ]
     ] ) ;
     fhir:status [ fhir:v "empty" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>MASKED</p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://hl7.org.fhir/sid/us-npi"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "1144221995" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:name [ fhir:v "Clinic Bldg A, Salem Medical Center"] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "HOSP" ] ;
       fhir:display [ fhir:v "Hospital" ]
     ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "(+1) (555)555-3001" ]
  ] [
     fhir:system [ fhir:v "fax" ] ;
     fhir:value [ fhir:v "(+1) (555)555-3002" ]
  ] [
     fhir:system [ fhir:v "email" ] ;
     fhir:value [ fhir:v "mail@smc.org" ]
  ] ) ; # 
  fhir:address [
     fhir:line ( [ fhir:v "Clinic Bldg A" ] [ fhir:v "4444 Healthcare Drive" ] ) ;
     fhir:city [ fhir:v "Ann Arbor" ] ;
     fhir:state [ fhir:v "MI" ] ;
     fhir:postalCode [ fhir:v "99999" ]
  ] ; # 
  fhir:managingOrganization [
     fhir:link <http://fhir.org/fhir/us/anonymized-eicr/Organization/organization-salem-medical-center> ;
     fhir:reference [ fhir:v "Organization/organization-salem-medical-center" ]
  ] . # 

# -------------------------------------------------------------------------------------

