Runloop · Schema

Runloop Execution

JSON Schema for the Runloop execution resource, derived from the Runloop OpenAPI schema DevboxExecutionDetailView.

AIAI AgentsCoding AgentsSandboxesDevboxesCode ExecutionEvaluationBenchmarksSWE-BenchMCPSnapshotsmicroVMEnterpriseSOC 2

Properties

Name Type Description
devbox_id string Devbox id where command was executed.
stdout string Standard out generated by command.
stderr string Standard error generated by command.
exit_status integer Exit status of command execution.
shell_name string Shell name.
View JSON Schema on GitHub

JSON Schema

runloop-execution-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/runloop-ai/main/json-schema/runloop-execution-schema.json",
  "title": "Runloop Execution",
  "description": "JSON Schema for the Runloop execution resource, derived from the Runloop OpenAPI schema DevboxExecutionDetailView.",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "devbox_id": {
      "type": "string",
      "description": "Devbox id where command was executed."
    },
    "stdout": {
      "type": "string",
      "description": "Standard out generated by command."
    },
    "stderr": {
      "type": "string",
      "description": "Standard error generated by command."
    },
    "exit_status": {
      "type": "integer",
      "format": "int32",
      "description": "Exit status of command execution."
    },
    "shell_name": {
      "type": "string",
      "nullable": true,
      "description": "Shell name."
    }
  },
  "required": [
    "devbox_id",
    "stdout",
    "stderr",
    "exit_status"
  ],
  "$defs": {}
}