Censys · Schema

NetworkClassification

NetworkClassification schema from Asset Graph 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

asset-graph-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/asset-graph-networkclassification-schema.json",
  "title": "NetworkClassification",
  "description": "NetworkClassification schema from Asset Graph 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
}