optimalcover/vsc-pricing
OptimalCover VSC Pricing Dataset Independent, open reference data for Vehicle Service Contract (VSC / extended warranty) pricing — derived from public insurance filings and actuarial reserve disclosures. Schema version: v3.6.7 Released: 2026-04-28 License: CC BY 4.0 — attribution required Upstream: https://github.com/Optimal-Cover/vsc-pricing-data Homepage: https://optimalcover.com/open-data Maintainer: OptimalCover Dataset summary OptimalCover publishes pricing… See the full description on the dataset page: https://huggingface.co/datasets/optimalcover/vsc-pricing.
OptimalCover VSC Pricing Dataset
Independent, open reference data for Vehicle Service Contract (VSC / extended warranty) pricing — derived from public insurance filings and actuarial reserve disclosures.
- Schema version:
v3.6.7 - Released: 2026-04-28
- License: CC BY 4.0 — attribution required
- Upstream: https://github.com/Optimal-Cover/vsc-pricing-data
- Homepage: https://optimalcover.com/open-data
- Maintainer: OptimalCover
Dataset summary
OptimalCover publishes pricing benchmarks for Vehicle Service Contracts based on public insurance filings, actuarial reserve disclosures, and documented industry cost structures. This is the Hugging Face mirror of the canonical GitHub release.
Configurations
Usage
from datasets import load_dataset
rates = load_dataset("optimalcover/vsc-pricing", "rates", split="train")
print(rates[0])
# {'vehicle_class': 'A', 'mileage_band': '...', 'term_months': 36, ...}
eligibility = load_dataset("optimalcover/vsc-pricing", "eligibility", split="train")
mileage_bands = load_dataset("optimalcover/vsc-pricing", "mileage_bands", split="train")
pricing_config = load_dataset("optimalcover/vsc-pricing", "pricing_config", split="train")Data fields
rates
coverage_level(string) — alwaysEXCLUSIONARYin v3.6.7vehicle_class(string) — A, B, C, or Dmileage_band(string) — human-readable band labelterm(string) — e.g.48/60000(months/miles)term_months(int)term_miles(int)deductible(int) — always100in v3.6.7 (canonical)band(string) —REFERENCE_LOWorREFERENCE_HIGHprice(int) — USD
Pair REFERENCE_LOW and REFERENCE_HIGH rows on the same (vehicle_class, mileage_band, term, deductible) to form a price range.
eligibility
Make/model mapping to risk class A-D.
mileage_bands
Raw band definitions — odometer min/max and inclusivity.
pricing_config
Encoded methodology constants. config_value is a JSON string; parse it to access nested rules (e.g. deductible multipliers, Class D cap).
Derived deductibles
Only the canonical $100 deductible is stored. $0 and $250 are derived at runtime from pricing_config.deductible_handling:
$0=$100 × 1.35, rounded to nearest$50, capped at+$500for Class D$250=$100 × 0.85, rounded to nearest$50
A worked notebook is available in the upstream GitHub repo at `examples/03_deductible_comparison.ipynb`.
Methodology
Full methodology lives at https://optimalcover.com/methodology. A condensed version ships alongside the data as methodology_summary.md.
Inputs include:
- Public insurance filings (state DOI rate filings, NAIC disclosures)
- Actuarial reserve disclosures from VSC underwriters
- Documented dealer / admin / reserve cost structures
- Vehicle reliability and parts-cost data
Outputs are reference price ranges (REFERENCE_LOW / REFERENCE_HIGH) — never single point prices, never quotes.
What this dataset is NOT
- Not a quote, offer, or sale of any product
- Not affiliated with any single VSC provider
- Does not contain customer data, VINs, or any personally identifiable information
Schema versioning
Releases are tagged by the OptimalCover pricing schema version (e.g. v3.6.7). Each schema version is an immutable snapshot — once published, its data files do not change. Methodology refinements ship as new schema versions with a CHANGELOG.md entry.
Citation
Please cite this dataset as:
OptimalCover (2026). VSC Pricing Dataset (v3.6.7).
https://github.com/Optimal-Cover/vsc-pricing-data
Licensed under CC BY 4.0.BibTeX:
@dataset{optimalcover_vsc_2026,
author = {{OptimalCover}},
title = {VSC Pricing Dataset},
version = {3.6.7},
year = {2026},
url = {https://github.com/Optimal-Cover/vsc-pricing-data},
license = {CC-BY-4.0}
}License
This dataset is released under the Creative Commons Attribution 4.0 International (CC BY 4.0) license. You are free to share and adapt the data for any purpose, including commercially, as long as you provide appropriate attribution.
Links
- Canonical repo (GitHub): https://github.com/Optimal-Cover/vsc-pricing-data
- Website: https://optimalcover.com
- Open Data page: https://optimalcover.com/open-data
- Methodology: https://optimalcover.com/methodology
- LLM-friendly endpoint: https://optimalcover.com/llms-full.txt
