claim.authorization_id.
The table schema can be found in our HDB dbdocs reference.
For reporting on but not limited to:
- Currently active authorizations for a patient or practice
- Authorizations expiring soon that may need renewal
- How many claims have been billed against an authorization
- Authorization counts and authorized-unit totals by payer
The
authorization table does not store a “units used” counter. To see how an authorization has been consumed, join to claim on claim.authorization_id. The claim.authorization_id field is only populated when staff explicitly linked the authorization on the claim, so untagged claims will not appear in the join.Active authorizations
Returns authorizations the practice has flagged active that have not been soft-deleted.Authorizations expiring soon
Identifies authorizations expiring within the next 30 days. Useful for proactively requesting renewals.Claims billed against each authorization
Counts the claims that were linked to each authorization. This is the right way to see how an authorization has been used, since theauthorization table itself does not record consumption.
One claim is not necessarily one authorized unit - payers may count units per CPT line or per service date. If you need unit-level accounting, drop down to the charge grain rather than counting claims. Also, claims only appear here when staff tagged the authorization on the claim; untagged claims are invisible to this join.