Plane docs
ApiSchemas

AgentNotReadyEncoded

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

Used by sessions.create

JSON Schema

{
  "type": "object",
  "properties": {
    "_tag": {
      "type": "string",
      "enum": [
        "AgentNotReady"
      ]
    },
    "agentId": {
      "$ref": "#/components/schemas/AgentId"
    },
    "version": {
      "$ref": "#/components/schemas/AgentVersionNumber"
    },
    "status": {
      "$ref": "#/components/schemas/ImageStatus"
    },
    "error": {
      "type": "string"
    }
  },
  "required": [
    "_tag",
    "agentId",
    "version",
    "status"
  ],
  "additionalProperties": false
}

On this page