Compliance Questions Cookbook
1. What is my full compliance calendar? ★
SELECT
entity_type_id,
obligation_id,
deadline_type,
compliance_date_anchor,
compliance_date_display,
date_certainty
FROM DWV.COMPLIANCE_DEADLINES
WHERE entity_type_id = 'MA_ORG'
ORDER BY compliance_date_anchor NULLS LAST;2. Everything that applies to me, in one row per obligation
SELECT
obligation_id,
obligation_category,
applicability,
compliance_date_anchor,
compliance_date_display,
date_certainty,
binding_status,
interpretation_confidence
FROM DWV.COMPLIANCE_GOLD
WHERE entity_type_id = 'MEDICAID_MC'
ORDER BY compliance_date_anchor, obligation_category;3. What must I post publicly on my website, and by when? ★
4. What must I report to CMS, and when?
5. What must a denial notice contain? ★
6. Who is subject to the decision timeframes, and who is exempt? ★
7. Which FHIR / Da Vinci implementation guides does each API obligation require?
8. What is explicitly out of scope, and on what basis?
9. What is coming that is not yet binding? ★
10. Which implementation-guide versions are expiring?
11. Which payers am I benchmarking against?
12. Where does each major payer post its PA metrics? ★
13. What PA metric values did each payer post? ★
Tracking changes over time
14. What has changed in the reference, and why? ★
15. Which release am I on, and what shipped in each one?
16. What did the reference assert on a given date?
17. What is the full history of one obligation row?
18. What is currently under verification, and why?
Using Snowflake Cortex on the text columns
Ask the whole product a question with the semantic view
Ask the rule text a question
Normalize payers' free-text service lists
Summarize an obligation for a briefing
A plain-English obligations register
Last updated

