Trial Schema
This document describes the Trial object schema returned by the globalMOO API.
Structure
Fields
id
integer
Unique identifier for the trial
created_at
string (ISO 8601)
Timestamp when the trial was created
updated_at
string (ISO 8601)
Timestamp when the trial was last updated
disabled_at
string (ISO 8601) or null
Timestamp when the trial was disabled, null if active
project_id
integer
ID of the parent project
status
string
Current status of the trial (pending, running, completed, failed)
start_time
string (ISO 8601)
Timestamp when trial execution started
end_time
string (ISO 8601) or null
Timestamp when trial execution ended, null if not completed
duration
number
Duration of the trial in seconds
iteration_count
integer
Number of iterations completed
stop_reason
string
Reason for trial stopping (convergence, max_iterations, error, manual)
configuration
object
Trial-specific configuration parameters
metrics
object
Performance metrics for the trial
results
Results for each objective
checkpoints
array
List of checkpoint data during trial execution
Status Values
pending
Trial has been created but execution has not started
running
Trial is currently executing
completed
Trial has completed successfully
failed
Trial failed to complete due to an error
cancelled
Trial was manually cancelled
Stop Reason Values
convergence
Trial stopped due to convergence (reached threshold)
max_iterations
Trial stopped after reaching maximum number of iterations
error
Trial stopped due to an error
manual
Trial was manually stopped by a user
timeout
Trial stopped due to reaching maximum allowed execution time
Examples
Running Trial
Completed Trial
Related Endpoints
Last updated