Censys · Schema

MdnsResult

MdnsResult schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
addresses arraynull
full_name string
port integer
priority integer
target string
texts arraynull
weight integer
View JSON Schema on GitHub

JSON Schema

asset-graph-mdnsresult-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-mdnsresult-schema.json",
  "title": "MdnsResult",
  "description": "MdnsResult schema from Asset Graph API",
  "type": "object",
  "properties": {
    "addresses": {
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "full_name": {
      "type": "string"
    },
    "port": {
      "format": "int32",
      "type": "integer"
    },
    "priority": {
      "format": "int32",
      "type": "integer"
    },
    "target": {
      "type": "string"
    },
    "texts": {
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "weight": {
      "format": "int32",
      "type": "integer"
    }
  },
  "additionalProperties": false
}