@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://hl7.org/fhir/us/dapl/Organization/deidentified-organization-example> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "deidentified-organization-example"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/dapl/StructureDefinition/dapl-deidentified-organization"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/dapl/StructureDefinition/dapl-deidentified-organization>
     ] )
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "urn:oid:2.16.840.1.113883.6.300"^^xsd:anyURI ;
       fhir:l <urn:oid:2.16.840.1.113883.6.300>
     ] ;
     fhir:value [ fhir:v "55555" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/organization-type"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/organization-type>
       ] ;
       fhir:code [ fhir:v "pay" ]
     ] ) ;
     fhir:text [ fhir:v "Payer" ]
  ] ) ; # 
  fhir:address ( [
     fhir:city [ fhir:v "Amherst" ] ;
     fhir:state [ fhir:v "MA" ] ;
     fhir:postalCode [ fhir:v "01000" ] ;
     fhir:country [ fhir:v "USA" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

