Runloop · Schema

Runloop Api Key

JSON Schema for the Runloop api-key resource, derived from the Runloop OpenAPI schema ApiKeyCreatedView.

AIAI AgentsCoding AgentsSandboxesDevboxesCode ExecutionEvaluationBenchmarksSWE-BenchMCPSnapshotsmicroVMEnterpriseSOC 2

Properties

Name Type Description
id string
name string
key_secret string
expires_at_ms integer
View JSON Schema on GitHub

JSON Schema

runloop-api-key-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-api-key-schema.json",
  "title": "Runloop Api Key",
  "description": "JSON Schema for the Runloop api-key resource, derived from the Runloop OpenAPI schema ApiKeyCreatedView.",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "key_secret": {
      "type": "string"
    },
    "expires_at_ms": {
      "type": "integer",
      "format": "int64",
      "nullable": true
    }
  },
  "$defs": {}
}