# KitFieldOutcome


[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": "KitFieldOutcome identifies one non-applied declaration without exposing its value.",
  "properties": {
    "digest": {
      "description": "digest is the resolved content identity when resolution succeeded.",
      "type": "string"
    },
    "disposition": {
      "$ref": "#/components/schemas/KitFieldDisposition",
      "description": "disposition never claims that an accepted declaration has executed.",
      "not": {
        "enum": [
          "unspecified"
        ]
      }
    },
    "fieldPath": {
      "description": "field_path is an RFC 6901 pointer into the pinned JSON artifact.",
      "type": "string"
    },
    "kitIndex": {
      "description": "kit_index is the zero-based position in the originating request's kits.",
      "exclusiveMaximum": 64,
      "type": "integer"
    },
    "reason": {
      "$ref": "#/components/schemas/KitFieldReason",
      "description": "reason is a bounded category, not caller-controlled diagnostic content.",
      "not": {
        "enum": [
          "unspecified"
        ]
      }
    },
    "reasonText": {
      "description": "reason_text contains nonsecret explanatory text, never values or command content.",
      "type": "string"
    },
    "ref": {
      "description": "ref preserves the exact requested kit reference.",
      "type": "string"
    }
  },
  "required": [
    "ref",
    "fieldPath",
    "disposition",
    "reason"
  ],
  "title": "KitFieldOutcome",
  "type": "object"
}
```



