Plane docs
ApiSchemas

SandboxErrorEncoded

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

Used by sandboxes.resume, sandboxes.snapshot

JSON Schema

{
  "type": "object",
  "properties": {
    "_tag": {
      "type": "string",
      "enum": [
        "SandboxError"
      ]
    },
    "sandboxId": {
      "$ref": "#/components/schemas/SandboxId"
    },
    "message": {
      "type": "string"
    },
    "retryable": {
      "type": "boolean"
    }
  },
  "required": [
    "_tag",
    "message"
  ],
  "additionalProperties": false
}

On this page