vericred_client 0.0.27 → 0.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +62 -25
- data/docs/ACAPlan.md +0 -5
- data/docs/ACAPlan2018.md +6 -5
- data/docs/ACAPlan2018Search.md +104 -0
- data/docs/ACAPlan2018SearchResponse.md +1 -1
- data/docs/ACAPlan2018SearchResult.md +6 -0
- data/docs/ACAPlanPre2018.md +0 -5
- data/docs/ACAPlanPre2018Search.md +97 -0
- data/docs/ACAPlanPre2018SearchResponse.md +1 -1
- data/docs/ACAPlanPre2018SearchResult.md +1 -1
- data/docs/AgeBanded.md +10 -0
- data/docs/BulkPlansApi.md +63 -0
- data/docs/DentalPlan.md +0 -4
- data/docs/DentalPlanSearch.md +25 -0
- data/docs/DentalPlanSearchResponse.md +1 -1
- data/docs/DentalPlanUpdate.md +2 -0
- data/docs/FormulariesApi.md +58 -0
- data/docs/FourTierComposite.md +12 -0
- data/docs/MajorMedicalPlansApi.md +8 -8
- data/docs/MedicalPlanBenefits.md +2 -0
- data/docs/{RequestPlanFind.md → MedicalPlanSearchRequest.md} +2 -3
- data/docs/MedicalPlanUpdate.md +6 -1
- data/docs/MedicalPlansApi.md +114 -0
- data/docs/MedicareAdvantagePlan.md +0 -2
- data/docs/MedicareAdvantagePlanSearch.md +30 -0
- data/docs/MedicareAdvantagePlanSearchResponse.md +1 -1
- data/docs/MembersCreateRequest.md +0 -1
- data/docs/Plan.md +0 -4
- data/docs/PlanMedicare.md +0 -4
- data/docs/PlanMedicareBulk.md +0 -4
- data/docs/PlansBulkSearchRequest.md +13 -0
- data/docs/PlansBulkSearchResponse.md +9 -0
- data/docs/Premiums.md +11 -0
- data/docs/ProviderDetails.md +1 -0
- data/docs/ProviderNetworks.md +2 -1
- data/docs/ProviderNetworksAddress.md +15 -0
- data/docs/ProviderPlanNetworkResponse.md +9 -0
- data/docs/ProviderPlanResponse.md +2 -0
- data/docs/ProvidersApi.md +2 -2
- data/docs/QuotingApi.md +9 -8
- data/docs/RateShow.md +4 -3
- data/docs/ServiceAreaUpdate.md +13 -0
- data/docs/ServiceAreaZipCountyUpdate.md +9 -0
- data/docs/ServiceAreasApi.md +65 -0
- data/docs/ThreeTierComposite.md +11 -0
- data/docs/TwoTierComposite.md +10 -0
- data/docs/V7ResponseProvidersProviderDetails.md +1 -0
- data/docs/VisionPlanUpdate.md +1 -0
- data/lib/vericred_client.rb +48 -13
- data/lib/vericred_client/api/{carrier_verification_medical_plans_api.rb → bulk_plans_api.rb} +47 -22
- data/lib/vericred_client/api/carrier_groups_api.rb +30 -5
- data/lib/vericred_client/api/carriers_api.rb +30 -5
- data/lib/vericred_client/api/dental_plans_api.rb +30 -5
- data/lib/vericred_client/api/drugs_api.rb +30 -5
- data/lib/vericred_client/api/embargoes_api.rb +30 -5
- data/lib/vericred_client/api/formularies_api.rb +91 -5
- data/lib/vericred_client/api/issuers_api.rb +30 -5
- data/lib/vericred_client/api/major_medical_plans_api.rb +38 -13
- data/lib/vericred_client/api/medical_plans_api.rb +147 -5
- data/lib/vericred_client/api/medicare_advantage_plans_api.rb +30 -5
- data/lib/vericred_client/api/network_sizes_api.rb +30 -5
- data/lib/vericred_client/api/networks_api.rb +30 -5
- data/lib/vericred_client/api/plans_api.rb +30 -5
- data/lib/vericred_client/api/providers_api.rb +34 -9
- data/lib/vericred_client/api/quoting_api.rb +46 -20
- data/lib/vericred_client/api/rates_api.rb +30 -5
- data/lib/vericred_client/api/{carrier_verification_dental_plans_api.rb → service_areas_api.rb} +53 -25
- data/lib/vericred_client/api/specialties_api.rb +30 -5
- data/lib/vericred_client/api/vision_plans_api.rb +30 -5
- data/lib/vericred_client/api/zip_counties_api.rb +30 -5
- data/lib/vericred_client/api_client.rb +30 -5
- data/lib/vericred_client/api_error.rb +30 -5
- data/lib/vericred_client/configuration.rb +30 -5
- data/lib/vericred_client/models/aca_plan.rb +31 -60
- data/lib/vericred_client/models/aca_plan2018.rb +91 -60
- data/lib/vericred_client/models/aca_plan2018_search.rb +2155 -0
- data/lib/vericred_client/models/aca_plan2018_search_response.rb +31 -6
- data/lib/vericred_client/models/aca_plan2018_search_result.rb +91 -6
- data/lib/vericred_client/models/aca_plan2018_show_response.rb +30 -5
- data/lib/vericred_client/models/aca_plan_pre2018.rb +31 -60
- data/lib/vericred_client/models/aca_plan_pre2018_search.rb +2085 -0
- data/lib/vericred_client/models/aca_plan_pre2018_search_response.rb +31 -6
- data/lib/vericred_client/models/aca_plan_pre2018_search_result.rb +31 -6
- data/lib/vericred_client/models/aca_plan_pre2018_show_response.rb +30 -5
- data/lib/vericred_client/models/address.rb +30 -5
- data/lib/vericred_client/models/age_banded.rb +1205 -0
- data/lib/vericred_client/models/ancillary_plan_identifier.rb +30 -5
- data/lib/vericred_client/models/base.rb +30 -5
- data/lib/vericred_client/models/base_plan_search_response.rb +30 -5
- data/lib/vericred_client/models/carrier.rb +30 -5
- data/lib/vericred_client/models/carrier_group_request.rb +30 -5
- data/lib/vericred_client/models/carrier_request.rb +30 -5
- data/lib/vericred_client/models/carrier_subsidiary.rb +30 -5
- data/lib/vericred_client/models/county.rb +30 -5
- data/lib/vericred_client/models/county_bulk.rb +30 -5
- data/lib/vericred_client/models/dental_plan.rb +31 -50
- data/lib/vericred_client/models/dental_plan_benefits.rb +30 -5
- data/lib/vericred_client/{api/provider_notification_subscriptions_api.rb → models/dental_plan_search.rb} +361 -157
- data/lib/vericred_client/models/dental_plan_search_applicant.rb +30 -5
- data/lib/vericred_client/models/dental_plan_search_request.rb +30 -5
- data/lib/vericred_client/models/dental_plan_search_response.rb +31 -6
- data/lib/vericred_client/models/dental_plan_show_response.rb +30 -5
- data/lib/vericred_client/models/dental_plan_update.rb +54 -9
- data/lib/vericred_client/models/dental_plan_update_request.rb +30 -5
- data/lib/vericred_client/models/dependent_create.rb +30 -5
- data/lib/vericred_client/models/dependent_create_request.rb +30 -5
- data/lib/vericred_client/models/dependent_show.rb +30 -5
- data/lib/vericred_client/models/drug.rb +30 -5
- data/lib/vericred_client/models/drug_coverage.rb +30 -5
- data/lib/vericred_client/models/drug_coverage_base.rb +30 -5
- data/lib/vericred_client/models/drug_coverage_response.rb +30 -5
- data/lib/vericred_client/models/drug_details.rb +30 -5
- data/lib/vericred_client/models/drug_package.rb +30 -5
- data/lib/vericred_client/models/drug_search_drug_package.rb +30 -5
- data/lib/vericred_client/models/drug_search_request.rb +30 -5
- data/lib/vericred_client/models/drug_search_response.rb +30 -5
- data/lib/vericred_client/models/embargo_request.rb +30 -5
- data/lib/vericred_client/models/formulary.rb +30 -5
- data/lib/vericred_client/models/formulary_drug_coverage.rb +30 -5
- data/lib/vericred_client/models/formulary_drug_package_response.rb +30 -5
- data/lib/vericred_client/models/formulary_response.rb +30 -5
- data/lib/vericred_client/models/four_tier_composite.rb +1225 -0
- data/lib/vericred_client/models/group_create.rb +30 -5
- data/lib/vericred_client/models/group_create_request.rb +30 -5
- data/lib/vericred_client/models/group_create_response.rb +30 -5
- data/lib/vericred_client/models/group_show.rb +30 -5
- data/lib/vericred_client/models/group_show_response.rb +30 -5
- data/lib/vericred_client/models/group_update.rb +30 -5
- data/lib/vericred_client/models/group_update_request.rb +30 -5
- data/lib/vericred_client/models/issuer_request.rb +30 -5
- data/lib/vericred_client/models/location_create.rb +30 -5
- data/lib/vericred_client/models/location_show.rb +30 -5
- data/lib/vericred_client/models/location_update.rb +30 -5
- data/lib/vericred_client/models/medical_plan_benefits.rb +51 -6
- data/lib/vericred_client/models/{request_plan_find_carrier_verification.rb → medical_plan_search_request.rb} +40 -35
- data/lib/vericred_client/models/medical_plan_update.rb +91 -16
- data/lib/vericred_client/models/medical_plan_update_request.rb +30 -5
- data/lib/vericred_client/models/medicare_advantage_plan.rb +31 -30
- data/lib/vericred_client/models/medicare_advantage_plan_benefits.rb +30 -5
- data/lib/vericred_client/models/medicare_advantage_plan_search.rb +1413 -0
- data/lib/vericred_client/models/medicare_advantage_plan_search_request.rb +30 -5
- data/lib/vericred_client/models/medicare_advantage_plan_search_response.rb +31 -6
- data/lib/vericred_client/models/medicare_advantage_plan_show_response.rb +30 -5
- data/lib/vericred_client/models/medicare_advantage_plan_update.rb +30 -5
- data/lib/vericred_client/models/medicare_advantage_plan_update_request.rb +30 -5
- data/lib/vericred_client/models/member_create.rb +30 -5
- data/lib/vericred_client/models/member_rate_show.rb +30 -5
- data/lib/vericred_client/models/member_rate_show_request.rb +30 -5
- data/lib/vericred_client/models/member_rates_show_response.rb +30 -5
- data/lib/vericred_client/models/member_show.rb +30 -5
- data/lib/vericred_client/models/members_create_request.rb +31 -16
- data/lib/vericred_client/models/members_create_response.rb +30 -5
- data/lib/vericred_client/models/members_show_response.rb +30 -5
- data/lib/vericred_client/models/meta.rb +30 -5
- data/lib/vericred_client/models/meta_plan_search_response.rb +30 -5
- data/lib/vericred_client/models/network.rb +30 -5
- data/lib/vericred_client/models/network_comparison.rb +30 -5
- data/lib/vericred_client/models/network_comparison_request.rb +30 -5
- data/lib/vericred_client/models/network_comparison_response.rb +30 -5
- data/lib/vericred_client/models/network_details.rb +30 -5
- data/lib/vericred_client/models/network_details_response.rb +30 -5
- data/lib/vericred_client/models/network_disruption_analysis.rb +30 -5
- data/lib/vericred_client/models/network_disruption_analysis_request.rb +30 -5
- data/lib/vericred_client/models/network_disruption_analysis_response.rb +30 -5
- data/lib/vericred_client/models/network_search.rb +30 -5
- data/lib/vericred_client/models/network_search_response.rb +30 -5
- data/lib/vericred_client/models/network_size.rb +30 -5
- data/lib/vericred_client/models/notification_subscription.rb +30 -5
- data/lib/vericred_client/models/notification_subscription_response.rb +30 -5
- data/lib/vericred_client/models/plan.rb +31 -50
- data/lib/vericred_client/models/plan_county.rb +30 -5
- data/lib/vericred_client/models/plan_county_bulk.rb +30 -5
- data/lib/vericred_client/models/plan_deleted.rb +30 -5
- data/lib/vericred_client/models/plan_identifier.rb +30 -5
- data/lib/vericred_client/models/plan_medicare.rb +31 -50
- data/lib/vericred_client/models/plan_medicare_bulk.rb +31 -50
- data/lib/vericred_client/models/plan_network.rb +30 -5
- data/lib/vericred_client/models/plan_pricing_medicare.rb +30 -5
- data/lib/vericred_client/models/plan_search_response.rb +30 -5
- data/lib/vericred_client/models/plan_show_response.rb +30 -5
- data/lib/vericred_client/models/plans_bulk_aca2018.rb +30 -5
- data/lib/vericred_client/models/plans_bulk_aca_pre2018.rb +30 -5
- data/lib/vericred_client/models/plans_bulk_base.rb +30 -5
- data/lib/vericred_client/models/plans_bulk_dental.rb +30 -5
- data/lib/vericred_client/models/{request_plan_find.rb → plans_bulk_search_request.rb} +54 -127
- data/lib/vericred_client/models/plans_bulk_search_response.rb +1197 -0
- data/lib/vericred_client/models/plans_bulk_vision.rb +30 -5
- data/lib/vericred_client/models/premiums.rb +1215 -0
- data/lib/vericred_client/models/provider.rb +30 -5
- data/lib/vericred_client/models/provider_details.rb +43 -6
- data/lib/vericred_client/models/provider_geocode.rb +30 -5
- data/lib/vericred_client/models/provider_network_event_notification.rb +30 -5
- data/lib/vericred_client/models/provider_network_specialty.rb +30 -5
- data/lib/vericred_client/models/provider_networks.rb +45 -10
- data/lib/vericred_client/models/provider_networks_address.rb +1257 -0
- data/lib/vericred_client/models/provider_plan_network_response.rb +1195 -0
- data/lib/vericred_client/models/provider_plan_response.rb +56 -9
- data/lib/vericred_client/models/provider_plans.rb +30 -5
- data/lib/vericred_client/models/provider_plans_request.rb +30 -5
- data/lib/vericred_client/models/provider_show_response.rb +30 -5
- data/lib/vericred_client/models/providers_geocode_response.rb +30 -5
- data/lib/vericred_client/models/providers_search_response.rb +30 -5
- data/lib/vericred_client/models/quote_create.rb +30 -5
- data/lib/vericred_client/models/quote_create_request.rb +30 -5
- data/lib/vericred_client/models/quote_create_response.rb +30 -5
- data/lib/vericred_client/models/quote_show.rb +30 -5
- data/lib/vericred_client/models/quote_show_response.rb +30 -5
- data/lib/vericred_client/models/rate_request.rb +30 -5
- data/lib/vericred_client/models/rate_search.rb +30 -5
- data/lib/vericred_client/models/rate_show.rb +44 -9
- data/lib/vericred_client/models/rate_show_request.rb +30 -5
- data/lib/vericred_client/models/rates_show_response.rb +30 -5
- data/lib/vericred_client/models/rating_area.rb +30 -5
- data/lib/vericred_client/models/request_plan_find_applicant.rb +30 -5
- data/lib/vericred_client/models/request_plan_find_drug_package.rb +30 -5
- data/lib/vericred_client/models/request_plan_find_provider.rb +30 -5
- data/lib/vericred_client/models/request_provider_notification_subscription.rb +30 -5
- data/lib/vericred_client/models/request_providers_search.rb +30 -5
- data/lib/vericred_client/models/request_rates_search.rb +30 -5
- data/lib/vericred_client/models/response_rates_search.rb +30 -5
- data/lib/vericred_client/models/rx_cui_identifier.rb +30 -5
- data/lib/vericred_client/models/rx_cui_identifier_search_response.rb +30 -5
- data/lib/vericred_client/models/service_area.rb +30 -5
- data/lib/vericred_client/models/service_area_update.rb +1237 -0
- data/lib/vericred_client/models/service_area_zip_county.rb +30 -5
- data/lib/vericred_client/models/service_area_zip_county_update.rb +1195 -0
- data/lib/vericred_client/models/specialty_search_response.rb +30 -5
- data/lib/vericred_client/models/specialty_show.rb +30 -5
- data/lib/vericred_client/models/state.rb +30 -5
- data/lib/vericred_client/models/state_network_size_request.rb +30 -5
- data/lib/vericred_client/models/state_network_size_response.rb +30 -5
- data/lib/vericred_client/models/supplemental_options.rb +30 -5
- data/lib/vericred_client/models/supplemental_options_update.rb +30 -5
- data/lib/vericred_client/models/three_tier_composite.rb +1215 -0
- data/lib/vericred_client/models/two_tier_composite.rb +1205 -0
- data/lib/vericred_client/models/v7_network_comparison_response.rb +30 -5
- data/lib/vericred_client/models/v7_response_providers_provider_details.rb +43 -6
- data/lib/vericred_client/models/vision_plan.rb +30 -5
- data/lib/vericred_client/models/vision_plan_benefits.rb +30 -5
- data/lib/vericred_client/models/vision_plan_search_applicant.rb +30 -5
- data/lib/vericred_client/models/vision_plan_search_request.rb +30 -5
- data/lib/vericred_client/models/vision_plan_search_response.rb +30 -5
- data/lib/vericred_client/models/vision_plan_show_response.rb +30 -5
- data/lib/vericred_client/models/vision_plan_update.rb +44 -9
- data/lib/vericred_client/models/vision_plan_update_request.rb +30 -5
- data/lib/vericred_client/models/zip_code.rb +30 -5
- data/lib/vericred_client/models/zip_counties_response.rb +30 -5
- data/lib/vericred_client/models/zip_county.rb +30 -5
- data/lib/vericred_client/models/zip_county_bulk.rb +30 -5
- data/lib/vericred_client/models/zip_county_response.rb +30 -5
- data/lib/vericred_client/version.rb +31 -6
- data/spec/api/bulk_plans_api_spec.rb +1043 -0
- data/spec/api/carrier_groups_api_spec.rb +30 -5
- data/spec/api/carriers_api_spec.rb +30 -5
- data/spec/api/dental_plans_api_spec.rb +30 -5
- data/spec/api/drugs_api_spec.rb +30 -5
- data/spec/api/embargoes_api_spec.rb +30 -5
- data/spec/api/formularies_api_spec.rb +43 -5
- data/spec/api/issuers_api_spec.rb +30 -5
- data/spec/api/major_medical_plans_api_spec.rb +33 -8
- data/spec/api/medical_plans_api_spec.rb +55 -5
- data/spec/api/medicare_advantage_plans_api_spec.rb +30 -5
- data/spec/api/network_sizes_api_spec.rb +30 -5
- data/spec/api/networks_api_spec.rb +30 -5
- data/spec/api/plans_api_spec.rb +30 -5
- data/spec/api/providers_api_spec.rb +32 -7
- data/spec/api/quoting_api_spec.rb +36 -11
- data/spec/api/rates_api_spec.rb +30 -5
- data/spec/api/{carrier_verification_dental_plans_api_spec.rb → service_areas_api_spec.rb} +43 -17
- data/spec/api/specialties_api_spec.rb +30 -5
- data/spec/api/vision_plans_api_spec.rb +30 -5
- data/spec/api/zip_counties_api_spec.rb +30 -5
- data/spec/api_client_spec.rb +30 -5
- data/spec/configuration_spec.rb +30 -5
- data/spec/models/aca_plan2018_search_response_spec.rb +30 -5
- data/spec/models/aca_plan2018_search_result_spec.rb +66 -5
- data/spec/models/aca_plan2018_search_spec.rb +1614 -0
- data/spec/models/aca_plan2018_show_response_spec.rb +30 -5
- data/spec/models/aca_plan2018_spec.rb +60 -29
- data/spec/models/aca_plan_pre2018_search_response_spec.rb +30 -5
- data/spec/models/aca_plan_pre2018_search_result_spec.rb +30 -5
- data/spec/models/aca_plan_pre2018_search_spec.rb +1572 -0
- data/spec/models/aca_plan_pre2018_show_response_spec.rb +30 -5
- data/spec/models/aca_plan_pre2018_spec.rb +30 -35
- data/spec/models/aca_plan_spec.rb +30 -35
- data/spec/models/address_spec.rb +30 -5
- data/spec/models/age_banded_spec.rb +1050 -0
- data/spec/models/ancillary_plan_identifier_spec.rb +30 -5
- data/spec/models/base_plan_search_response_spec.rb +30 -5
- data/spec/models/base_spec.rb +30 -5
- data/spec/models/carrier_group_request_spec.rb +30 -5
- data/spec/models/carrier_request_spec.rb +30 -5
- data/spec/models/carrier_spec.rb +30 -5
- data/spec/models/carrier_subsidiary_spec.rb +30 -5
- data/spec/models/county_bulk_spec.rb +30 -5
- data/spec/models/county_spec.rb +30 -5
- data/spec/models/dental_plan_benefits_spec.rb +30 -5
- data/spec/models/dental_plan_search_applicant_spec.rb +30 -5
- data/spec/models/dental_plan_search_request_spec.rb +30 -5
- data/spec/models/dental_plan_search_response_spec.rb +30 -5
- data/spec/{api/provider_notification_subscriptions_api_spec.rb → models/dental_plan_search_spec.rb} +136 -38
- data/spec/models/dental_plan_show_response_spec.rb +30 -5
- data/spec/models/dental_plan_spec.rb +30 -29
- data/spec/models/dental_plan_update_request_spec.rb +30 -5
- data/spec/models/dental_plan_update_spec.rb +42 -5
- data/spec/models/dependent_create_request_spec.rb +30 -5
- data/spec/models/dependent_create_spec.rb +30 -5
- data/spec/models/dependent_show_spec.rb +30 -5
- data/spec/models/drug_coverage_base_spec.rb +30 -5
- data/spec/models/drug_coverage_response_spec.rb +30 -5
- data/spec/models/drug_coverage_spec.rb +30 -5
- data/spec/models/drug_details_spec.rb +30 -5
- data/spec/models/drug_package_spec.rb +30 -5
- data/spec/models/drug_search_drug_package_spec.rb +30 -5
- data/spec/models/drug_search_request_spec.rb +30 -5
- data/spec/models/drug_search_response_spec.rb +30 -5
- data/spec/models/drug_spec.rb +30 -5
- data/spec/models/embargo_request_spec.rb +30 -5
- data/spec/models/formulary_drug_coverage_spec.rb +30 -5
- data/spec/models/formulary_drug_package_response_spec.rb +30 -5
- data/spec/models/formulary_response_spec.rb +30 -5
- data/spec/models/formulary_spec.rb +30 -5
- data/spec/models/four_tier_composite_spec.rb +1062 -0
- data/spec/models/group_create_request_spec.rb +30 -5
- data/spec/models/group_create_response_spec.rb +30 -5
- data/spec/models/group_create_spec.rb +30 -5
- data/spec/models/group_show_response_spec.rb +30 -5
- data/spec/models/group_show_spec.rb +30 -5
- data/spec/models/group_update_request_spec.rb +30 -5
- data/spec/models/group_update_spec.rb +30 -5
- data/spec/models/issuer_request_spec.rb +30 -5
- data/spec/models/location_create_spec.rb +30 -5
- data/spec/models/location_show_spec.rb +30 -5
- data/spec/models/location_update_spec.rb +30 -5
- data/spec/models/medical_plan_benefits_spec.rb +42 -5
- data/spec/models/{request_plan_find_carrier_verification_spec.rb → medical_plan_search_request_spec.rb} +37 -24
- data/spec/models/medical_plan_update_request_spec.rb +30 -5
- data/spec/models/medical_plan_update_spec.rb +64 -9
- data/spec/models/medicare_advantage_plan_benefits_spec.rb +30 -5
- data/spec/models/medicare_advantage_plan_search_request_spec.rb +30 -5
- data/spec/models/medicare_advantage_plan_search_response_spec.rb +30 -5
- data/spec/models/medicare_advantage_plan_search_spec.rb +1170 -0
- data/spec/models/medicare_advantage_plan_show_response_spec.rb +30 -5
- data/spec/models/medicare_advantage_plan_spec.rb +30 -17
- data/spec/models/medicare_advantage_plan_update_request_spec.rb +30 -5
- data/spec/models/medicare_advantage_plan_update_spec.rb +30 -5
- data/spec/models/member_create_spec.rb +30 -5
- data/spec/models/member_rate_show_request_spec.rb +30 -5
- data/spec/models/member_rate_show_spec.rb +30 -5
- data/spec/models/member_rates_show_response_spec.rb +30 -5
- data/spec/models/member_show_spec.rb +30 -5
- data/spec/models/members_create_request_spec.rb +30 -11
- data/spec/models/members_create_response_spec.rb +30 -5
- data/spec/models/members_show_response_spec.rb +30 -5
- data/spec/models/meta_plan_search_response_spec.rb +30 -5
- data/spec/models/meta_spec.rb +30 -5
- data/spec/models/network_comparison_request_spec.rb +30 -5
- data/spec/models/network_comparison_response_spec.rb +30 -5
- data/spec/models/network_comparison_spec.rb +30 -5
- data/spec/models/network_details_response_spec.rb +30 -5
- data/spec/models/network_details_spec.rb +30 -5
- data/spec/models/network_disruption_analysis_request_spec.rb +30 -5
- data/spec/models/network_disruption_analysis_response_spec.rb +30 -5
- data/spec/models/network_disruption_analysis_spec.rb +30 -5
- data/spec/models/network_search_response_spec.rb +30 -5
- data/spec/models/network_search_spec.rb +30 -5
- data/spec/models/network_size_spec.rb +30 -5
- data/spec/models/network_spec.rb +30 -5
- data/spec/models/notification_subscription_response_spec.rb +30 -5
- data/spec/models/notification_subscription_spec.rb +30 -5
- data/spec/models/plan_county_bulk_spec.rb +30 -5
- data/spec/models/plan_county_spec.rb +30 -5
- data/spec/models/plan_deleted_spec.rb +30 -5
- data/spec/models/plan_identifier_spec.rb +30 -5
- data/spec/models/plan_medicare_bulk_spec.rb +30 -29
- data/spec/models/plan_medicare_spec.rb +30 -29
- data/spec/models/plan_network_spec.rb +30 -5
- data/spec/models/plan_pricing_medicare_spec.rb +30 -5
- data/spec/models/plan_search_response_spec.rb +30 -5
- data/spec/models/plan_show_response_spec.rb +30 -5
- data/spec/models/plan_spec.rb +30 -29
- data/spec/models/plans_bulk_aca2018_spec.rb +30 -5
- data/spec/models/plans_bulk_aca_pre2018_spec.rb +30 -5
- data/spec/models/plans_bulk_base_spec.rb +30 -5
- data/spec/models/plans_bulk_dental_spec.rb +30 -5
- data/spec/models/plans_bulk_search_request_spec.rb +1068 -0
- data/spec/{api/carrier_verification_plans_api_spec.rb → models/plans_bulk_search_response_spec.rb} +46 -20
- data/spec/models/plans_bulk_vision_spec.rb +30 -5
- data/spec/models/premiums_spec.rb +1056 -0
- data/spec/models/provider_details_spec.rb +36 -5
- data/spec/models/provider_geocode_spec.rb +30 -5
- data/spec/models/provider_network_event_notification_spec.rb +30 -5
- data/spec/models/provider_network_specialty_spec.rb +30 -5
- data/spec/models/{request_plan_find_spec.rb → provider_networks_address_spec.rb} +43 -60
- data/spec/models/provider_networks_spec.rb +36 -5
- data/spec/{api/carrier_verification_vision_plans_api_spec.rb → models/provider_plan_network_response_spec.rb} +46 -20
- data/spec/models/provider_plan_response_spec.rb +42 -5
- data/spec/models/provider_plans_request_spec.rb +30 -5
- data/spec/models/provider_plans_spec.rb +30 -5
- data/spec/models/provider_show_response_spec.rb +30 -5
- data/spec/models/provider_spec.rb +30 -5
- data/spec/models/providers_geocode_response_spec.rb +30 -5
- data/spec/models/providers_search_response_spec.rb +30 -5
- data/spec/models/quote_create_request_spec.rb +30 -5
- data/spec/models/quote_create_response_spec.rb +30 -5
- data/spec/models/quote_create_spec.rb +30 -5
- data/spec/models/quote_show_response_spec.rb +30 -5
- data/spec/models/quote_show_spec.rb +30 -5
- data/spec/models/rate_request_spec.rb +30 -5
- data/spec/models/rate_search_spec.rb +30 -5
- data/spec/models/rate_show_request_spec.rb +30 -5
- data/spec/models/rate_show_spec.rb +36 -5
- data/spec/models/rates_show_response_spec.rb +30 -5
- data/spec/models/rating_area_spec.rb +30 -5
- data/spec/models/request_plan_find_applicant_spec.rb +30 -5
- data/spec/models/request_plan_find_drug_package_spec.rb +30 -5
- data/spec/models/request_plan_find_provider_spec.rb +30 -5
- data/spec/models/request_provider_notification_subscription_spec.rb +30 -5
- data/spec/models/request_providers_search_spec.rb +30 -5
- data/spec/models/request_rates_search_spec.rb +30 -5
- data/spec/models/response_rates_search_spec.rb +30 -5
- data/spec/models/rx_cui_identifier_search_response_spec.rb +30 -5
- data/spec/models/rx_cui_identifier_spec.rb +30 -5
- data/spec/models/service_area_spec.rb +30 -5
- data/spec/models/service_area_update_spec.rb +1068 -0
- data/spec/models/service_area_zip_county_spec.rb +30 -5
- data/spec/{api/carrier_verification_medical_plans_api_spec.rb → models/service_area_zip_county_update_spec.rb} +46 -20
- data/spec/models/specialty_search_response_spec.rb +30 -5
- data/spec/models/specialty_show_spec.rb +30 -5
- data/spec/models/state_network_size_request_spec.rb +30 -5
- data/spec/models/state_network_size_response_spec.rb +30 -5
- data/spec/models/state_spec.rb +30 -5
- data/spec/models/supplemental_options_spec.rb +30 -5
- data/spec/models/supplemental_options_update_spec.rb +30 -5
- data/spec/models/three_tier_composite_spec.rb +1056 -0
- data/spec/models/two_tier_composite_spec.rb +1050 -0
- data/spec/models/v7_network_comparison_response_spec.rb +30 -5
- data/spec/models/v7_response_providers_provider_details_spec.rb +36 -5
- data/spec/models/vision_plan_benefits_spec.rb +30 -5
- data/spec/models/vision_plan_search_applicant_spec.rb +30 -5
- data/spec/models/vision_plan_search_request_spec.rb +30 -5
- data/spec/models/vision_plan_search_response_spec.rb +30 -5
- data/spec/models/vision_plan_show_response_spec.rb +30 -5
- data/spec/models/vision_plan_spec.rb +30 -5
- data/spec/models/vision_plan_update_request_spec.rb +30 -5
- data/spec/models/vision_plan_update_spec.rb +36 -5
- data/spec/models/zip_code_spec.rb +30 -5
- data/spec/models/zip_counties_response_spec.rb +30 -5
- data/spec/models/zip_county_bulk_spec.rb +30 -5
- data/spec/models/zip_county_response_spec.rb +30 -5
- data/spec/models/zip_county_spec.rb +30 -5
- data/spec/spec_helper.rb +30 -5
- data/vericred_client.gemspec +30 -5
- metadata +74 -34
- data/docs/CarrierVerificationDentalPlansApi.md +0 -63
- data/docs/CarrierVerificationMedicalPlansApi.md +0 -63
- data/docs/CarrierVerificationPlansApi.md +0 -63
- data/docs/CarrierVerificationVisionPlansApi.md +0 -63
- data/docs/DrugPackagesApi.md +0 -66
- data/docs/ProviderNotificationSubscriptionsApi.md +0 -173
- data/docs/RequestPlanFindCarrierVerification.md +0 -23
- data/lib/vericred_client/api/carrier_verification_plans_api.rb +0 -1051
- data/lib/vericred_client/api/carrier_verification_vision_plans_api.rb +0 -1051
- data/lib/vericred_client/api/drug_packages_api.rb +0 -1055
- data/spec/api/drug_packages_api_spec.rb +0 -1019
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cc109bc46b6ff010075fe270b4d30fb171c896ac
|
|
4
|
+
data.tar.gz: 74895abaf1c9ca31950f875d9b3a8c29cbcd2cd0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 430206019bf86ae3bc7a3581b6f9f48fdb1e420248d1da7689e71544c3e5287c8c045c309074cad6f6bef9cd3362f3a2a674156a6b3678f4048d262957e0034b
|
|
7
|
+
data.tar.gz: 1891f000983ba36649e95ba0445a46209dd1d048fbb81925915b81d2954f53075ec66cda53b115493b65fc8cfdb81b3d3952713e9d166e6f5bdd7946c286991c
|
data/README.md
CHANGED
|
@@ -778,11 +778,36 @@ Response
|
|
|
778
778
|
"rates": [
|
|
779
779
|
...
|
|
780
780
|
{
|
|
781
|
+
"id": "123abc",
|
|
781
782
|
"plan_id": "12345NY6789012",
|
|
782
|
-
"total_premium": 2800.
|
|
783
|
-
"member_premium": 1000.
|
|
784
|
-
"dependent_premium": 1800.
|
|
785
|
-
"
|
|
783
|
+
"total_premium": "2800.00",
|
|
784
|
+
"member_premium": "1000.00",
|
|
785
|
+
"dependent_premium": "1800.00",
|
|
786
|
+
"premiums": {
|
|
787
|
+
"age_banded": {
|
|
788
|
+
"total_member": "1000.00",
|
|
789
|
+
"total_dependent": "1800.00",
|
|
790
|
+
"total": "2800.00"
|
|
791
|
+
},
|
|
792
|
+
"2_tier_composite": {
|
|
793
|
+
"employee_only": "200.00",
|
|
794
|
+
"employee_plus_family": "400.00",
|
|
795
|
+
"total": "2800.00"
|
|
796
|
+
},
|
|
797
|
+
"3_tier_composite": {
|
|
798
|
+
"employee_only": "200.00",
|
|
799
|
+
"employee_plus_one": "250.00",
|
|
800
|
+
"employee_plus_family": "330.00",
|
|
801
|
+
"total": "2800.00"
|
|
802
|
+
},
|
|
803
|
+
"4_tier_composite": {
|
|
804
|
+
"employee_only": "200.00",
|
|
805
|
+
"employee_plus_child": "220.00",
|
|
806
|
+
"employee_plus_spouse": "250.00",
|
|
807
|
+
"employee_plus_family": "330.00",
|
|
808
|
+
"total": "2800.00"
|
|
809
|
+
}
|
|
810
|
+
}
|
|
786
811
|
}
|
|
787
812
|
...
|
|
788
813
|
]
|
|
@@ -830,7 +855,7 @@ Response
|
|
|
830
855
|
"member_external_id": "externally-supplied-id",
|
|
831
856
|
"member_premium": 500.0,
|
|
832
857
|
"dependent_premium": 600.0,
|
|
833
|
-
"total_premium": 1100.0
|
|
858
|
+
"total_premium": 1100.0
|
|
834
859
|
}
|
|
835
860
|
...
|
|
836
861
|
]
|
|
@@ -967,7 +992,7 @@ This is useful for large group data or when you are not dealing with `Plan`s dir
|
|
|
967
992
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
968
993
|
|
|
969
994
|
- API version: 1.0.0
|
|
970
|
-
- Package version: 0.0.
|
|
995
|
+
- Package version: 0.0.33
|
|
971
996
|
- Build package: class io.swagger.codegen.languages.RubyClientCodegen
|
|
972
997
|
|
|
973
998
|
## Installation
|
|
@@ -983,15 +1008,15 @@ gem build vericred_client.gemspec
|
|
|
983
1008
|
Then either install the gem locally:
|
|
984
1009
|
|
|
985
1010
|
```shell
|
|
986
|
-
gem install ./vericred_client-0.0.
|
|
1011
|
+
gem install ./vericred_client-0.0.33.gem
|
|
987
1012
|
```
|
|
988
|
-
(for development, run `gem install --dev ./vericred_client-0.0.
|
|
1013
|
+
(for development, run `gem install --dev ./vericred_client-0.0.33.gem` to install the development dependencies)
|
|
989
1014
|
|
|
990
1015
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
991
1016
|
|
|
992
1017
|
Finally add this to the Gemfile:
|
|
993
1018
|
|
|
994
|
-
gem 'vericred_client', '~> 0.0.
|
|
1019
|
+
gem 'vericred_client', '~> 0.0.33'
|
|
995
1020
|
|
|
996
1021
|
### Install from Git
|
|
997
1022
|
|
|
@@ -1022,16 +1047,17 @@ VericredClient.configure do |config|
|
|
|
1022
1047
|
#config.api_key_prefix['Vericred-Api-Key'] = 'Bearer'
|
|
1023
1048
|
end
|
|
1024
1049
|
|
|
1025
|
-
api_instance = VericredClient::
|
|
1050
|
+
api_instance = VericredClient::BulkPlansApi.new
|
|
1026
1051
|
|
|
1027
|
-
|
|
1052
|
+
body = VericredClient::PlansBulkSearchRequest.new # PlansBulkSearchRequest |
|
|
1028
1053
|
|
|
1029
1054
|
|
|
1030
1055
|
begin
|
|
1031
|
-
#
|
|
1032
|
-
api_instance.
|
|
1056
|
+
#Plans in Bulk
|
|
1057
|
+
result = api_instance.find_bulk_plans(body)
|
|
1058
|
+
p result
|
|
1033
1059
|
rescue VericredClient::ApiError => e
|
|
1034
|
-
puts "Exception when calling
|
|
1060
|
+
puts "Exception when calling BulkPlansApi->find_bulk_plans: #{e}"
|
|
1035
1061
|
end
|
|
1036
1062
|
|
|
1037
1063
|
```
|
|
@@ -1042,12 +1068,9 @@ All URIs are relative to *https://api.vericred.com/*
|
|
|
1042
1068
|
|
|
1043
1069
|
Class | Method | HTTP request | Description
|
|
1044
1070
|
------------ | ------------- | ------------- | -------------
|
|
1071
|
+
*VericredClient::BulkPlansApi* | [**find_bulk_plans**](docs/BulkPlansApi.md#find_bulk_plans) | **POST** /plans/bulk | Plans in Bulk
|
|
1045
1072
|
*VericredClient::CarrierGroupsApi* | [**delete_carrier_group**](docs/CarrierGroupsApi.md#delete_carrier_group) | **DELETE** /carrier_groups/{vericred_id} | Delete a CarrierGroup.
|
|
1046
1073
|
*VericredClient::CarrierGroupsApi* | [**put_carrier_group**](docs/CarrierGroupsApi.md#put_carrier_group) | **PUT** /carrier_groups/{vericred_id} | Create/update a CarrierGroup
|
|
1047
|
-
*VericredClient::CarrierVerificationDentalPlansApi* | [**find_carrier_verification_dental_plans**](docs/CarrierVerificationDentalPlansApi.md#find_carrier_verification_dental_plans) | **POST** /plans/cvt/Dental/search | Find Carrier Verification Dental Plans
|
|
1048
|
-
*VericredClient::CarrierVerificationMedicalPlansApi* | [**find_carrier_verification_medical_plans**](docs/CarrierVerificationMedicalPlansApi.md#find_carrier_verification_medical_plans) | **POST** /plans/cvt/medical/search | Find Carrier Verification Medical Plans
|
|
1049
|
-
*VericredClient::CarrierVerificationPlansApi* | [**find_carrier_verification_plans**](docs/CarrierVerificationPlansApi.md#find_carrier_verification_plans) | **POST** /plans/cvt/search | Find Carrier Verification Plans
|
|
1050
|
-
*VericredClient::CarrierVerificationVisionPlansApi* | [**find_carrier_verification_vision_plans**](docs/CarrierVerificationVisionPlansApi.md#find_carrier_verification_vision_plans) | **POST** /plans/cvt/Vision/search | Find Carrier Verification Vision Plans
|
|
1051
1074
|
*VericredClient::CarriersApi* | [**delete_carrier**](docs/CarriersApi.md#delete_carrier) | **DELETE** /carriers/{vericred_id} | Delete a Carrier.
|
|
1052
1075
|
*VericredClient::CarriersApi* | [**put_carrier**](docs/CarriersApi.md#put_carrier) | **PUT** /carriers/{vericred_id} | Create/update a Carrier
|
|
1053
1076
|
*VericredClient::DentalPlansApi* | [**delete_dental_plan**](docs/DentalPlansApi.md#delete_dental_plan) | **DELETE** /plans/dental/{vericred_id} | Delete a Dental Plan.
|
|
@@ -1055,17 +1078,19 @@ Class | Method | HTTP request | Description
|
|
|
1055
1078
|
*VericredClient::DentalPlansApi* | [**put_dental_plan**](docs/DentalPlansApi.md#put_dental_plan) | **PUT** /plans/dental/{vericred_id} | Create/update a Dental Plan
|
|
1056
1079
|
*VericredClient::DentalPlansApi* | [**show_dental_plan**](docs/DentalPlansApi.md#show_dental_plan) | **GET** /plans/dental/{id} | Show Plan
|
|
1057
1080
|
*VericredClient::DentalPlansApi* | [**show_dental_plan_0**](docs/DentalPlansApi.md#show_dental_plan_0) | **GET** /plans/dental/{vericred_id} | Show Plan
|
|
1058
|
-
*VericredClient::DrugPackagesApi* | [**show_formulary_drug_package_coverage**](docs/DrugPackagesApi.md#show_formulary_drug_package_coverage) | **GET** /formularies/{formulary_id}/drug_packages/{ndc_package_code} | Formulary Drug Package Search
|
|
1059
1081
|
*VericredClient::DrugsApi* | [**get_drug_coverages**](docs/DrugsApi.md#get_drug_coverages) | **GET** /drugs/{id}/coverages | Drug Coverage Search
|
|
1060
1082
|
*VericredClient::DrugsApi* | [**list_drugs**](docs/DrugsApi.md#list_drugs) | **GET** /drugs | Drug Search
|
|
1061
1083
|
*VericredClient::EmbargoesApi* | [**delete_embargo**](docs/EmbargoesApi.md#delete_embargo) | **DELETE** /embargoes/{vericred_id} | Delete an Embargo.
|
|
1062
1084
|
*VericredClient::EmbargoesApi* | [**put_embargo**](docs/EmbargoesApi.md#put_embargo) | **PUT** /embargoes/{vericred_id} | Create/update an Embargo
|
|
1063
1085
|
*VericredClient::FormulariesApi* | [**list_formularies**](docs/FormulariesApi.md#list_formularies) | **GET** /formularies | Formulary Search
|
|
1086
|
+
*VericredClient::FormulariesApi* | [**show_formulary_drug_package_coverage**](docs/FormulariesApi.md#show_formulary_drug_package_coverage) | **GET** /formularies/{formulary_id}/drug_packages/{ndc_package_code} | Formulary Drug Package Search
|
|
1064
1087
|
*VericredClient::IssuersApi* | [**delete_issuer**](docs/IssuersApi.md#delete_issuer) | **DELETE** /issuers/{vericred_id} | Delete an Issuer.
|
|
1065
1088
|
*VericredClient::IssuersApi* | [**put_issuer**](docs/IssuersApi.md#put_issuer) | **PUT** /issuers/{vericred_id} | Create/update an Issuer
|
|
1066
1089
|
*VericredClient::MajorMedicalPlansApi* | [**find_major_medical_plans**](docs/MajorMedicalPlansApi.md#find_major_medical_plans) | **POST** /plans/medical/search | Search Plans
|
|
1067
|
-
*VericredClient::MajorMedicalPlansApi* | [**
|
|
1090
|
+
*VericredClient::MajorMedicalPlansApi* | [**show_medical_plan**](docs/MajorMedicalPlansApi.md#show_medical_plan) | **GET** /plans/medical/{id} | Show Plan
|
|
1091
|
+
*VericredClient::MedicalPlansApi* | [**find_major_medical_plans**](docs/MedicalPlansApi.md#find_major_medical_plans) | **POST** /plans/medical/search | Search Plans
|
|
1068
1092
|
*VericredClient::MedicalPlansApi* | [**put_medical_plan**](docs/MedicalPlansApi.md#put_medical_plan) | **PUT** /plans/medical/{vericred_id} | Create/update a Medical Plan
|
|
1093
|
+
*VericredClient::MedicalPlansApi* | [**show_medical_plan**](docs/MedicalPlansApi.md#show_medical_plan) | **GET** /plans/medical/{id} | Show Plan
|
|
1069
1094
|
*VericredClient::MedicareAdvantagePlansApi* | [**find_medicare_advantage_plans**](docs/MedicareAdvantagePlansApi.md#find_medicare_advantage_plans) | **POST** /plans/medadv/search | Search Plans
|
|
1070
1095
|
*VericredClient::MedicareAdvantagePlansApi* | [**put_medicare_advantage_plan**](docs/MedicareAdvantagePlansApi.md#put_medicare_advantage_plan) | **PUT** /plans/medadv/{vericred_id} | Create/update a Medicare Advantage Plan
|
|
1071
1096
|
*VericredClient::MedicareAdvantagePlansApi* | [**show_med_adv_plan**](docs/MedicareAdvantagePlansApi.md#show_med_adv_plan) | **GET** /plans/medadv/{id} | Show Plan
|
|
@@ -1076,9 +1101,6 @@ Class | Method | HTTP request | Description
|
|
|
1076
1101
|
*VericredClient::NetworksApi* | [**list_networks**](docs/NetworksApi.md#list_networks) | **GET** /networks | Network Search
|
|
1077
1102
|
*VericredClient::NetworksApi* | [**show_network**](docs/NetworksApi.md#show_network) | **GET** /networks/{id} | Display a Network
|
|
1078
1103
|
*VericredClient::PlansApi* | [**delete_plan**](docs/PlansApi.md#delete_plan) | **DELETE** /plans/{hios}/{year} | Delete a plan
|
|
1079
|
-
*VericredClient::ProviderNotificationSubscriptionsApi* | [**create_provider_notification_subscription**](docs/ProviderNotificationSubscriptionsApi.md#create_provider_notification_subscription) | **POST** /providers/subscription | Subscribe
|
|
1080
|
-
*VericredClient::ProviderNotificationSubscriptionsApi* | [**delete_provider_notification_subscription**](docs/ProviderNotificationSubscriptionsApi.md#delete_provider_notification_subscription) | **DELETE** /providers/subscription/{nonce} | Unsubscribe
|
|
1081
|
-
*VericredClient::ProviderNotificationSubscriptionsApi* | [**notify_provider_notification_subscription**](docs/ProviderNotificationSubscriptionsApi.md#notify_provider_notification_subscription) | **POST** /CALLBACK_URL | Webhook
|
|
1082
1104
|
*VericredClient::ProvidersApi* | [**delete_provider**](docs/ProvidersApi.md#delete_provider) | **DELETE** /providers/{npi} | Delete an NPI from a provider.
|
|
1083
1105
|
*VericredClient::ProvidersApi* | [**get_provider_plans**](docs/ProvidersApi.md#get_provider_plans) | **GET** /providers/{npi}/plans | Provider Plans
|
|
1084
1106
|
*VericredClient::ProvidersApi* | [**get_providers**](docs/ProvidersApi.md#get_providers) | **POST** /providers/search | Find Providers
|
|
@@ -1091,6 +1113,7 @@ Class | Method | HTTP request | Description
|
|
|
1091
1113
|
*VericredClient::QuotingApi* | [**update_group_members**](docs/QuotingApi.md#update_group_members) | **PUT** /groups/{id}/members | Create or Update Members
|
|
1092
1114
|
*VericredClient::RatesApi* | [**delete_rate**](docs/RatesApi.md#delete_rate) | **DELETE** /rates/{vericred_id} | Delete a Rate.
|
|
1093
1115
|
*VericredClient::RatesApi* | [**put_rate**](docs/RatesApi.md#put_rate) | **PUT** /rates/{vericred_id} | Create/update a Rate
|
|
1116
|
+
*VericredClient::ServiceAreasApi* | [**put_service_area**](docs/ServiceAreasApi.md#put_service_area) | **PUT** /service_areas/{vericred_id} | Create/update a ServiceArea
|
|
1094
1117
|
*VericredClient::SpecialtiesApi* | [**get_specialties**](docs/SpecialtiesApi.md#get_specialties) | **GET** /specialties | Specialty Search
|
|
1095
1118
|
*VericredClient::VisionPlansApi* | [**delete_vision_plan**](docs/VisionPlansApi.md#delete_vision_plan) | **DELETE** /plans/vision/{vericred_id} | Delete a Vision Plan.
|
|
1096
1119
|
*VericredClient::VisionPlansApi* | [**find_vision_plans**](docs/VisionPlansApi.md#find_vision_plans) | **POST** /plans/vision/search | Search Plans
|
|
@@ -1105,14 +1128,17 @@ Class | Method | HTTP request | Description
|
|
|
1105
1128
|
|
|
1106
1129
|
- [VericredClient::ACAPlan](docs/ACAPlan.md)
|
|
1107
1130
|
- [VericredClient::ACAPlan2018](docs/ACAPlan2018.md)
|
|
1131
|
+
- [VericredClient::ACAPlan2018Search](docs/ACAPlan2018Search.md)
|
|
1108
1132
|
- [VericredClient::ACAPlan2018SearchResponse](docs/ACAPlan2018SearchResponse.md)
|
|
1109
1133
|
- [VericredClient::ACAPlan2018SearchResult](docs/ACAPlan2018SearchResult.md)
|
|
1110
1134
|
- [VericredClient::ACAPlan2018ShowResponse](docs/ACAPlan2018ShowResponse.md)
|
|
1111
1135
|
- [VericredClient::ACAPlanPre2018](docs/ACAPlanPre2018.md)
|
|
1136
|
+
- [VericredClient::ACAPlanPre2018Search](docs/ACAPlanPre2018Search.md)
|
|
1112
1137
|
- [VericredClient::ACAPlanPre2018SearchResponse](docs/ACAPlanPre2018SearchResponse.md)
|
|
1113
1138
|
- [VericredClient::ACAPlanPre2018SearchResult](docs/ACAPlanPre2018SearchResult.md)
|
|
1114
1139
|
- [VericredClient::ACAPlanPre2018ShowResponse](docs/ACAPlanPre2018ShowResponse.md)
|
|
1115
1140
|
- [VericredClient::Address](docs/Address.md)
|
|
1141
|
+
- [VericredClient::AgeBanded](docs/AgeBanded.md)
|
|
1116
1142
|
- [VericredClient::AncillaryPlanIdentifier](docs/AncillaryPlanIdentifier.md)
|
|
1117
1143
|
- [VericredClient::Base](docs/Base.md)
|
|
1118
1144
|
- [VericredClient::BasePlanSearchResponse](docs/BasePlanSearchResponse.md)
|
|
@@ -1124,6 +1150,7 @@ Class | Method | HTTP request | Description
|
|
|
1124
1150
|
- [VericredClient::CountyBulk](docs/CountyBulk.md)
|
|
1125
1151
|
- [VericredClient::DentalPlan](docs/DentalPlan.md)
|
|
1126
1152
|
- [VericredClient::DentalPlanBenefits](docs/DentalPlanBenefits.md)
|
|
1153
|
+
- [VericredClient::DentalPlanSearch](docs/DentalPlanSearch.md)
|
|
1127
1154
|
- [VericredClient::DentalPlanSearchApplicant](docs/DentalPlanSearchApplicant.md)
|
|
1128
1155
|
- [VericredClient::DentalPlanSearchRequest](docs/DentalPlanSearchRequest.md)
|
|
1129
1156
|
- [VericredClient::DentalPlanSearchResponse](docs/DentalPlanSearchResponse.md)
|
|
@@ -1147,6 +1174,7 @@ Class | Method | HTTP request | Description
|
|
|
1147
1174
|
- [VericredClient::FormularyDrugCoverage](docs/FormularyDrugCoverage.md)
|
|
1148
1175
|
- [VericredClient::FormularyDrugPackageResponse](docs/FormularyDrugPackageResponse.md)
|
|
1149
1176
|
- [VericredClient::FormularyResponse](docs/FormularyResponse.md)
|
|
1177
|
+
- [VericredClient::FourTierComposite](docs/FourTierComposite.md)
|
|
1150
1178
|
- [VericredClient::GroupCreate](docs/GroupCreate.md)
|
|
1151
1179
|
- [VericredClient::GroupCreateRequest](docs/GroupCreateRequest.md)
|
|
1152
1180
|
- [VericredClient::GroupCreateResponse](docs/GroupCreateResponse.md)
|
|
@@ -1159,10 +1187,12 @@ Class | Method | HTTP request | Description
|
|
|
1159
1187
|
- [VericredClient::LocationShow](docs/LocationShow.md)
|
|
1160
1188
|
- [VericredClient::LocationUpdate](docs/LocationUpdate.md)
|
|
1161
1189
|
- [VericredClient::MedicalPlanBenefits](docs/MedicalPlanBenefits.md)
|
|
1190
|
+
- [VericredClient::MedicalPlanSearchRequest](docs/MedicalPlanSearchRequest.md)
|
|
1162
1191
|
- [VericredClient::MedicalPlanUpdate](docs/MedicalPlanUpdate.md)
|
|
1163
1192
|
- [VericredClient::MedicalPlanUpdateRequest](docs/MedicalPlanUpdateRequest.md)
|
|
1164
1193
|
- [VericredClient::MedicareAdvantagePlan](docs/MedicareAdvantagePlan.md)
|
|
1165
1194
|
- [VericredClient::MedicareAdvantagePlanBenefits](docs/MedicareAdvantagePlanBenefits.md)
|
|
1195
|
+
- [VericredClient::MedicareAdvantagePlanSearch](docs/MedicareAdvantagePlanSearch.md)
|
|
1166
1196
|
- [VericredClient::MedicareAdvantagePlanSearchRequest](docs/MedicareAdvantagePlanSearchRequest.md)
|
|
1167
1197
|
- [VericredClient::MedicareAdvantagePlanSearchResponse](docs/MedicareAdvantagePlanSearchResponse.md)
|
|
1168
1198
|
- [VericredClient::MedicareAdvantagePlanShowResponse](docs/MedicareAdvantagePlanShowResponse.md)
|
|
@@ -1207,13 +1237,18 @@ Class | Method | HTTP request | Description
|
|
|
1207
1237
|
- [VericredClient::PlansBulkACAPre2018](docs/PlansBulkACAPre2018.md)
|
|
1208
1238
|
- [VericredClient::PlansBulkBase](docs/PlansBulkBase.md)
|
|
1209
1239
|
- [VericredClient::PlansBulkDental](docs/PlansBulkDental.md)
|
|
1240
|
+
- [VericredClient::PlansBulkSearchRequest](docs/PlansBulkSearchRequest.md)
|
|
1241
|
+
- [VericredClient::PlansBulkSearchResponse](docs/PlansBulkSearchResponse.md)
|
|
1210
1242
|
- [VericredClient::PlansBulkVision](docs/PlansBulkVision.md)
|
|
1243
|
+
- [VericredClient::Premiums](docs/Premiums.md)
|
|
1211
1244
|
- [VericredClient::Provider](docs/Provider.md)
|
|
1212
1245
|
- [VericredClient::ProviderDetails](docs/ProviderDetails.md)
|
|
1213
1246
|
- [VericredClient::ProviderGeocode](docs/ProviderGeocode.md)
|
|
1214
1247
|
- [VericredClient::ProviderNetworkEventNotification](docs/ProviderNetworkEventNotification.md)
|
|
1215
1248
|
- [VericredClient::ProviderNetworkSpecialty](docs/ProviderNetworkSpecialty.md)
|
|
1216
1249
|
- [VericredClient::ProviderNetworks](docs/ProviderNetworks.md)
|
|
1250
|
+
- [VericredClient::ProviderNetworksAddress](docs/ProviderNetworksAddress.md)
|
|
1251
|
+
- [VericredClient::ProviderPlanNetworkResponse](docs/ProviderPlanNetworkResponse.md)
|
|
1217
1252
|
- [VericredClient::ProviderPlanResponse](docs/ProviderPlanResponse.md)
|
|
1218
1253
|
- [VericredClient::ProviderPlans](docs/ProviderPlans.md)
|
|
1219
1254
|
- [VericredClient::ProviderPlansRequest](docs/ProviderPlansRequest.md)
|
|
@@ -1231,9 +1266,7 @@ Class | Method | HTTP request | Description
|
|
|
1231
1266
|
- [VericredClient::RateShowRequest](docs/RateShowRequest.md)
|
|
1232
1267
|
- [VericredClient::RatesShowResponse](docs/RatesShowResponse.md)
|
|
1233
1268
|
- [VericredClient::RatingArea](docs/RatingArea.md)
|
|
1234
|
-
- [VericredClient::RequestPlanFind](docs/RequestPlanFind.md)
|
|
1235
1269
|
- [VericredClient::RequestPlanFindApplicant](docs/RequestPlanFindApplicant.md)
|
|
1236
|
-
- [VericredClient::RequestPlanFindCarrierVerification](docs/RequestPlanFindCarrierVerification.md)
|
|
1237
1270
|
- [VericredClient::RequestPlanFindDrugPackage](docs/RequestPlanFindDrugPackage.md)
|
|
1238
1271
|
- [VericredClient::RequestPlanFindProvider](docs/RequestPlanFindProvider.md)
|
|
1239
1272
|
- [VericredClient::RequestProviderNotificationSubscription](docs/RequestProviderNotificationSubscription.md)
|
|
@@ -1243,7 +1276,9 @@ Class | Method | HTTP request | Description
|
|
|
1243
1276
|
- [VericredClient::RxCuiIdentifier](docs/RxCuiIdentifier.md)
|
|
1244
1277
|
- [VericredClient::RxCuiIdentifierSearchResponse](docs/RxCuiIdentifierSearchResponse.md)
|
|
1245
1278
|
- [VericredClient::ServiceArea](docs/ServiceArea.md)
|
|
1279
|
+
- [VericredClient::ServiceAreaUpdate](docs/ServiceAreaUpdate.md)
|
|
1246
1280
|
- [VericredClient::ServiceAreaZipCounty](docs/ServiceAreaZipCounty.md)
|
|
1281
|
+
- [VericredClient::ServiceAreaZipCountyUpdate](docs/ServiceAreaZipCountyUpdate.md)
|
|
1247
1282
|
- [VericredClient::SpecialtySearchResponse](docs/SpecialtySearchResponse.md)
|
|
1248
1283
|
- [VericredClient::SpecialtyShow](docs/SpecialtyShow.md)
|
|
1249
1284
|
- [VericredClient::State](docs/State.md)
|
|
@@ -1251,6 +1286,8 @@ Class | Method | HTTP request | Description
|
|
|
1251
1286
|
- [VericredClient::StateNetworkSizeResponse](docs/StateNetworkSizeResponse.md)
|
|
1252
1287
|
- [VericredClient::SupplementalOptions](docs/SupplementalOptions.md)
|
|
1253
1288
|
- [VericredClient::SupplementalOptionsUpdate](docs/SupplementalOptionsUpdate.md)
|
|
1289
|
+
- [VericredClient::ThreeTierComposite](docs/ThreeTierComposite.md)
|
|
1290
|
+
- [VericredClient::TwoTierComposite](docs/TwoTierComposite.md)
|
|
1254
1291
|
- [VericredClient::V7NetworkComparisonResponse](docs/V7NetworkComparisonResponse.md)
|
|
1255
1292
|
- [VericredClient::V7ResponseProvidersProviderDetails](docs/V7ResponseProvidersProviderDetails.md)
|
|
1256
1293
|
- [VericredClient::VisionPlan](docs/VisionPlan.md)
|
data/docs/ACAPlan.md
CHANGED
|
@@ -42,7 +42,6 @@ Name | Type | Description | Notes
|
|
|
42
42
|
**imaging** | **String** | Benefits summary for imaging coverage | [optional]
|
|
43
43
|
**imaging_center** | **String** | Imaging center benefits summary | [optional]
|
|
44
44
|
**imaging_physician** | **String** | Imaging physician benefits summary | [optional]
|
|
45
|
-
**in_network_ids** | **Array<Integer>** | List of NPI numbers for Providers passed in who accept this Plan | [optional]
|
|
46
45
|
**individual_drug_deductible** | **String** | Deductible for drugs when an individual is on the plan | [optional]
|
|
47
46
|
**individual_drug_moop** | **String** | Maximum out-of-pocket for drugs when an individual is on the plan | [optional]
|
|
48
47
|
**individual_medical_deductible** | **String** | Deductible when an individual is on the plan | [optional]
|
|
@@ -66,7 +65,6 @@ Name | Type | Description | Notes
|
|
|
66
65
|
**off_market** | **BOOLEAN** | Is the plan off-market? | [optional]
|
|
67
66
|
**on_market** | **BOOLEAN** | Is the plan on-market? | [optional]
|
|
68
67
|
**out_of_network_coverage** | **BOOLEAN** | Does this plan provide any out of network coverage? | [optional]
|
|
69
|
-
**out_of_network_ids** | **Array<Integer>** | List of NPI numbers for Providers passed in who do not accept this Plan | [optional]
|
|
70
68
|
**outpatient_ambulatory_care_center** | **String** | Outpatient ambulatory care center benefits summary | [optional]
|
|
71
69
|
**outpatient_facility** | **String** | Benefits summary for outpatient facility coverage | [optional]
|
|
72
70
|
**outpatient_mental_health** | **String** | Benefits summary for outpatient mental health coverage | [optional]
|
|
@@ -77,9 +75,6 @@ Name | Type | Description | Notes
|
|
|
77
75
|
**plan_type** | **String** | Category of the plan (e.g. EPO, HMO, PPO, POS, Indemnity, PACE, Medicare-Medicaid, HMO w/POS, Cost, FFS, MSA) | [optional]
|
|
78
76
|
**postnatal_care** | **String** | Post-natal care benefits summary | [optional]
|
|
79
77
|
**preferred_brand_drugs** | **String** | Cost under the plan for perferred brand drugs | [optional]
|
|
80
|
-
**premium** | **Float** | Cumulative premium amount | [optional]
|
|
81
|
-
**premium_source** | **String** | Source of the base pricing data | [optional]
|
|
82
|
-
**premium_subsidized** | **Float** | Cumulative premium amount after subsidy | [optional]
|
|
83
78
|
**prenatal_care** | **String** | Prenatal care benefits summary | [optional]
|
|
84
79
|
**prenatal_postnatal_care** | **String** | Inpatient substance abuse benefits summary | [optional]
|
|
85
80
|
**preventative_care** | **String** | Benefits summary for preventative care | [optional]
|
data/docs/ACAPlan2018.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**abortion_rider** | **BOOLEAN** | True if plan covers abortion when there is no public funding available | [optional]
|
|
6
7
|
**actuarial_value** | **Float** | Percentage of total average costs for covered benefits that a plan will cover. | [optional]
|
|
7
8
|
**adult_dental** | **BOOLEAN** | Does the plan provide dental coverage for adults? | [optional]
|
|
8
9
|
**age29_rider** | **BOOLEAN** | True if the plan allows dependents up to age 29 | [optional]
|
|
@@ -43,12 +44,13 @@ Name | Type | Description | Notes
|
|
|
43
44
|
**imaging** | **String** | Benefits summary for imaging coverage | [optional]
|
|
44
45
|
**imaging_center** | **String** | Imaging center benefits summary | [optional]
|
|
45
46
|
**imaging_physician** | **String** | Imaging physician benefits summary | [optional]
|
|
46
|
-
**in_network_ids** | **Array<Integer>** | List of NPI numbers for Providers passed in who accept this Plan | [optional]
|
|
47
47
|
**individual_drug_deductible** | **String** | Deductible for drugs when an individual is on the plan | [optional]
|
|
48
48
|
**individual_drug_moop** | **String** | Maximum out-of-pocket for drugs when an individual is on the plan | [optional]
|
|
49
49
|
**individual_medical_deductible** | **String** | Deductible when an individual is on the plan | [optional]
|
|
50
50
|
**individual_medical_moop** | **String** | Maximum out-of-pocket when an individual is on the plan | [optional]
|
|
51
|
+
**infertility_rider** | **BOOLEAN** | True if plan covers infertility treatment | [optional]
|
|
51
52
|
**inpatient_birth** | **String** | Inpatient birth benefits summary | [optional]
|
|
53
|
+
**inpatient_birth_physician** | **String** | Description of the benefit for inpatient birth physician - this is called “Childbirth/delivery professional services” on an SBC | [optional]
|
|
52
54
|
**inpatient_facility** | **String** | Cost under the plan for an inpatient facility | [optional]
|
|
53
55
|
**inpatient_mental_health** | **String** | Inpatient mental helath benefits summary | [optional]
|
|
54
56
|
**inpatient_physician** | **String** | Cost under the plan for an inpatient physician | [optional]
|
|
@@ -67,20 +69,18 @@ Name | Type | Description | Notes
|
|
|
67
69
|
**off_market** | **BOOLEAN** | Is the plan off-market? | [optional]
|
|
68
70
|
**on_market** | **BOOLEAN** | Is the plan on-market? | [optional]
|
|
69
71
|
**out_of_network_coverage** | **BOOLEAN** | Does this plan provide any out of network coverage? | [optional]
|
|
70
|
-
**out_of_network_ids** | **Array<Integer>** | List of NPI numbers for Providers passed in who do not accept this Plan | [optional]
|
|
71
72
|
**outpatient_ambulatory_care_center** | **String** | Outpatient ambulatory care center benefits summary | [optional]
|
|
72
73
|
**outpatient_facility** | **String** | Benefits summary for outpatient facility coverage | [optional]
|
|
73
74
|
**outpatient_mental_health** | **String** | Benefits summary for outpatient mental health coverage | [optional]
|
|
74
75
|
**outpatient_physician** | **String** | Benefits summary for outpatient physician coverage | [optional]
|
|
75
76
|
**outpatient_substance** | **String** | Outpatient substance abuse benefits summary | [optional]
|
|
77
|
+
**plan_ancestor** | **String** | A list of plan identifiers and years indicating the previous plans that the plan replaces | [optional]
|
|
76
78
|
**plan_calendar** | **String** | Are deductibles and MOOPs reset on Dec-31 (\"calendar year\"), 365 day(s) after enrollment date (\"plan year\"), or are both options available (\"both\")? | [optional]
|
|
79
|
+
**plan_coinsurance** | **String** | The plan-level standard cost-share for substantially all benefits. It i ncludes in- network, out-of- network, and tiers if applicable | [optional]
|
|
77
80
|
**plan_market** | **String** | Market in which the plan is offered (on_marketplace, shop, etc) | [optional]
|
|
78
81
|
**plan_type** | **String** | Category of the plan (e.g. EPO, HMO, PPO, POS, Indemnity, PACE, Medicare-Medicaid, HMO w/POS, Cost, FFS, MSA) | [optional]
|
|
79
82
|
**postnatal_care** | **String** | Post-natal care benefits summary | [optional]
|
|
80
83
|
**preferred_brand_drugs** | **String** | Cost under the plan for perferred brand drugs | [optional]
|
|
81
|
-
**premium** | **Float** | Cumulative premium amount | [optional]
|
|
82
|
-
**premium_source** | **String** | Source of the base pricing data | [optional]
|
|
83
|
-
**premium_subsidized** | **Float** | Cumulative premium amount after subsidy | [optional]
|
|
84
84
|
**prenatal_care** | **String** | Prenatal care benefits summary | [optional]
|
|
85
85
|
**prenatal_postnatal_care** | **String** | Inpatient substance abuse benefits summary | [optional]
|
|
86
86
|
**preventative_care** | **String** | Benefits summary for preventative care | [optional]
|
|
@@ -92,6 +92,7 @@ Name | Type | Description | Notes
|
|
|
92
92
|
**source** | **String** | Source of the plan benefit data | [optional]
|
|
93
93
|
**specialist** | **String** | Cost under the plan to visit a specialist | [optional]
|
|
94
94
|
**specialty_drugs** | **String** | Cost under the plan for specialty drugs | [optional]
|
|
95
|
+
**telemedicine** | **String** | Indicates whether there is coverage for the remote delivery of medical benefits | [optional]
|
|
95
96
|
**type** | **String** | The type of the Plan | [optional]
|
|
96
97
|
**urgent_care** | **String** | Benefits summary for urgent care | [optional]
|
|
97
98
|
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# VericredClient::ACAPlan2018Search
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**abortion_rider** | **BOOLEAN** | True if plan covers abortion when there is no public funding available | [optional]
|
|
7
|
+
**actuarial_value** | **Float** | Percentage of total average costs for covered benefits that a plan will cover. | [optional]
|
|
8
|
+
**adult_dental** | **BOOLEAN** | Does the plan provide dental coverage for adults? | [optional]
|
|
9
|
+
**age29_rider** | **BOOLEAN** | True if the plan allows dependents up to age 29 | [optional]
|
|
10
|
+
**ambulance** | **String** | Benefits string for ambulance coverage | [optional]
|
|
11
|
+
**benefits_summary_url** | **String** | Link to the summary of benefits and coverage (SBC) document. | [optional]
|
|
12
|
+
**buy_link** | **String** | Link to a location to purchase the plan. | [optional]
|
|
13
|
+
**carrier_name** | **String** | Name of the insurance carrier | [optional]
|
|
14
|
+
**child_dental** | **BOOLEAN** | Does the plan provide dental coverage for children? | [optional]
|
|
15
|
+
**child_eye_exam** | **String** | Child eye exam benefits summary | [optional]
|
|
16
|
+
**child_eyewear** | **String** | Child eyewear benefits summary | [optional]
|
|
17
|
+
**chiropractic_services** | **String** | Chiropractic services benefits summary | [optional]
|
|
18
|
+
**coinsurance** | **Float** | Standard cost share for most benefits | [optional]
|
|
19
|
+
**customer_service_phone_number** | **String** | Phone number to contact the insurance carrier | [optional]
|
|
20
|
+
**diagnostic_test** | **String** | Diagnostic tests benefit summary | [optional]
|
|
21
|
+
**display_name** | **String** | Alternate name for the Plan | [optional]
|
|
22
|
+
**dp_rider** | **BOOLEAN** | True if plan does not cover domestic partners | [optional]
|
|
23
|
+
**drug_formulary_url** | **String** | Link to the summary of drug benefits for the plan | [optional]
|
|
24
|
+
**durable_medical_equipment** | **String** | Benefits summary for durable medical equipment | [optional]
|
|
25
|
+
**effective_date** | **String** | Effective date of coverage. | [optional]
|
|
26
|
+
**embedded_deductible** | **String** | Is the individual deductible for each covered person, embedded in the family deductible | [optional]
|
|
27
|
+
**emergency_room** | **String** | Description of costs when visiting the ER | [optional]
|
|
28
|
+
**essential_health_benefits_percentage** | **Float** | Percentage of essential plan benefits | [optional]
|
|
29
|
+
**expiration_date** | **String** | Expiration date of coverage. | [optional]
|
|
30
|
+
**family_drug_deductible** | **String** | Deductible for drugs when a family is on the plan. | [optional]
|
|
31
|
+
**family_drug_moop** | **String** | Maximum out-of-pocket for drugs when a family is on the plan | [optional]
|
|
32
|
+
**family_medical_deductible** | **String** | Deductible when a family is on the plan | [optional]
|
|
33
|
+
**family_medical_moop** | **String** | Maximum out-of-pocket when a family is on the plan | [optional]
|
|
34
|
+
**fp_rider** | **BOOLEAN** | True if plan does not cover family planning | [optional]
|
|
35
|
+
**gated** | **BOOLEAN** | Does the plan's network require a physician referral? | [optional]
|
|
36
|
+
**generic_drugs** | **String** | Cost for generic drugs | [optional]
|
|
37
|
+
**habilitation_services** | **String** | Habilitation services benefits summary | [optional]
|
|
38
|
+
**hios_issuer_id** | **String** | | [optional]
|
|
39
|
+
**home_health_care** | **String** | Home health care benefits summary | [optional]
|
|
40
|
+
**hospice_service** | **String** | Hospice service benefits summary | [optional]
|
|
41
|
+
**hsa_eligible** | **BOOLEAN** | Is the plan HSA eligible? | [optional]
|
|
42
|
+
**id** | **String** | Government-issued HIOS plan ID | [optional]
|
|
43
|
+
**identifiers** | [**Array<PlanIdentifier>**](PlanIdentifier.md) | List of identifiers of this Plan | [optional]
|
|
44
|
+
**imaging** | **String** | Benefits summary for imaging coverage | [optional]
|
|
45
|
+
**imaging_center** | **String** | Imaging center benefits summary | [optional]
|
|
46
|
+
**imaging_physician** | **String** | Imaging physician benefits summary | [optional]
|
|
47
|
+
**in_network_ids** | **Array<Integer>** | List of NPI numbers for Providers passed in who accept this Plan | [optional]
|
|
48
|
+
**individual_drug_deductible** | **String** | Deductible for drugs when an individual is on the plan | [optional]
|
|
49
|
+
**individual_drug_moop** | **String** | Maximum out-of-pocket for drugs when an individual is on the plan | [optional]
|
|
50
|
+
**individual_medical_deductible** | **String** | Deductible when an individual is on the plan | [optional]
|
|
51
|
+
**individual_medical_moop** | **String** | Maximum out-of-pocket when an individual is on the plan | [optional]
|
|
52
|
+
**infertility_rider** | **BOOLEAN** | True if plan covers infertility treatment | [optional]
|
|
53
|
+
**inpatient_birth** | **String** | Inpatient birth benefits summary | [optional]
|
|
54
|
+
**inpatient_birth_physician** | **String** | Description of the benefit for inpatient birth physician - this is called “Childbirth/delivery professional services” on an SBC | [optional]
|
|
55
|
+
**inpatient_facility** | **String** | Cost under the plan for an inpatient facility | [optional]
|
|
56
|
+
**inpatient_mental_health** | **String** | Inpatient mental helath benefits summary | [optional]
|
|
57
|
+
**inpatient_physician** | **String** | Cost under the plan for an inpatient physician | [optional]
|
|
58
|
+
**inpatient_substance** | **String** | Inpatient substance abuse benefits summary | [optional]
|
|
59
|
+
**lab_test** | **String** | Lab test benefits summary | [optional]
|
|
60
|
+
**level** | **String** | Plan metal grouping (e.g. platinum, gold, silver, etc) | [optional]
|
|
61
|
+
**logo_url** | **String** | Link to a copy of the insurance carrier's logo | [optional]
|
|
62
|
+
**mail_order_rx** | **Float** | Multiple of the standard Rx cost share for orders filled via mail order | [optional]
|
|
63
|
+
**name** | **String** | Marketing name of the plan | [optional]
|
|
64
|
+
**network_ids** | **Array<Integer>** | List of Vericred-generated network_ids | [optional]
|
|
65
|
+
**network_size** | **Integer** | Total number of Providers in network | [optional]
|
|
66
|
+
**networks** | [**Array<PlanNetwork>**](PlanNetwork.md) | List of networks associated with the plan | [optional]
|
|
67
|
+
**non_preferred_brand_drugs** | **String** | Cost under the plan for non-preferred brand drugs | [optional]
|
|
68
|
+
**nonpreferred_generic_drug_share** | **String** | Non-preferred generic drugs benefits summary | [optional]
|
|
69
|
+
**nonpreferred_specialty_drug_share** | **String** | Non-preferred specialty drugs benefits summary | [optional]
|
|
70
|
+
**off_market** | **BOOLEAN** | Is the plan off-market? | [optional]
|
|
71
|
+
**on_market** | **BOOLEAN** | Is the plan on-market? | [optional]
|
|
72
|
+
**out_of_network_coverage** | **BOOLEAN** | Does this plan provide any out of network coverage? | [optional]
|
|
73
|
+
**out_of_network_ids** | **Array<Integer>** | List of NPI numbers for Providers passed in who do not accept this Plan | [optional]
|
|
74
|
+
**outpatient_ambulatory_care_center** | **String** | Outpatient ambulatory care center benefits summary | [optional]
|
|
75
|
+
**outpatient_facility** | **String** | Benefits summary for outpatient facility coverage | [optional]
|
|
76
|
+
**outpatient_mental_health** | **String** | Benefits summary for outpatient mental health coverage | [optional]
|
|
77
|
+
**outpatient_physician** | **String** | Benefits summary for outpatient physician coverage | [optional]
|
|
78
|
+
**outpatient_substance** | **String** | Outpatient substance abuse benefits summary | [optional]
|
|
79
|
+
**plan_ancestor** | **String** | A list of plan identifiers and years indicating the previous plans that the plan replaces | [optional]
|
|
80
|
+
**plan_calendar** | **String** | Are deductibles and MOOPs reset on Dec-31 (\"calendar year\"), 365 day(s) after enrollment date (\"plan year\"), or are both options available (\"both\")? | [optional]
|
|
81
|
+
**plan_coinsurance** | **String** | The plan-level standard cost-share for substantially all benefits. It i ncludes in- network, out-of- network, and tiers if applicable | [optional]
|
|
82
|
+
**plan_market** | **String** | Market in which the plan is offered (on_marketplace, shop, etc) | [optional]
|
|
83
|
+
**plan_type** | **String** | Category of the plan (e.g. EPO, HMO, PPO, POS, Indemnity, PACE, Medicare-Medicaid, HMO w/POS, Cost, FFS, MSA) | [optional]
|
|
84
|
+
**postnatal_care** | **String** | Post-natal care benefits summary | [optional]
|
|
85
|
+
**preferred_brand_drugs** | **String** | Cost under the plan for perferred brand drugs | [optional]
|
|
86
|
+
**premium** | **Float** | Cumulative premium amount | [optional]
|
|
87
|
+
**premium_source** | **String** | Source of the base pricing data | [optional]
|
|
88
|
+
**premium_subsidized** | **Float** | Cumulative premium amount after subsidy | [optional]
|
|
89
|
+
**prenatal_care** | **String** | Prenatal care benefits summary | [optional]
|
|
90
|
+
**prenatal_postnatal_care** | **String** | Inpatient substance abuse benefits summary | [optional]
|
|
91
|
+
**preventative_care** | **String** | Benefits summary for preventative care | [optional]
|
|
92
|
+
**primary_care_physician** | **String** | Cost under the plan to visit a Primary Care Physician | [optional]
|
|
93
|
+
**rehabilitation_services** | **String** | Benefits summary for rehabilitation services | [optional]
|
|
94
|
+
**service_area_id** | **String** | Foreign key for service area | [optional]
|
|
95
|
+
**skilled_nursing** | **String** | Benefits summary for skilled nursing services | [optional]
|
|
96
|
+
**skilled_nursing_facility_365** | **String** | Does the plan cover full-time, year-round, nursing facilities? | [optional]
|
|
97
|
+
**source** | **String** | Source of the plan benefit data | [optional]
|
|
98
|
+
**specialist** | **String** | Cost under the plan to visit a specialist | [optional]
|
|
99
|
+
**specialty_drugs** | **String** | Cost under the plan for specialty drugs | [optional]
|
|
100
|
+
**telemedicine** | **String** | Indicates whether there is coverage for the remote delivery of medical benefits | [optional]
|
|
101
|
+
**type** | **String** | The type of the Plan | [optional]
|
|
102
|
+
**urgent_care** | **String** | Benefits summary for urgent care | [optional]
|
|
103
|
+
|
|
104
|
+
|
|
@@ -5,6 +5,6 @@ Name | Type | Description | Notes
|
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
6
|
**coverages** | [**Array<DrugCoverage>**](DrugCoverage.md) | Coverages associated with the plan. | [optional]
|
|
7
7
|
**meta** | [**Meta**](Meta.md) | Meta-data | [optional]
|
|
8
|
-
**plans** | [**Array<
|
|
8
|
+
**plans** | [**Array<ACAPlan2018Search>**](ACAPlan2018Search.md) | Plan search results | [optional]
|
|
9
9
|
|
|
10
10
|
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**abortion_rider** | **BOOLEAN** | True if plan covers abortion when there is no public funding available | [optional]
|
|
6
7
|
**actuarial_value** | **Float** | Percentage of total average costs for covered benefits that a plan will cover. | [optional]
|
|
7
8
|
**adult_dental** | **BOOLEAN** | Does the plan provide dental coverage for adults? | [optional]
|
|
8
9
|
**age29_rider** | **BOOLEAN** | True if the plan allows dependents up to age 29 | [optional]
|
|
@@ -50,7 +51,9 @@ Name | Type | Description | Notes
|
|
|
50
51
|
**individual_drug_moop** | **String** | Maximum out-of-pocket for drugs when an individual is on the plan | [optional]
|
|
51
52
|
**individual_medical_deductible** | **String** | Deductible when an individual is on the plan | [optional]
|
|
52
53
|
**individual_medical_moop** | **String** | Maximum out-of-pocket when an individual is on the plan | [optional]
|
|
54
|
+
**infertility_rider** | **BOOLEAN** | True if plan covers infertility treatment | [optional]
|
|
53
55
|
**inpatient_birth** | **String** | Inpatient birth benefits summary | [optional]
|
|
56
|
+
**inpatient_birth_physician** | **String** | Description of the benefit for inpatient birth physician - this is called “Childbirth/delivery professional services” on an SBC | [optional]
|
|
54
57
|
**inpatient_facility** | **String** | Cost under the plan for an inpatient facility | [optional]
|
|
55
58
|
**inpatient_mental_health** | **String** | Inpatient mental helath benefits summary | [optional]
|
|
56
59
|
**inpatient_physician** | **String** | Cost under the plan for an inpatient physician | [optional]
|
|
@@ -76,7 +79,9 @@ Name | Type | Description | Notes
|
|
|
76
79
|
**outpatient_physician** | **String** | Benefits summary for outpatient physician coverage | [optional]
|
|
77
80
|
**outpatient_substance** | **String** | Outpatient substance abuse benefits summary | [optional]
|
|
78
81
|
**perfect_match_percentage** | **Integer** | Percentage of employees with 100% matchedch | [optional]
|
|
82
|
+
**plan_ancestor** | **String** | A list of plan identifiers and years indicating the previous plans that the plan replaces | [optional]
|
|
79
83
|
**plan_calendar** | **String** | Are deductibles and MOOPs reset on Dec-31 (\"calendar year\"), 365 day(s) after enrollment date (\"plan year\"), or are both options available (\"both\")? | [optional]
|
|
84
|
+
**plan_coinsurance** | **String** | The plan-level standard cost-share for substantially all benefits. It i ncludes in- network, out-of- network, and tiers if applicable | [optional]
|
|
80
85
|
**plan_market** | **String** | Market in which the plan is offered (on_marketplace, shop, etc) | [optional]
|
|
81
86
|
**plan_type** | **String** | Category of the plan (e.g. EPO, HMO, PPO, POS, Indemnity, PACE, Medicare-Medicaid, HMO w/POS, Cost, FFS, MSA) | [optional]
|
|
82
87
|
**postnatal_care** | **String** | Post-natal care benefits summary | [optional]
|
|
@@ -95,6 +100,7 @@ Name | Type | Description | Notes
|
|
|
95
100
|
**source** | **String** | Source of the plan benefit data | [optional]
|
|
96
101
|
**specialist** | **String** | Cost under the plan to visit a specialist | [optional]
|
|
97
102
|
**specialty_drugs** | **String** | Cost under the plan for specialty drugs | [optional]
|
|
103
|
+
**telemedicine** | **String** | Indicates whether there is coverage for the remote delivery of medical benefits | [optional]
|
|
98
104
|
**type** | **String** | The type of the Plan | [optional]
|
|
99
105
|
**urgent_care** | **String** | Benefits summary for urgent care | [optional]
|
|
100
106
|
|