Skip to content

CobServiceLineAdjustment

COB data for a single service line on a secondary claim

Fields

adjustments · [CobAdjustment!]! · required · Adjustments applied to this service line
cpt_code · String · CPT procedure code
has_manual_override · Boolean! · required · Whether this line has a manual COB override
line_adjudication_date · ISO8601Date · Date the primary payer adjudicated this line
line_paid_amount · Float · Amount paid by the primary payer for this line
service_date · ISO8601Date · Service date for this line

Used By

Definition

"""
COB data for a single service line on a secondary claim
"""
type CobServiceLineAdjustment {
"""
Adjustments applied to this service line
"""
adjustments: [CobAdjustment!]!
"""
CPT procedure code
"""
cpt_code: String
"""
Whether this line has a manual COB override
"""
has_manual_override: Boolean!
"""
Date the primary payer adjudicated this line
"""
line_adjudication_date: ISO8601Date
"""
Amount paid by the primary payer for this line
"""
line_paid_amount: Float
"""
Service date for this line
"""
service_date: ISO8601Date
}