Quote: Plan & Rate Data
IdeonQuote medical plan & rate datasets, delivered in bulk file format
Ideon's Individual Medical and Small Group Medical (fully insured) datasets can be delivered in bulk file format. Data is delivered via SFTP and files are available in both JSON and CSV formats. Technical documentation for bulk files can be found at the bottom of the API documentation. This section details important information to supplement the technical documentation.
Directories and Refresh Cadence
Bulk files are delivered via AWS S3. Directories will be available based on the markets, state, and years that are licensed. The file hierarchy structure is: s3://vericred-emr-workers/production/plans/{username}/{file_type}/{market}/{state}/{year}/{quarter}, with folder definitions as follows:
Username - provided by Ideon with AWS access credentials
File Type - csv or json
Market - individual or small_group
State - 2 character state code
Year - the year in which the plans are available
Quarter - the quarter for which premiums are quoted, based on coverage effective date. Only applicable for the small group market. Only the
pricings.{csv,json}file will vary for Q1-4; all other files will be the same for the market, state, and year.
Bulk files are refreshed on an ad hoc basis, specific to each end directory. If there are updates or additions to any of the data or files, all files in that end directory will be fully replaced. For example, if a new plan is published for plan year 2026 on the individual market in Texas, all files in the /individual/TX/2026 directory will be updated; a refresh in the /individual/CA/2026 directory would not be triggered.
Deleted and Inactive Plans
In rare scenarios, carriers may completely remove, discontinue, or stop selling a plan mid-year. These scenarios are handled in two ways, depending on carrier communication.
Plan Deletion: used if carriers ask for a plan to be completely removed, typically when the plan was unintentionally included in their source documentation. In this scenario, Ideon will soft delete the plan and remove it from active datasets. A list of soft deleted plans can be found in AWS S3 in the
s3://vericred-emr-workers/production/plans/deleted/directory.Discontinued or Inactive Plans: used if carriers communicate that a plan is no longer being sold in the current plan year. In this scenario, data for the plan will continue to be included in files. However, in the
plans.{csv,json}file, theactively_marketedfield will be set to False. These plans should not be quoted for new customers, as the carrier does not intend for them to be sold for future cases.
File Descriptions and Joins
Only files required for complete integrations are documented in this section. Some files (such as service_areas, rating_areas, issuers, and plan_counties) contain redundant information formatted for specialized use cases. The primary files for quoting use cases are documented below.
plans.{csv,json}
Contains all plan benefit and metadata information. Each row represents a unique plan, identified by the id column which is the plan's HIOS ID. The technical documentation contains a list of support fields. The field naming conventions are consistent with Ideon's API schema; the Medical Benefits Grammar Guide can be referenced for more detailed field documentation.
pricings.{csv,json}
Contains all plan pricing, or premium, data. Rows are defined by plan_id and rating_area_id; a plan will have one set of premiums for each rating area it is available in.
service_area_zip_counties.{csv,json}
Service areas define plan availability and are made up of many zip_code_id and county_id combinations. Each plan will be associated with one and only one service_area_id.
counties.{csv,json}
Includes the canonical name for each county present in one or more service areas in the directory.
zip_counties.{csv,json}
Defines the rating_area_id for each zip-county. Typically, rating areas are defined by counties. However, some states define rating areas by 3-digit zip codes. More information on rating area structures can be found through CMS.
business_rule_sets.json
Contains the supported group and member eligibility business and quoting rules for each plan. Business rule data is only delivered in JSON files; CSVs are not supported. High-level summaries for rules can be found in the below Business Rule Descriptions section.
Summary of Joins
plans - service_area_id
service_area_zip_counties - service_area_id
Many-to-Many
service_area_zip_counties - county_id
counties - id
Many-to-One
service_area_zip_counties - county_id, zip_code_id
zip_counties - county_id, zip_code_id
Many-to-One
plans - id zip_counties - rating_area_id
pricings - plan_id, rating_area_id
One-to-One
plans.json - business_rule_set_id
business_rule_sets.json - id
One-to-One
Business Rule Descriptions
The business_rule_sets.json file is intended as a reference for common group and member eligibility rules applied by Ideon's API during quoting. It is not an exhaustive list of all carrier and regulatory eligibility criteria. The below table documents the commonly used business rules; any business rule types found in the file that are not included in this table can be ignored.
MaximumAgeDependent
The maximum allowable age (inclusive of the value given) of child dependents for the health plan.
{ "age": 26 }
Tobacco Cutoff
The lookback period for which tobacco use is assessed to determine whether tobacco-specific rates should be quoted.
{ "months": 6 }
EligibleChildrenCap
Defines the maximum number of child dependents that are eligible to be quoted for premiums; additional children can enroll at no additional cost.
For example, using the data to the right: if an individual has child dependents aged 22, 20, 18, 17, and 15, then all dependents would be quoted except the 15 year old.
{ "max_age_of_child": 20,
"eligible_children_cap": 3 }
AllowedRelationships
A list of the dependent relationships allowed under the health plan and the dependent must live in the same household as the member. Possible relationship values are documented here.
[ { "relationship": "child", "same_household": false }, ... ]
MembersQuotableInServiceArea
If included in the business rule set for a plan, indicates that for a member to be eligible for the plan, they must reside or work within the service area of the plan.
null
MembersQuotableInStateOnly
If included in the business rule set for a plan, indicates that for a member to be eligible for the plan, they must reside in the state in which the plan is offered.
null
MembersInServiceArea
If included in the business rule set for a plan, indicates that for a member to be eligible for the plan, they must reside in the service area of the plan.
{ "required?": true }
MinimumInStatePercentage
The minimum percentage of members that must reside within the state in which the plan is offered for the group to be considered eligible.
{ "minimum_percentage": 50 }
MinimumMultiStateResidencyPercentage
The minimum percentage of members that must reside within one of the states in the allowed_states list for the group to be considered eligible for the plan.
{ "minimum_percentage": 50,
"allowed_states": [
"ID",
... ] }
MinimumParticipationPercentage
The minimum percentage of eligible members that must enroll in the plan for the group to be considered eligible for the plan.
{ "minimum_percentage": 50 }
MinimumContributionPercentage
The minimum percentage of premium that the employer must contribute towards member premium for the group to be considered eligible for the plan.
{ "minimum_percentage": 50 }
Frequently Asked Questions
Why don't plan counts match between a quote through Ideon's API and the bulk files?
Assuming service area availability is correctly implemented when integrating a rating engine with Ideon's bulk files, there are three main causes for discrepancies in plan counts.
The various iterations of CSR (cost sharing reduction) plans are not properly accounted for. For each given base HIOS ID with CSR variants, a single plan must be quoted based on the applicant's income. Individual market only - more information can be found through HealthCare.gov.
On the Individual market, Catastrophic plans are not filtered out for applicants over the age of 30. More information can be found through HealthCare.gov.
Plans that are flagged as
actively_marketed = falseare automatically filtered out from quotes through Ideon's API; the same logic should be used when quoting using bulk files. More information can be found in the Deleted and Inactive Plans section.
Why is the pricings.csv file is empty for VT and NY?
In NY and VT, rates are structured as family tiers rather than age bands. Columns A through EB contain the age-banded rates, so they are left blank for these states. Columns EC through EO contain the necessary data and family tiered rates to support NY and VT quoting.
Why don't UHC B2B plans have premiums in the pricings file?
UnitedHealthcare does not allow premium data to be delivered in bulk for their "B2B" plans - the directly sourced UHC data in the small group market. For approved users, B2B plan data is delivered in bulk files, but premiums are omitted for this reason. For more information on approvals and access to UHC small group data, please reach out to your Customer Success Manager.
Last updated
Was this helpful?