IPinfo · Schema

Prefix6

Prefix6 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-prefix6-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ipinfo/main/json-schema/ipinfo-prefix6-schema.json",
  "title": "Prefix6",
  "description": "Prefix6 schema from IPinfo API",
  "type": "object",
  "properties": {
    "netblock": {
      "type": "string",
      "example": "2601::/20"
    },
    "id": {
      "type": "string",
      "example": "COMCAST6NET"
    },
    "name": {
      "type": "string",
      "example": "Comcast Cable Communications, LLC"
    },
    "country": {
      "type": "string",
      "example": "US"
    },
    "size": {
      "type": "string",
      "example": "20282409603651670423947251286016"
    },
    "status": {
      "type": "string",
      "example": "ASSIGNMENT"
    },
    "domain": {
      "type": "string",
      "example": "comcast.com"
    }
  },
  "required": [
    "netblock",
    "id",
    "name",
    "country"
  ]
}