BIC Data Questions from CCSQ Users
- What do the beneficiary_partition and beneficiary_key fields mean?
- beneficiary_key is a unique internal identifier for a beneficiary.
- Can all tables with these two fields be joined together?
- Yes. The joins will depend on the use case.
- Are the tables partitioned by one or both fields?
- Partitioned by beneficiary_partition.
- Is the beneficiary_status table more current than the beneficiary table?
- They are concurrent. The beneficiary_status include the current snapshot of core beneficiary information.
- On the beneficiary_status table is the medicare_beneficiary_identifier column the current Medicare Beneficiary Identification (MBI) number?
- Yes.
- Are equated Health Insurance Claims (HIC) numbers available in the Beneficiary Information in the Cloud (BIC) data?
- No, you would need to manage this as part of your logic.
- Can a beneficiary have more than one beneficiary_key?
- No.
- Why are these three columns in both the beneficiary_status table and the beneficiary_name table? Do both tables have current data?
- last_name
- first_name
- middle_name
- See answer to item 4.
- Is the beneficiary’s phone number available?
- No.
- In the beneficiary_cross_reference table is the xref_claim_account_number the current (active) HIC number or the equated HIC number or a previous HIC number?
- Does the beneficiary_status table have the current medicare_beneficiary_identifier (MBI)?
- Yes.
- Is state_county_scrubbed the right table to get the current beneficiary state and county codes from?
- Yes, it includes history. Use date match.
- Is there a many to one relationship between the state_county_scrubbed and beneficiary tables
- Yes, it includes history.
- Is mailing_address_scrubbed the right table to get the current beneficiary mailing address?
- Yes.
- Is there a many to one relationship between the mailing_address_scrubbed and beneficiary tables?
- No, only the current mailing address is available.
- Does entitlement start and stop dates mean the same as coverage start and stop dates?
- See the Medicare website for more information.
- Can you provide us with some sample queries that show table joins so that we know how to efficiently join various beneficiary tables?
- Always lookup the beneficiary_partition and beneficiary_key using beneficiary_status and join with any other tables for efficient querying.
- Can you provide us with an entity relationship diagram?
- No entity relationship diagram is available currently, but if additional BIC documentation is provided, it will be uploaded to the Data Catalog.
Related articles