IPinfo · JSON Structure

Ipinfo Places Response Structure

PlacesResponse schema from IPinfo API

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

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

Properties

ip name category ssid latitude longitude

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-places-response-structure.json",
  "name": "PlacesResponse",
  "description": "PlacesResponse schema from IPinfo API",
  "type": "object",
  "properties": {
    "ip": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "category": {
      "type": "string"
    },
    "ssid": {
      "type": "string"
    },
    "latitude": {
      "type": "double"
    },
    "longitude": {
      "type": "double"
    }
  },
  "required": [
    "ip",
    "name",
    "category",
    "ssid",
    "latitude",
    "longitude"
  ]
}