Foundation
Publish-box
(todo)
This
is
the
Continuous
Integration
Build
of
FHIR
(will
be
incorrect/inconsistent
at
times).
See
the
Directory
of
published
versions
| Responsible Owner: Financial Management Work Group | Standards Status : Informative | Compartments : Patient , RelatedPerson |
ShEx statement for coverage
PREFIX fhir: <http://hl7.org/fhir/> PREFIX fhirvs: <http://hl7.org/fhir/ValueSet/> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>IMPORT <code.shex># ShEx Version 2.2 IMPORT <Code.shex> IMPORT <Money.shex>IMPORT <string.shex>IMPORT <String.shex> IMPORT <Period.shex> IMPORT <Patient.shex>IMPORT <boolean.shex>IMPORT <Boolean.shex> IMPORT <Contract.shex> IMPORT <Reference.shex> IMPORT <Identifier.shex>IMPORT <positiveInt.shex>IMPORT <PositiveInt.shex> IMPORT <Organization.shex> IMPORT <RelatedPerson.shex> IMPORT <InsurancePlan.shex> IMPORT <DomainResource.shex> IMPORT <SimpleQuantity.shex> IMPORT <CodeableConcept.shex> IMPORT <BackboneElement.shex> start=@<Coverage> AND {fhir:nodeRole [fhir:treeRoot]} # Insurance or medical plan or a payment agreement <Coverage> EXTENDS @<DomainResource> CLOSED { a [fhir:Coverage]?;fhir:nodeRole [fhir:treeRoot]?; fhir:identifier @<OneOrMore_Identifier>?; # Business identifier(s) for this # coveragefhir:status @<code> ANDfhir:status @<Code> AND {fhir:v @fhirvs:fm-status}; # active | cancelled | draft | # entered-in-errorfhir:kind @<code> ANDfhir:statusReason @<String>?; # Reason for status change fhir:kind @<Code> AND {fhir:v @fhirvs:coverage-kind}; # insurance | self-pay | other fhir:paymentBy @<OneOrMore_Coverage.paymentBy>?; # Self-pay parties and responsibility fhir:type @<CodeableConcept>?; # Coverage category such as medical # or accidentfhir:policyHolder @<Reference> AND {fhir:linkfhir:policyHolder @<Reference> AND {fhir:l @<Organization> OR @<Patient> OR @<RelatedPerson> ? }?; # Owner of the policyfhir:subscriber @<Reference> AND {fhir:linkfhir:subscriber @<Reference> AND {fhir:l @<Patient> OR @<RelatedPerson> ? }?; # Subscriber to the policy fhir:subscriberId @<OneOrMore_Identifier>?; # ID assigned to the subscriberfhir:beneficiary @<Reference> AND {fhir:linkfhir:beneficiary @<Reference> AND {fhir:l @<Patient> ? }; # Plan beneficiaryfhir:dependent @<string>?; # Dependent numberfhir:dependent @<String>?; # Dependent number fhir:relationship @<CodeableConcept>?; # Beneficiary relationship to the # subscriber fhir:period @<Period>?; # Coverage start and end datesfhir:insurer @<Reference> AND {fhir:linkfhir:insurer @<Reference> AND {fhir:l @<Organization> ? }?; # Issuer of the policy fhir:class @<OneOrMore_Coverage.class>?; # Additional coverage classificationsfhir:order @<positiveInt>?; # Relative order of the coverage fhir:network @<string>?; # Insurer networkfhir:order @<PositiveInt>?; # Relative order of the coverage fhir:network @<String>?; # Insurer network fhir:costToBeneficiary @<OneOrMore_Coverage.costToBeneficiary>?; # Patient payments for # services/productsfhir:subrogation @<boolean>?; # Reimbursement to insurerfhir:subrogation @<Boolean>?; # Reimbursement to insurer fhir:contract @<OneOrMore_Reference_Contract>?; # Contract detailsfhir:insurancePlan @<Reference> AND {fhir:linkfhir:insurancePlan @<Reference> AND {fhir:l @<InsurancePlan> ? }?; # Insurance plan details } # Patient payments for services/products <Coverage.costToBeneficiary> EXTENDS @<BackboneElement> CLOSED { fhir:type @<CodeableConcept>?; # Cost category fhir:category @<CodeableConcept>?; # Benefit classification fhir:network @<CodeableConcept>?; # In or out of network fhir:unit @<CodeableConcept>?; # Individual or family fhir:term @<CodeableConcept>?; # Annual or lifetime fhir:value @<SimpleQuantity> OR @<Money> ?; # The amount or percentage due from # the beneficiary fhir:exception @<OneOrMore_Coverage.costToBeneficiary.exception>?; # Exceptions for patient payments } # Additional coverage classifications <Coverage.class> EXTENDS @<BackboneElement> CLOSED { fhir:type @<CodeableConcept>; # Type of class such as 'group' or # 'plan' fhir:value @<Identifier>; # Value associated with the typefhir:name @<string>?; # Human readable description of thefhir:name @<String>?; # Human readable description of the # type and value } # Exceptions for patient payments <Coverage.costToBeneficiary.exception> EXTENDS @<BackboneElement> CLOSED { fhir:type @<CodeableConcept>; # Exception category fhir:period @<Period>?; # The effective period of the # exception } # Self-pay parties and responsibility <Coverage.paymentBy> EXTENDS @<BackboneElement> CLOSED {fhir:party @<Reference> AND {fhir:linkfhir:party @<Reference> AND {fhir:l @<Organization> OR @<Patient> OR @<RelatedPerson> ? }; # Parties performing self-paymentfhir:responsibility @<string>?; # Party's responsibility } # Patient payments for services/products <Coverage.costToBeneficiary> EXTENDS @<BackboneElement> CLOSED { fhir:type @<CodeableConcept>?; # Cost category fhir:category @<CodeableConcept>?; # Benefit classification fhir:network @<CodeableConcept>?; # In or out of network fhir:unit @<CodeableConcept>?; # Individual or family fhir:term @<CodeableConcept>?; # Annual or lifetime fhir:value @<SimpleQuantity> OR @<Money> ?; # The amount or percentage due from # the beneficiary fhir:exception @<OneOrMore_Coverage.costToBeneficiary.exception>?; # Exceptions for patient paymentsfhir:responsibility @<String>?; # Party's responsibility } #---------------------- Cardinality Types (OneOrMore) ------------------- <OneOrMore_Identifier> CLOSED { rdf:first @<Identifier> ; rdf:rest [rdf:nil] OR @<OneOrMore_Identifier> } <OneOrMore_Coverage.paymentBy> CLOSED { rdf:first @<Coverage.paymentBy> ; rdf:rest [rdf:nil] OR @<OneOrMore_Coverage.paymentBy> } <OneOrMore_Coverage.class> CLOSED { rdf:first @<Coverage.class> ; rdf:rest [rdf:nil] OR @<OneOrMore_Coverage.class> } <OneOrMore_Coverage.costToBeneficiary> CLOSED { rdf:first @<Coverage.costToBeneficiary> ; rdf:rest [rdf:nil] OR @<OneOrMore_Coverage.costToBeneficiary> } <OneOrMore_Reference_Contract> CLOSED {rdf:first @<Reference> AND {fhir:linkrdf:first @<Reference> AND {fhir:l @<Contract> } ; rdf:rest [rdf:nil] OR @<OneOrMore_Reference_Contract> } <OneOrMore_Coverage.costToBeneficiary.exception> CLOSED { rdf:first @<Coverage.costToBeneficiary.exception> ; rdf:rest [rdf:nil] OR @<OneOrMore_Coverage.costToBeneficiary.exception> } #---------------------- Value Sets ------------------------ # The kind of coverage: insurance, selfpay or other. fhirvs:coverage-kind ["insurance" "self-pay" "other"] # This value set includes Status codes. fhirvs:fm-status ["active" "cancelled" "draft" "entered-in-error"]
Usage note: every effort has been made to ensure that the ShEx files are correct and useful, but they are not a normative part of the specification.
FHIR
®©
HL7.org
2011+.
FHIR
R6
hl7.fhir.core#6.0.0-ballot3
generated
on
Tue,
Apr
1,
Fri,
Nov
21,
2025
12:24+1100.
00:01+0000.
Links:
Search
|
Version
History
|
Contents
|
Glossary
|
QA
|
Compare
to
R4
|
Compare
to
R5
|
Compare
to
Last
Ballot
|
|
Propose
a
change