Palo Alto Networks · JSON Structure

Prisma Cloud Compute Api Container Structure

Container schema from Palo Alto Networks Prisma Cloud Compute API

Type: object Properties: 11
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

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

Properties

_id name hostname imageId imageName state created cluster namespace vulnerabilitiesCount complianceIssuesCount

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-container-structure.json",
  "name": "Container",
  "description": "Container schema from Palo Alto Networks Prisma Cloud Compute API",
  "type": "object",
  "properties": {
    "_id": {
      "type": "string",
      "description": "Unique container identifier."
    },
    "name": {
      "type": "string",
      "description": "Container name."
    },
    "hostname": {
      "type": "string",
      "description": "Host where the container is running."
    },
    "imageId": {
      "type": "string",
      "description": "ID of the container image."
    },
    "imageName": {
      "type": "string",
      "description": "Full image name including registry, repository, and tag."
    },
    "state": {
      "type": "string",
      "description": "Current container state.",
      "enum": [
        "running",
        "created",
        "exited",
        "paused"
      ]
    },
    "created": {
      "type": "datetime",
      "description": "Container creation timestamp."
    },
    "cluster": {
      "type": "string",
      "description": "Kubernetes cluster name."
    },
    "namespace": {
      "type": "string",
      "description": "Kubernetes namespace."
    },
    "vulnerabilitiesCount": {
      "type": "int32",
      "description": "Number of vulnerabilities in the container image."
    },
    "complianceIssuesCount": {
      "type": "int32",
      "description": "Number of compliance issues for this container."
    }
  }
}