Volkswagen Vehicle Configuration
A vehicle configuration representing a specific combination of type (trim/engine variant) and selected options in a country market.
AutomobilesCarsVehiclesAutomotiveVehicle Configuration
{
"$schema": "https://json-schema.org/draft/2020-12",
"$id": "https://productdata.volkswagenag.com/schemas/vehicle-configuration",
"title": "Volkswagen Vehicle Configuration",
"description": "A vehicle configuration representing a specific combination of type (trim/engine variant) and selected options in a country market.",
"type": "object",
"properties": {
"typeId": {
"type": "string",
"format": "uuid",
"description": "UUID of the base vehicle type (trim level and engine variant)."
},
"countryCode": {
"type": "string",
"description": "ISO 3166-2 market identifier where this configuration applies.",
"example": "DE"
},
"configId": {
"type": "string",
"description": "Optional session identifier for resuming a saved configuration."
},
"selectedOptions": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "UUIDs of currently selected configuration options (colors, wheels, packages, etc.)."
},
"buildable": {
"type": "boolean",
"description": "Whether this combination of options is a buildable vehicle."
},
"totalPrice": {
"$ref": "#/$defs/Price"
}
},
"required": ["typeId", "countryCode"],
"$defs": {
"Price": {
"type": "object",
"description": "Price in a specific currency.",
"properties": {
"amount": {
"type": "number",
"description": "Price value."
},
"currency": {
"type": "string",
"description": "ISO 4217 currency code.",
"example": "EUR"
}
}
},
"VehicleType": {
"type": "object",
"description": "A specific trim/engine variant of a vehicle model.",
"properties": {
"id": {"type": "string", "format": "uuid"},
"name": {"type": "string", "description": "Type display name."},
"basePrice": {"$ref": "#/$defs/Price"}
}
},
"Option": {
"type": "object",
"description": "A configurable option for a vehicle type.",
"properties": {
"id": {"type": "string", "format": "uuid"},
"name": {"type": "string", "description": "Option display name."},
"category": {
"type": "string",
"enum": ["exterior-color", "interior", "wheels", "radio", "packages", "service"],
"description": "Option category."
},
"price": {"$ref": "#/$defs/Price"}
}
}
}
}
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/volkswagen-vehicle-config"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no email required.
A second provider on the same verified email joins the account you already have.