IPinfo · JSON Structure

Ipinfo Lite Response Structure

LiteResponse schema from IPinfo API

Type: object Properties: 8 Required: 8
IP IntelligenceIP GeolocationASNPrivacy DetectionVPN DetectionThreat IntelligenceNetwork DataMobile CarrierWHOISPublic APIsDevelopment

LiteResponse is a JSON Structure definition published by IPinfo, describing 8 properties, of which 8 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ip asn as_name as_domain country_code country continent_code continent

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/ipinfo/main/json-structure/ipinfo-lite-response-structure.json",
  "name": "LiteResponse",
  "description": "LiteResponse schema from IPinfo API",
  "type": "object",
  "properties": {
    "ip": {
      "type": "string"
    },
    "asn": {
      "type": "string"
    },
    "as_name": {
      "type": "string"
    },
    "as_domain": {
      "type": "string"
    },
    "country_code": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "continent_code": {
      "type": "string"
    },
    "continent": {
      "type": "string"
    }
  },
  "required": [
    "ip",
    "asn",
    "as_name",
    "as_domain",
    "country_code",
    "country",
    "continent_code",
    "continent"
  ]
}