Skip to content

LinePaymentAdjustment

A CARC adjustment on a line payment

Fields

adjustment_group · LinePaymentAdjustmentGroup! · required · Claim Adjustment Segment (CAS) group type
amount · Float! · required · Adjusted amount for this CARC
id · ID! · required · The unique identifier of the adjustment
reason_code · String! · required · CARC reason code (e.g. 45; PR 1/2/3 = deductible/coinsurance/copay)

Used By

Definition

"""
A CARC adjustment on a line payment
"""
type LinePaymentAdjustment {
"""
Claim Adjustment Segment (CAS) group type
"""
adjustment_group: LinePaymentAdjustmentGroup!
"""
Adjusted amount for this CARC
"""
amount: Float!
"""
The unique identifier of the adjustment
"""
id: ID!
"""
CARC reason code (e.g. 45; PR 1/2/3 = deductible/coinsurance/copay)
"""
reason_code: String!
}