Palo Alto Networks · JSON Structure

Prisma Cloud Compute Api Ci Scan Structure

CIScan schema from Palo Alto Networks Prisma Cloud Compute API

Type: object Properties: 5
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

CIScan is a JSON Structure definition published by Palo Alto Networks, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

entityInfo pass vulnerabilitiesCount complianceIssuesCount vulnerabilityDistribution

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/palo-alto-networks/refs/heads/main/json-structure/prisma-cloud-compute-api-ci-scan-structure.json",
  "name": "CIScan",
  "description": "CIScan schema from Palo Alto Networks Prisma Cloud Compute API",
  "type": "object",
  "properties": {
    "entityInfo": {
      "type": "object",
      "properties": {
        "_id": {
          "type": "string"
        },
        "type": {
          "type": "string",
          "enum": [
            "ciImage",
            "ciServerless",
            "ciIaC"
          ]
        },
        "hostname": {
          "type": "string"
        },
        "scanTime": {
          "type": "datetime"
        }
      }
    },
    "pass": {
      "type": "boolean",
      "description": "Whether the scan passed the configured policy thresholds."
    },
    "vulnerabilitiesCount": {
      "type": "int32"
    },
    "complianceIssuesCount": {
      "type": "int32"
    },
    "vulnerabilityDistribution": {
      "type": "object",
      "properties": {
        "critical": {
          "type": "int32"
        },
        "high": {
          "type": "int32"
        },
        "medium": {
          "type": "int32"
        },
        "low": {
          "type": "int32"
        }
      }
    }
  }
}