{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/runloop-ai/main/json-schema/runloop-execution-schema.json", "title": "Runloop Execution", "description": "JSON Schema for the Runloop execution resource, derived from the Runloop OpenAPI schema DevboxExecutionDetailView.", "type": "object", "additionalProperties": false, "properties": { "devbox_id": { "type": "string", "description": "Devbox id where command was executed." }, "stdout": { "type": "string", "description": "Standard out generated by command." }, "stderr": { "type": "string", "description": "Standard error generated by command." }, "exit_status": { "type": "integer", "format": "int32", "description": "Exit status of command execution." }, "shell_name": { "type": "string", "nullable": true, "description": "Shell name." } }, "required": [ "devbox_id", "stdout", "stderr", "exit_status" ], "$defs": {} }