MakeModel

AutomobilesAutomotive DataCarsLicense Plate DecoderOBD-IIPower SportsVehicle APIVehicle SpecificationsVehiclesVIN Decoder

Properties

Name Type Description
id integer
make_id integer
name string Vehicle model
View JSON Schema on GitHub

JSON Schema

car-api-makemodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MakeModel",
  "title": "MakeModel",
  "properties": {
    "id": {
      "minLength": 1,
      "type": "integer",
      "format": "int64",
      "readOnly": true
    },
    "make_id": {
      "minLength": 1,
      "type": "integer",
      "format": "int64"
    },
    "name": {
      "minLength": 1,
      "maxLength": 64,
      "type": "string",
      "description": "Vehicle model"
    }
  },
  "type": "object",
  "description": ""
}