Skip to content

CptCodesCms1500

cpt codes cms 1500s join table

Fields

cms1500_id · ID · cms 1500 id
cpt_code · CptCode · The CPT code itself
cpt_code_id · ID · icd code id
deprecated Use cpt_code instead
epsdt · String · The Early and Periodic Screening, Diagnostic and Treatment
fee · String · fee
id · ID · The unique identifier of the cms 1500
line_payments · [LinePayment!]! · required · Line-level insurance payments for this service line
line_write_offs · [LineWriteOff!]! · required · Payer-balance write-offs for this service line
mod1 · String · First Modification
mod2 · String · Second Modification
mod3 · String · Third Modification
mod4 · String · Fourth Modification
pointers · [String] · Diagnostic pointers. These are used to connect Diagnosis(ICD) with appropriate Billing Item(CPT) in CMS1500 form
service_date · ISO8601Date · service date
service_end_date · ISO8601Date · The end date of service (if the line item covers a date range). Can be nil if service was delivered on one day
total_line_item_fee · String · Total billed amount for this line item (fee × units)
units · String · units

Used By

Definition

"""
cpt codes cms 1500s join table
"""
type CptCodesCms1500 {
"""
cms 1500 id
"""
cms1500_id: ID
"""
The CPT code itself
"""
cpt_code: CptCode
"""
icd code id
"""
cpt_code_id: ID @deprecated(reason: "Use cpt_code instead")
"""
date created
"""
created_at: ISO8601DateTime
"""
The Early and Periodic Screening, Diagnostic and Treatment
"""
epsdt: String
"""
Self descriptive
"""
family_planning_service: Boolean
"""
fee
"""
fee: String
"""
The unique identifier of the cms 1500
"""
id: ID
"""
Line-level insurance payments for this service line
"""
line_payments(
"""
Include voided payments (default: active only)
"""
include_voided: Boolean = false
): [LinePayment!]!
"""
Payer-balance write-offs for this service line
"""
line_write_offs(
"""
Include voided write-offs (default: active only)
"""
include_voided: Boolean = false
): [LineWriteOff!]!
"""
First Modification
"""
mod1: String
"""
Second Modification
"""
mod2: String
"""
Third Modification
"""
mod3: String
"""
Fourth Modification
"""
mod4: String
"""
Diagnostic pointers. These are used to connect Diagnosis(ICD) with appropriate Billing Item(CPT) in CMS1500 form
"""
pointers: [String]
"""
service date
"""
service_date: ISO8601Date
"""
The end date of service (if the line item covers a date range). Can be nil if service was delivered on one day
"""
service_end_date: ISO8601Date
"""
Total billed amount for this line item (fee × units)
"""
total_line_item_fee: String
"""
units
"""
units: String
"""
date updated
"""
updated_at: ISO8601DateTime
}