Visteon · Schema

Visteon Vehicle Data

JSON Schema for vehicle telemetry and status data returned by the Visteon Phoenix Vehicle API

AutomotiveConnected CarInfotainmentIoTFortune 500

Properties

Name Type Description
speed number Current vehicle speed in km/h
fuelLevel integer Fuel level as percentage 0-100
odometer number Odometer reading in kilometers
engineRunning boolean Whether the engine is currently running
gearPosition string Current transmission gear position
hvac object HVAC system status and settings
View JSON Schema on GitHub

JSON Schema

visteon-vehicle-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/visteon/main/json-schema/visteon-vehicle-data-schema.json",
  "title": "Visteon Vehicle Data",
  "description": "JSON Schema for vehicle telemetry and status data returned by the Visteon Phoenix Vehicle API",
  "type": "object",
  "properties": {
    "speed": {
      "type": "number",
      "description": "Current vehicle speed in km/h",
      "minimum": 0
    },
    "fuelLevel": {
      "type": "integer",
      "description": "Fuel level as percentage 0-100",
      "minimum": 0,
      "maximum": 100
    },
    "odometer": {
      "type": "number",
      "description": "Odometer reading in kilometers",
      "minimum": 0
    },
    "engineRunning": {
      "type": "boolean",
      "description": "Whether the engine is currently running"
    },
    "gearPosition": {
      "type": "string",
      "description": "Current transmission gear position",
      "enum": ["P", "R", "N", "D", "1", "2", "3", "4", "5", "6"]
    },
    "hvac": {
      "type": "object",
      "description": "HVAC system status and settings",
      "properties": {
        "temperature": {
          "type": "number",
          "description": "Set cabin temperature in Celsius"
        },
        "fanSpeed": {
          "type": "integer",
          "description": "Fan speed level 0-7",
          "minimum": 0,
          "maximum": 7
        },
        "isAcOn": {
          "type": "boolean",
          "description": "Whether air conditioning is active"
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/visteon-vehicle-data"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.