{ "$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." } } }