# ExactPolicyNode


[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
{
  "allOf": [
    {
      "properties": {
        "source": {
          "$ref": "#/components/schemas/ExactPolicySource",
          "description": "source is required on constants and destinations and absent on Boolean operators."
        }
      }
    },
    {
      "oneOf": [
        {
          "properties": {
            "all": {
              "$ref": "#/components/schemas/ExactPolicyOperands",
              "description": "all intersects every operand."
            }
          },
          "required": [
            "all"
          ],
          "title": "all",
          "type": "object"
        },
        {
          "properties": {
            "any": {
              "$ref": "#/components/schemas/ExactPolicyOperands",
              "description": "any unions its operands without discarding enclosing ceilings."
            }
          },
          "required": [
            "any"
          ],
          "title": "any",
          "type": "object"
        },
        {
          "properties": {
            "constant": {
              "$ref": "#/components/schemas/ExactPolicyConstant",
              "description": "constant explicitly allows or denies independently of the destination.",
              "not": {
                "enum": [
                  "unspecified"
                ]
              }
            }
          },
          "required": [
            "constant"
          ],
          "title": "constant",
          "type": "object"
        },
        {
          "properties": {
            "destination": {
              "$ref": "#/components/schemas/ExactDestination",
              "description": "destination matches only its declared DNS or IP kind."
            }
          },
          "required": [
            "destination"
          ],
          "title": "destination",
          "type": "object"
        },
        {
          "properties": {
            "not": {
              "description": "not negates one earlier node.",
              "type": "integer"
            }
          },
          "required": [
            "not"
          ],
          "title": "not",
          "type": "object"
        }
      ]
    }
  ],
  "description": "ExactPolicyNode is topologically ordered; references must precede this node.",
  "title": "ExactPolicyNode",
  "type": "object"
}
```



