IPGeolocation.io · Schema

UserAgentEngine

Rendering engine information extracted from the User-Agent string.

GeocodingIP GeolocationIP IntelligenceIP SecurityASN LookupAbuse ContactTimezoneAstronomyUser AgentThreat IntelligencePublic APIs

Properties

Name Type Description
name string Engine name (e.g. `Blink`, `Gecko`, `WebKit`).
type string Engine classification. Typically matches the client type.
version string Full version of the rendering engine.
version_major string Major version of the rendering engine.
View JSON Schema on GitHub

JSON Schema

ip-location-user-agent-engine-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ipgeolocation/refs/heads/main/json-schema/ip-location-user-agent-engine-schema.json",
  "title": "UserAgentEngine",
  "description": "Rendering engine information extracted from the User-Agent string.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Engine name (e.g. `Blink`, `Gecko`, `WebKit`).",
      "example": "Blink"
    },
    "type": {
      "type": "string",
      "description": "Engine classification. Typically matches the client type.",
      "example": "Browser"
    },
    "version": {
      "type": "string",
      "description": "Full version of the rendering engine.",
      "example": "143"
    },
    "version_major": {
      "type": "string",
      "description": "Major version of the rendering engine.",
      "example": "143"
    }
  }
}