Skip to content

EraServiceLine

A service line for the claim

Fields

billed_amount · Float! · required · The billed amount
contractual_obligation_adjustments · [EraAdjustment!] · The contractual obligation adjustments
end_date · ISO8601DateTime! · required · The end date of the service
id · ID! · required · The unique identifier of the service line
paid_amount · Float! · required · The paid amount for the service
patient_responsibility_adjustments · [EraAdjustment!] · The patient responsibility adjustments
payer_initiated_adjustments · [EraAdjustment!] · Payer initiated adjustments
service_code · String! · required · The service code
start_date · ISO8601DateTime! · required · The start date of the service

Used By

Definition

"""
A service line for the claim
"""
type EraServiceLine {
"""
The billed amount
"""
billed_amount: Float!
"""
The contractual obligation adjustments
"""
contractual_obligation_adjustments: [EraAdjustment!]
"""
The end date of the service
"""
end_date: ISO8601DateTime!
"""
The unique identifier of the service line
"""
id: ID!
"""
Other adjustments
"""
other_adjustments: [EraAdjustment!]
"""
The paid amount for the service
"""
paid_amount: Float!
"""
The patient responsibility adjustments
"""
patient_responsibility_adjustments: [EraAdjustment!]
"""
Payer initiated adjustments
"""
payer_initiated_adjustments: [EraAdjustment!]
"""
The service code
"""
service_code: String!
"""
The start date of the service
"""
start_date: ISO8601DateTime!
}