Censys · Schema

Ipmi_CommandPayload_PackedNetFn_NetFn

Ipmi_CommandPayload_PackedNetFn_NetFn schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
is_request boolean True if the least-significant bit is zero
is_response boolean True if the least-significant bit is one
name string The human-readable name of the NetFn
raw integer The raw value of the NetFn (6 bits, least significant indicates request/response)
value integer The normalized value of the NetFn (i.e. raw & 0xfe, so it is always even)
View JSON Schema on GitHub

JSON Schema

platform-ipmi-commandpayload-packednetfn-netfn-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-ipmi-commandpayload-packednetfn-netfn-schema.json",
  "title": "Ipmi_CommandPayload_PackedNetFn_NetFn",
  "description": "Ipmi_CommandPayload_PackedNetFn_NetFn schema from Censys Platform API",
  "type": "object",
  "properties": {
    "is_request": {
      "description": "True if the least-significant bit is zero",
      "type": "boolean"
    },
    "is_response": {
      "description": "True if the least-significant bit is one",
      "type": "boolean"
    },
    "name": {
      "description": "The human-readable name of the NetFn",
      "type": "string"
    },
    "raw": {
      "description": "The raw value of the NetFn (6 bits, least significant indicates request/response)",
      "format": "int32",
      "type": "integer"
    },
    "value": {
      "description": "The normalized value of the NetFn (i.e. raw & 0xfe, so it is always even)",
      "format": "int32",
      "type": "integer"
    }
  },
  "additionalProperties": false
}