Vehicle Databases · Schema

MaintenanceSchedule

Complete OEM maintenance schedule with all service intervals

AutomotiveFleet ManagementMaintenanceRecallsVehicles

Properties

Name Type Description
vehicleId string Vehicle identifier
make string
model string
year integer
intervals array All maintenance intervals up to 200,000 miles
View JSON Schema on GitHub

JSON Schema

vehicle-databases-maintenance-schedule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/vehicle-databases/refs/heads/main/json-schema/vehicle-databases-maintenance-schedule-schema.json",
  "title": "MaintenanceSchedule",
  "description": "Complete OEM maintenance schedule with all service intervals",
  "type": "object",
  "properties": {
    "vehicleId": {
      "type": "string",
      "description": "Vehicle identifier",
      "example": "toyota-camry-2022-25l-4cyl"
    },
    "make": {
      "type": "string",
      "example": "Toyota"
    },
    "model": {
      "type": "string",
      "example": "Camry"
    },
    "year": {
      "type": "integer",
      "example": 2022
    },
    "intervals": {
      "type": "array",
      "description": "All maintenance intervals up to 200,000 miles",
      "items": {
        "$ref": "#/components/schemas/MaintenanceInterval"
      }
    }
  }
}