Share feedback
Answers are generated based on the documentation.

Experimental

Schema

AppliedKit

Type: object

AppliedKit records kit content that was applied to a sandbox.
appliedAt

Schema: Timestamp

applied_at is when the kit became active.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/Timestamp",
  "description": "applied_at is when the kit became active."
}
digest

Type: string

digest identifies the exact applied content.
All schema constraints and annotations
{
  "description": "digest identifies the exact applied content.",
  "type": "string"
}
kind · required

Type: string

kind is normalized to "sandbox" or "mixin".
All schema constraints and annotations
{
  "description": "kind is normalized to \"sandbox\" or \"mixin\".",
  "enum": [
    "sandbox",
    "mixin"
  ],
  "type": "string"
}
ref

Type: string

ref is the kit reference supplied or resolved by the backend.
All schema constraints and annotations
{
  "description": "ref is the kit reference supplied or resolved by the backend.",
  "type": "string"
}
All schema constraints and annotations
{
  "description": "AppliedKit records kit content that was applied to a sandbox.",
  "properties": {
    "appliedAt": {
      "$ref": "#/components/schemas/Timestamp",
      "description": "applied_at is when the kit became active."
    },
    "digest": {
      "description": "digest identifies the exact applied content.",
      "type": "string"
    },
    "kind": {
      "description": "kind is normalized to \"sandbox\" or \"mixin\".",
      "enum": [
        "sandbox",
        "mixin"
      ],
      "type": "string"
    },
    "ref": {
      "description": "ref is the kit reference supplied or resolved by the backend.",
      "type": "string"
    }
  },
  "required": [
    "kind"
  ],
  "title": "AppliedKit",
  "type": "object"
}