Skip to content

ClaimServiceLine

Frozen service line data from a submitted claim snapshot

Fields

cpt_code · ClaimCptCode · CPT procedure code
epsdt · String · EPSDT indicator
family_planning_service · Boolean · Family planning indicator
fee · String · Fee amount
id · ID · Service line ID
mod1 · String · Modifier 1
mod2 · String · Modifier 2
mod3 · String · Modifier 3
mod4 · String · Modifier 4
pointers · [Int!] · Diagnosis pointers (0-indexed)
service_date · String · Service date
service_end_date · String · Service end date
units · Int · Number of units

Used By

Definition

"""
Frozen service line data from a submitted claim snapshot
"""
type ClaimServiceLine {
"""
CPT procedure code
"""
cpt_code: ClaimCptCode
"""
EPSDT indicator
"""
epsdt: String
"""
Family planning indicator
"""
family_planning_service: Boolean
"""
Fee amount
"""
fee: String
"""
Service line ID
"""
id: ID
"""
Modifier 1
"""
mod1: String
"""
Modifier 2
"""
mod2: String
"""
Modifier 3
"""
mod3: String
"""
Modifier 4
"""
mod4: String
"""
Diagnosis pointers (0-indexed)
"""
pointers: [Int!]
"""
Service date
"""
service_date: String
"""
Service end date
"""
service_end_date: String
"""
Number of units
"""
units: Int
}