Runloop · Schema

Runloop Secret

A Secret represents a key-value pair that can be securely stored and used in Devboxes as environment variables.

AIAI AgentsCoding AgentsSandboxesDevboxesCode ExecutionEvaluationBenchmarksSWE-BenchMCPSnapshotsmicroVMEnterpriseSOC 2

Properties

Name Type Description
id string The unique identifier of the Secret.
name string The globally unique name of the Secret. Used as the environment variable name in Devboxes.
create_time_ms integer Creation time of the Secret (Unix timestamp in milliseconds).
update_time_ms integer Last update time of the Secret (Unix timestamp in milliseconds).
View JSON Schema on GitHub

JSON Schema

runloop-secret-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-secret-schema.json",
  "title": "Runloop Secret",
  "description": "A Secret represents a key-value pair that can be securely stored and used in Devboxes as environment variables.",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the Secret."
    },
    "name": {
      "type": "string",
      "description": "The globally unique name of the Secret. Used as the environment variable name in Devboxes."
    },
    "create_time_ms": {
      "type": "integer",
      "format": "int64",
      "description": "Creation time of the Secret (Unix timestamp in milliseconds)."
    },
    "update_time_ms": {
      "type": "integer",
      "format": "int64",
      "description": "Last update time of the Secret (Unix timestamp in milliseconds)."
    }
  },
  "required": [
    "id",
    "name",
    "create_time_ms",
    "update_time_ms"
  ],
  "$defs": {}
}