Censys · Schema

DesktopInfo

DesktopInfo schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
height integer
name_len integer
pixel_format object
width integer
View JSON Schema on GitHub

JSON Schema

asset-graph-desktopinfo-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-desktopinfo-schema.json",
  "title": "DesktopInfo",
  "description": "DesktopInfo schema from Asset Graph API",
  "type": "object",
  "properties": {
    "height": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "name_len": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "pixel_format": {
      "$ref": "#/components/schemas/PixelFormat"
    },
    "width": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    }
  },
  "additionalProperties": false
}