Skip to content

LinePayment

A line-level insurance payment on a claim service line

Fields

adjudication_date · ISO8601Date · Date the payer adjudicated this line
allowed_amount · Float · Amount the payer allowed on this line
id · ID! · required · The unique identifier of the line payment
insurance_plan · InsurancePlan · The payer (insurance plan) identity
line_payment_adjustments · [LinePaymentAdjustment!]! · required · CARC adjustments on this payment
notes · String · Free-text notes captured for a manual entry
paid_amount · Float! · required · Amount the payer paid on this line
payer_responsibility · PayerResponsibility! · required · COB position of the paying payer
source · LinePaymentSource! · required · Where the payment came from (era or manual)
voided_at · ISO8601DateTime · When the payment was voided (null = active)

Used By

Definition

"""
A line-level insurance payment on a claim service line
"""
type LinePayment {
"""
Date the payer adjudicated this line
"""
adjudication_date: ISO8601Date
"""
Amount the payer allowed on this line
"""
allowed_amount: Float
"""
The unique identifier of the line payment
"""
id: ID!
"""
The payer (insurance plan) identity
"""
insurance_plan: InsurancePlan
"""
CARC adjustments on this payment
"""
line_payment_adjustments: [LinePaymentAdjustment!]!
"""
Free-text notes captured for a manual entry
"""
notes: String
"""
Amount the payer paid on this line
"""
paid_amount: Float!
"""
COB position of the paying payer
"""
payer_responsibility: PayerResponsibility!
"""
Where the payment came from (era or manual)
"""
source: LinePaymentSource!
"""
When the payment was voided (null = active)
"""
voided_at: ISO8601DateTime
}