Censys · Schema

Minecraft

Minecraft schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
motd string
players_max integer
players_online integer
protocol_version string
server_version string
View JSON Schema on GitHub

JSON Schema

asset-graph-minecraft-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-minecraft-schema.json",
  "title": "Minecraft",
  "description": "Minecraft schema from Asset Graph API",
  "type": "object",
  "properties": {
    "motd": {
      "type": "string"
    },
    "players_max": {
      "format": "int64",
      "type": "integer"
    },
    "players_online": {
      "format": "int64",
      "type": "integer"
    },
    "protocol_version": {
      "type": "string"
    },
    "server_version": {
      "type": "string"
    }
  },
  "additionalProperties": false
}