{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-ipp-schema.json", "title": "Ipp", "description": "Ipp schema from Asset Graph API", "type": "object", "properties": { "attribute_cups_version": { "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'.", "type": "string" }, "attribute_ipp_versions": { "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" }, "type": [ "array", "null" ] }, "attribute_printer_uris": { "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" }, "type": [ "array", "null" ] }, "attributes": { "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" }, "type": [ "array", "null" ] }, "cups_version": { "description": "The CUPS version, if any, specified in the Server header of an IPP get-attributes response.", "type": "string" }, "major_version": { "description": "Major component of IPP version listed in the Server header of a response to an IPP get-printer-attributes request.", "format": "int32", "minimum": 0, "type": "integer" }, "minor_version": { "description": "Minor component of IPP version listed in the Server header of a response to an IPP get-printer-attributes request.", "format": "int32", "minimum": 0, "type": "integer" }, "version_string": { "description": "The specific IPP version returned in response to an IPP get-printer-attributes request. Always in the form 'IPP/x.y'", "type": "string" } }, "additionalProperties": false }