Make

AutomobilesAutomotive DataCarsLicense Plate DecoderOBD-IIPower SportsVehicle APIVehicle SpecificationsVehiclesVIN Decoder

Properties

Name Type Description
id integer
name string Vehicle make/brand
View JSON Schema on GitHub

JSON Schema

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