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 insurance_plan
· InsurancePlan · The payer (insurance plan) identity 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}