Censys · JSON Structure

Platform Ipp Structure

Ipp schema from Censys Platform API

Type: object Properties: 8
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Ipp is a JSON Structure definition published by Censys, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

attribute_cups_version attribute_ipp_versions attribute_printer_uris attributes cups_version major_version minor_version version_string

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-ipp-structure.json",
  "name": "Ipp",
  "description": "Ipp schema from Censys Platform API",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "attribute_cups_version": {
      "type": "string",
      "description": "The CUPS version, if any, specified in the list of attributes returned in a get-printer-attributes response or CUPS-get-printers response. Generally in the form 'x.y.z'."
    },
    "attribute_ipp_versions": {
      "type": [
        "array",
        "null"
      ],
      "description": "Each IPP version, if any, specified in the list of attributes returned in a get-printer-attributes response or CUPS-get-printers response. Always in the form 'x.y'.",
      "items": {
        "type": "string"
      }
    },
    "attribute_printer_uris": {
      "type": [
        "array",
        "null"
      ],
      "description": "Each printer URI, if any, specified in the list of attributes returned in a get-printer-attributes response or CUPS-get-printers response. Uses ipp(s) or http(s) scheme, followed by a hostname or IP, and then the path to a particular printer.",
      "items": {
        "type": "string"
      }
    },
    "attributes": {
      "type": [
        "array",
        "null"
      ],
      "description": "All IPP attributes included in any contentful responses obtained. Each has a name, list of values (potentially only one), and a tag denoting how the value should be interpreted.",
      "items": {
        "$ref": "#/components/schemas/Ipp_Attribute"
      }
    },
    "cups_version": {
      "type": "string",
      "description": "The CUPS version, if any, specified in the Server header of an IPP get-attributes response."
    },
    "major_version": {
      "type": "int32",
      "description": "Major component of IPP version listed in the Server header of a response to an IPP get-printer-attributes request.",
      "minimum": 0
    },
    "minor_version": {
      "type": "int32",
      "description": "Minor component of IPP version listed in the Server header of a response to an IPP get-printer-attributes request.",
      "minimum": 0
    },
    "version_string": {
      "type": "string",
      "description": "The specific IPP version returned in response to an IPP get-printer-attributes request. Always in the form 'IPP/x.y'"
    }
  }
}