Runloop · Schema

Runloop Object

An Object represents a stored data entity with metadata.

Artificial IntelligenceAI AgentsCoding AgentsSandboxesDevboxesCode ExecutionEvaluationBenchmarksSWE-BenchMCPSnapshotsMicroVMEnterpriseSOC 2

Properties

Name Type Description
id string The unique identifier of the Object.
name string The name of the Object.
state object The current state of the Object.
size_bytes integer The size of the Object content in bytes (null until uploaded).
content_type object The content type of the Object.
create_time_ms integer The creation time of the Object in milliseconds since epoch.
delete_after_time_ms integer The time after which the Object will be deleted in milliseconds since epoch.
metadata object User defined metadata to attach to the Object for organization.
upload_url string Presigned URL for uploading content to S3 (only present on create).
View JSON Schema on GitHub

JSON Schema

runloop-object-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-object-schema.json",
  "title": "Runloop Object",
  "description": "An Object represents a stored data entity with metadata.",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the Object."
    },
    "name": {
      "type": "string",
      "description": "The name of the Object."
    },
    "state": {
      "$ref": "#/$defs/ObjectState",
      "description": "The current state of the Object."
    },
    "size_bytes": {
      "type": "integer",
      "format": "int64",
      "nullable": true,
      "description": "The size of the Object content in bytes (null until uploaded)."
    },
    "content_type": {
      "$ref": "#/$defs/ContentType",
      "description": "The content type of the Object."
    },
    "create_time_ms": {
      "type": "integer",
      "format": "int64",
      "description": "The creation time of the Object in milliseconds since epoch."
    },
    "delete_after_time_ms": {
      "type": "integer",
      "format": "int64",
      "nullable": true,
      "description": "The time after which the Object will be deleted in milliseconds since epoch."
    },
    "metadata": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "nullable": true,
      "description": "User defined metadata to attach to the Object for organization."
    },
    "upload_url": {
      "type": "string",
      "nullable": true,
      "description": "Presigned URL for uploading content to S3 (only present on create)."
    }
  },
  "required": [
    "id",
    "name",
    "state",
    "content_type",
    "create_time_ms"
  ],
  "$defs": {
    "ObjectState": {
      "type": "string",
      "enum": [
        "UPLOADING",
        "READ_ONLY",
        "DELETED",
        "ERROR"
      ]
    },
    "ContentType": {
      "type": "string",
      "enum": [
        "unspecified",
        "text",
        "binary",
        "gzip",
        "tar",
        "tgz"
      ]
    }
  }
}

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-object"
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.