Runloop · Schema

Runloop Benchmark Run

A BenchmarkRunView represents a run of a complete set of Scenarios, organized under a Benchmark or created by a BenchmarkJob.

Artificial IntelligenceAI AgentsCoding AgentsSandboxesDevboxesCode ExecutionEvaluationBenchmarksSWE-BenchMCPSnapshotsMicroVMEnterpriseSOC 2

Properties

Name Type Description
id string The ID of the BenchmarkRun.
benchmark_id string The ID of the Benchmark definition. Present if run was created from a benchmark definition.
name string The name of the BenchmarkRun.
start_time_ms integer The time the benchmark run execution started (Unix timestamp milliseconds).
duration_ms integer The duration for the BenchmarkRun to complete.
state object The state of the BenchmarkRun.
score number The final score across the BenchmarkRun, present once completed. Calculated as sum of scenario scores / number of scenario runs.
metadata object User defined metadata to attach to the benchmark run for organization.
purpose string Purpose of the run.
environment_variables object Environment variables used to run the benchmark.
secrets_provided object User secrets used to run the benchmark. Example: {"DB_PASS": "DATABASE_PASSWORD"} would set the environment variable 'DB_PASS' on all scenario devboxes to the value of the secret 'DATABASE_PASSWORD'.
View JSON Schema on GitHub

JSON Schema

runloop-benchmark-run-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-benchmark-run-schema.json",
  "title": "Runloop Benchmark Run",
  "description": "A BenchmarkRunView represents a run of a complete set of Scenarios, organized under a Benchmark or created by a BenchmarkJob.",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the BenchmarkRun."
    },
    "benchmark_id": {
      "type": "string",
      "nullable": true,
      "description": "The ID of the Benchmark definition. Present if run was created from a benchmark definition."
    },
    "name": {
      "type": "string",
      "nullable": true,
      "description": "The name of the BenchmarkRun."
    },
    "start_time_ms": {
      "type": "integer",
      "format": "int64",
      "description": "The time the benchmark run execution started (Unix timestamp milliseconds)."
    },
    "duration_ms": {
      "type": "integer",
      "format": "int64",
      "nullable": true,
      "description": "The duration for the BenchmarkRun to complete."
    },
    "state": {
      "$ref": "#/$defs/BenchmarkRunState",
      "description": "The state of the BenchmarkRun."
    },
    "score": {
      "type": "number",
      "format": "float",
      "nullable": true,
      "description": "The final score across the BenchmarkRun, present once completed. Calculated as sum of scenario scores / number of scenario runs."
    },
    "metadata": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "User defined metadata to attach to the benchmark run for organization."
    },
    "purpose": {
      "type": "string",
      "nullable": true,
      "description": "Purpose of the run."
    },
    "environment_variables": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "nullable": true,
      "description": "Environment variables used to run the benchmark."
    },
    "secrets_provided": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "nullable": true,
      "description": "User secrets used to run the benchmark. Example: {\"DB_PASS\": \"DATABASE_PASSWORD\"} would set the environment variable 'DB_PASS' on all scenario devboxes to the value of the secret 'DATABASE_PASSWORD'."
    }
  },
  "required": [
    "id",
    "start_time_ms",
    "state",
    "metadata"
  ],
  "$defs": {
    "BenchmarkRunState": {
      "type": "string",
      "enum": [
        "running",
        "canceled",
        "completed",
        "failed"
      ]
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/runloop-benchmark-run"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.