IPinfo · Schema

Prefix

Prefix schema from IPinfo API

IP IntelligenceIP GeolocationASNPrivacy DetectionVPN DetectionThreat IntelligenceNetwork DataMobile CarrierWHOISPublic APIsDevelopment

Properties

Name Type Description
netblock string
id string
name string
country string
size string
status string
domain string
View JSON Schema on GitHub

JSON Schema

ipinfo-prefix-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ipinfo/main/json-schema/ipinfo-prefix-schema.json",
  "title": "Prefix",
  "description": "Prefix schema from IPinfo API",
  "type": "object",
  "properties": {
    "netblock": {
      "type": "string",
      "example": "104.69.216.0/22"
    },
    "id": {
      "type": "string",
      "example": "AKAMAI"
    },
    "name": {
      "type": "string",
      "example": "Akamai Technologies, Inc."
    },
    "country": {
      "type": "string",
      "example": "US"
    },
    "size": {
      "type": "string",
      "example": "256"
    },
    "status": {
      "type": "string",
      "example": "ALLOCATION"
    },
    "domain": {
      "type": "string",
      "nullable": true,
      "example": "quadranet.com"
    }
  },
  "required": [
    "netblock",
    "id",
    "name",
    "country"
  ]
}