IPinfo · Schema

PrivacyResponse

PrivacyResponse schema from IPinfo API

IP IntelligenceIP GeolocationASNPrivacy DetectionVPN DetectionThreat IntelligenceNetwork DataMobile CarrierWHOISPublic APIsDevelopment

Properties

Name Type Description
vpn boolean
proxy boolean
tor boolean
hosting boolean
relay boolean
service string
View JSON Schema on GitHub

JSON Schema

ipinfo-privacy-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ipinfo/main/json-schema/ipinfo-privacy-response-schema.json",
  "title": "PrivacyResponse",
  "description": "PrivacyResponse schema from IPinfo API",
  "type": "object",
  "properties": {
    "vpn": {
      "type": "boolean",
      "example": true
    },
    "proxy": {
      "type": "boolean",
      "example": false
    },
    "tor": {
      "type": "boolean",
      "example": false
    },
    "hosting": {
      "type": "boolean",
      "example": false
    },
    "relay": {
      "type": "boolean",
      "example": false
    },
    "service": {
      "type": "string",
      "example": ""
    }
  },
  "required": [
    "vpn",
    "proxy",
    "tor",
    "hosting",
    "relay",
    "service"
  ]
}