{ "$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": {} }