This example demonstrates how multiple plans can share the same in_network_files or allowed_amount_file to reduce redundancy. In this scenario:
Plan A, Plan B, and Plan C share in-network-file-1.json.Plan C has a unique negotiated rate file BH-health-shared-0002.json.Plan A and Plan C point to an empty allowed amounts file.Plan B points to a populated allowed amounts file.
{
"reporting_entity_name":"...",
"reporting_entity_type":"...",
"reporting_structure":[
{
"reporting_plans":[{
"plan_name":"Plan A",
"plan_id_type":"hios",
"plan_id":"0000000000",
"issuer_name": "ACME Payer 1",
"plan_market_type":"individual"
},{
"plan_name":"Plan B",
"plan_id_type":"hios",
"plan_id":"11111111111",
"issuer_name": "ACME Payer 2",
"plan_market_type":"individual"
}],
"in_network_files":[{
"description":"in-network file",
"location":"https://www.some_site.com/files/in-network-file-1.json"
}]
},{
"reporting_plans":[{
"plan_name":"Plan C",
"plan_id_type":"hios",
"plan_id":"222222222",
"issuer_name": "ACME Payer 3",
"plan_market_type":"individual"
}],
"in_network_files":[{
"description":"in-network file primary",
"location":"https://www.some_site.com/files/in-network-file-1.json"
},
{
"description":"behavioral health shared file",
"location":"https://www.some_site.com/files/BH-health-shared-0002.json"
}],
"allowed_amount_file":{
"description": "allowed amount file",
"location": "https://www.some_site.com/files/allowed-amounts-file-empty.json"
}
},{
"reporting_plans":[
{
"plan_name":"Plan A",
"plan_id_type":"hios",
"plan_id":"0000000000",
"issuer_name": "ACME Payer 1",
"plan_market_type":"individual"
}],
"allowed_amount_file":{
"description": "allowed amount file",
"location": "https://www.some_site.com/files/allowed-amounts-file-empty.json"
}
},{
"reporting_plans":[
{
"plan_name":"Plan B",
"plan_id_type":"hios",
"plan_id":"11111111111",
"issuer_name": "ACME Payer 2",
"plan_market_type":"individual"
}],
"allowed_amount_file":{
"description": "allowed amount file",
"location": "https://www.some_site.com/files/allowed-amounts-file-1.json"
}
}]
}