# PolicyLogEntry


[API catalog](/reference/api/) · [Docker Sandboxes overview](/reference/api/sandboxes/latest/) · [Product manual](https://docs.docker.com/ai/sandboxes-api/) · [OpenAPI specification](/reference/api/sandboxes/api.yaml)

API version: v1


> This API is experimental. Features, interfaces,
> and behavior may change.




Schema constraints and annotations:

```json
{
  "description": "PolicyLogEntry is an aggregated observed policy decision.",
  "properties": {
    "count": {
      "description": "count is the number of coalesced observations.",
      "format": "int64",
      "type": [
        "integer",
        "string"
      ]
    },
    "decision": {
      "$ref": "#/components/schemas/PolicyDecision",
      "description": "decision is the observed allow or block outcome."
    },
    "domain": {
      "$ref": "#/components/schemas/PolicyDomain",
      "description": "domain is the policy domain that emitted the entry."
    },
    "firstSeen": {
      "$ref": "#/components/schemas/Timestamp",
      "description": "first_seen is the first observation timestamp."
    },
    "lastSeen": {
      "$ref": "#/components/schemas/Timestamp",
      "description": "last_seen is the most recent observation timestamp."
    },
    "proxyType": {
      "description": "proxy_type is the proxy or enforcement path that observed the decision.",
      "type": "string"
    },
    "reason": {
      "description": "reason is backend-readable context.",
      "type": "string"
    },
    "resource": {
      "description": "resource is the requested destination or resource.",
      "type": "string"
    },
    "rule": {
      "description": "rule is the matching rule when available.",
      "type": "string"
    },
    "sandbox": {
      "description": "sandbox is the resource name recorded for this reference.",
      "type": "string"
    },
    "sandboxUid": {
      "description": "sandbox_uid retains the observed backing incarnation when the backend provides one.",
      "readOnly": true,
      "type": [
        "string",
        "null"
      ]
    }
  },
  "title": "PolicyLogEntry",
  "type": "object"
}
```



