OBJECT

SuperBill

SuperBill

link GraphQL Schema definition

  • type SuperBill {
  • # address
  • address: String
  • # amount of super bill
  • amount_paid: String
  • # amount due after amount paid is subtracted from total fee
  • balance_due: String
  • # Returns cpt codes names list comma separated
  • cpt_code_names: String
  • # CPT codes in use for this super bill
  • cpt_codes_super_bills: [CptCodesSuperBill!]
  • # date super bill was created
  • created_at: String!
  • # date superbill was deleted
  • deleted_at: String
  • # id of dietitian
  • dietitian_id: ID
  • # ICD codes in use for this super bill
  • icd_codes_super_bills: [IcdCodesSuperBill!]
  • # The unique identifier of the bill
  • id: ID!
  • # license number
  • license_num: String
  • # location
  • location: Location
  • # location id
  • location_id: ID
  • # npi number
  • npi: String
  • # patient of this superbill
  • patient: User
  • # dob of patient
  • patient_dob: String
  • # id of patient
  • patient_id: ID
  • # location
  • patient_location: Location
  • # patient location id
  • patient_location_id: ID
  • # name of patient
  • patient_name: String
  • # phone number of patient
  • patient_phone: String
  • # place of service
  • place_of_service: PlaceOfService
  • # place of service id
  • place_of_service_id: ID
  • # city
  • prov_city: String
  • # email
  • prov_email: String
  • # address line one
  • prov_line1: String
  • # address line one
  • prov_line2: String
  • # phone
  • prov_phone: String
  • # state
  • prov_state: String
  • # zip
  • prov_zip: String
  • # provider
  • provider: User
  • # name of provider
  • provider_name: String
  • # receipt line items of this super bill
  • receipt_line_items: [ReceiptLineItem!]
  • # name of referrer
  • referrer_name: String
  • # npi of referrer
  • referrer_npi: String
  • # Date of service (as a date)
  • service_date: String
  • # status
  • status: String
  • # tax id
  • tax_id: String
  • # total fee for superbill
  • total_fee: String
  • # date super bill was updated
  • updated_at: String!
  • }