schemas
This directory contains detailed schema documentation for all globalMOO API response objects.
Core Objects
Account - User account details
Model - Optimization model configuration
Project - Project parameters and settings
Trial - Trial execution and results
Objective - Optimization objectives and constraints
Inverse - Inverse optimization steps
Result - Individual objective results
Common Fields
Most response objects include these standard fields:
{
"id": 123, // Unique identifier
"created_at": "2025-01-31T10:00:00.000Z", // Creation timestamp
"updated_at": "2025-01-31T10:00:00.000Z", // Last update timestamp
"disabled_at": null // Optional disable timestamp
}
Timestamps
All timestamps follow these rules:
ISO 8601 format with millisecond precision
UTC timezone
Optional fields can be null
No future timestamps allowed
Last updated