Runloop · Schema

Runloop Axon

JSON Schema for the Runloop axon resource, derived from the Runloop OpenAPI schema AxonView.

AIAI AgentsCoding AgentsSandboxesDevboxesCode ExecutionEvaluationBenchmarksSWE-BenchMCPSnapshotsmicroVMEnterpriseSOC 2

Properties

Name Type Description
id string The axon identifier.
name string The name of the axon.
created_at_ms integer Creation time in milliseconds since epoch.
View JSON Schema on GitHub

JSON Schema

runloop-axon-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-axon-schema.json",
  "title": "Runloop Axon",
  "description": "JSON Schema for the Runloop axon resource, derived from the Runloop OpenAPI schema AxonView.",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "description": "The axon identifier."
    },
    "name": {
      "type": "string",
      "nullable": true,
      "description": "The name of the axon."
    },
    "created_at_ms": {
      "type": "integer",
      "format": "int64",
      "description": "Creation time in milliseconds since epoch."
    }
  },
  "required": [
    "id",
    "created_at_ms"
  ],
  "$defs": {}
}