{
"id": {integer},
"models": {array of objects},
"name": {string},
"niceName": {string}
}
| Property | Description | Visibility |
|---|---|---|
| id | The Edmunds ID for the car make/brand | Edmunds, Partners, Public |
| models | List of models belonging to this car make (see below) | Edmunds, Partners, Public |
| name | The name of this car make | Edmunds, Partners, Public |
| niceName | URL-friendly car make/brand name | Edmunds, Partners, Public |
Each element in the models array follows this format:
{
"id": {string},
"name": {string},
"niceName": {string},
"states": {array of strings}
"years": {array of objects}
}
| Property | Description | Visibility |
|---|---|---|
| id | The Edmunds ID for the car model | Edmunds, Partners, Public |
| name | The name of this car model | Edmunds, Partners, Public |
| niceName | URL-friendly car model name | Edmunds, Partners, Public |
| states | The state of this model/year (e.g. NEW, USED, PRE_PROD or NEW_USED) | Edmunds, Partners, Public |
| years | List of model/years belonging to this car model (see below) | Edmunds, Partners, Public |
Each element in the years array follows this format:
{
"id": {integer},
"states": {array of strings},
"year": {integer}
}
| Property | Description | Visibility |
|---|---|---|
| id | The Edmunds ID for the car model/year | Edmunds, Partners, Public |
| states | The state of this model/year (e.g. NEW, USED, PRE_PROD or NEW_USED) | Edmunds, Partners, Public |
| year | The four digit year of this car model | Edmunds, Partners, Public |