@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/ndh/Organization/SamplePayer> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "SamplePayer"] ;
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2026-07-01T13:26:22.0314215+00:00"^^xsd:dateTime ] ;
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/ndh/StructureDefinition/ndh-Organization" ;
       fhir:index -1 ;
       fhir:link <http://hl7.org/fhir/us/ndh/StructureDefinition/ndh-Organization>
     ]
  ] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "extensions" ]
  ] ;
  fhir:DomainResource.extension [
     fhir:index -1 ;
     fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/ndh/StructureDefinition/base-ext-insuranceplan-reference" ] ;
     fhir:Extension.valueReference [
       fhir:link <http://hl7.org/fhir/us/ndh/InsurancePlan/AcmeQHPBronze> ;
       fhir:Reference.reference [ fhir:value "InsurancePlan/AcmeQHPBronze" ]
     ]
  ] ;
  fhir:Organization.identifier [
     fhir:index -1 ;
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index -1 ;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ] ;
         fhir:Coding.code [ fhir:value "PAYERID" ]
       ]
     ] ;
     fhir:Identifier.system [ fhir:value "http://example.org/Identifiers" ] ;
     fhir:Identifier.value [ fhir:value "123456789" ]
  ] ;
  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.version [ fhir:value "2.0.1" ] ;
       fhir:Coding.code [ fhir:value "pay" ] ;
       fhir:Coding.display [ fhir:value "Payer" ]
     ]
  ] ;
  fhir:Organization.name [ fhir:value "Sample of Medicare Payer"] ;
  fhir:Organization.telecom [
     fhir:index -1 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "(111)-222-3333" ] ;
     fhir:ContactPoint.rank [ fhir:value "2"^^xsd:positiveInteger ]
  ], [
     fhir:index -1 ;
     fhir:ContactPoint.system [ fhir:value "url" ] ;
     fhir:ContactPoint.value [ fhir:value "https://www.example.com" ] ;
     fhir:ContactPoint.rank [ fhir:value "1"^^xsd:positiveInteger ]
  ] ;
  fhir:Organization.address [
     fhir:index -1 ;
     fhir:Address.line [
       fhir:value "456 Main Street" ;
       fhir:index -1
     ] ;
     fhir:Address.city [ fhir:value "Norwalk" ] ;
     fhir:Address.state [ fhir:value "CT" ] ;
     fhir:Address.postalCode [ fhir:value "00014-1234" ]
  ] .

<http://hl7.org/fhir/us/ndh/InsurancePlan/AcmeQHPBronze> a fhir:us .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/us/ndh/Organization/SamplePayer.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/us/ndh/Organization/SamplePayer.ttl> .

# -------------------------------------------------------------------------------------

