Vehicle Databases · JSON Structure

Vehicle Databases Maintenance Schedule Structure

Complete OEM maintenance schedule with all service intervals

Type: object Properties: 5
AutomotiveFleet ManagementMaintenanceRecallsVehicles

MaintenanceSchedule is a JSON Structure definition published by Vehicle Databases, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

vehicleId make model year intervals

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/vehicle-databases/refs/heads/main/json-structure/vehicle-databases-maintenance-schedule-structure.json",
  "name": "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": "int32",
      "example": 2022
    },
    "intervals": {
      "type": "array",
      "description": "All maintenance intervals up to 200,000 miles",
      "items": {
        "$ref": "#/components/schemas/MaintenanceInterval"
      }
    }
  }
}