IPinfo · Schema

CompanyResponse

CompanyResponse schema from IPinfo API

IP IntelligenceIP GeolocationASNPrivacy DetectionVPN DetectionThreat IntelligenceNetwork DataMobile CarrierWHOISPublic APIsDevelopment

Properties

Name Type Description
name string
domain string
type string
View JSON Schema on GitHub

JSON Schema

ipinfo-company-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-company-response-schema.json",
  "title": "CompanyResponse",
  "description": "CompanyResponse schema from IPinfo API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Sprint Springfield POP"
    },
    "domain": {
      "type": "string",
      "example": "sprint.com"
    },
    "type": {
      "type": "string",
      "example": "isp",
      "enum": [
        "isp",
        "business",
        "education",
        "hosting"
      ]
    }
  },
  "required": [
    "name",
    "domain",
    "type"
  ]
}