Skip to content

OrganizationFeeScheduleCptCodeType

represents a CPT code in an organization's fee schedule

Fields

code · String! · required · The CPT code itself
description · String! · required · The description of the CPT code
display_name · String! · required · The name and Code of the CPT code for use in labels
fee_per_unit · Int · Fee (in cents) per unit
id · ID! · required · Unique identifier for the CPT Code

Used By

Definition

"""
represents a CPT code in an organization's fee schedule
"""
type OrganizationFeeScheduleCptCodeType {
"""
The CPT code itself
"""
code: String!
"""
The description of the CPT code
"""
description: String!
"""
The name and Code of the CPT code for use in labels
"""
display_name: String!
"""
Fee (in cents) per unit
"""
fee_per_unit: Int
"""
Unique identifier for the CPT Code
"""
id: ID!
}