Plane docs
ApiSchemas

SandboxSnapshot

One shape from the contract, as it appears on the wire.

Used by sandboxes.get, sandboxes.list, sandboxes.release, sandboxes.resume, sandboxes.snapshot

Referenced from Sandbox

JSON Schema

{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1
    },
    "sandboxId": {
      "$ref": "#/components/schemas/SandboxId"
    },
    "provider": {
      "$ref": "#/components/schemas/SandboxProviderName"
    },
    "ref": {
      "type": "string",
      "minLength": 1
    },
    "createdAt": {
      "type": "string"
    },
    "reason": {
      "type": "string",
      "enum": [
        "idle",
        "periodic",
        "manual"
      ]
    }
  },
  "required": [
    "id",
    "sandboxId",
    "provider",
    "ref",
    "createdAt"
  ],
  "additionalProperties": false
}

On this page