Censys · Schema

NetworkClassification

NetworkClassification schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
hosting boolean Whether the host belongs to an Internet hosting service provider.
mobile boolean Whether the host belongs to a mobile network.
mobile_info object Information about the mobile network the host belongs to, if any.
satellite boolean Whether the host belongs to a statellite network.
source string The source of the data.
View JSON Schema on GitHub

JSON Schema

platform-networkclassification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-networkclassification-schema.json",
  "title": "NetworkClassification",
  "description": "NetworkClassification schema from Censys Platform API",
  "type": "object",
  "properties": {
    "hosting": {
      "description": "Whether the host belongs to an Internet hosting service provider.",
      "type": "boolean"
    },
    "mobile": {
      "description": "Whether the host belongs to a mobile network.",
      "type": "boolean"
    },
    "mobile_info": {
      "$ref": "#/components/schemas/Network_MobileInfo",
      "description": "Information about the mobile network the host belongs to, if any."
    },
    "satellite": {
      "description": "Whether the host belongs to a statellite network.",
      "type": "boolean"
    },
    "source": {
      "description": "The source of the data.",
      "type": "string"
    }
  },
  "additionalProperties": false
}