Project Endpoints
Last updated
Last updated
Projects in globalMOO define the optimization space for a model by specifying input variables and their constraints.
- Create a new project under a model
A project object contains the following fields:
id
integer
Unique identifier for the project
model_id
integer
ID of the parent model
input_count
integer
Number of input variables (must be > 0)
minimums
array[float]
Minimum values for each input variable
maximums
array[float]
Maximum values for each input variable
input_types
array[string]
Type for each input variable (see Input Types below)
categories
array[string]
Categories for category type inputs
created_at
string
ISO 8601 timestamp with millisecond precision
updated_at
string
ISO 8601 timestamp with millisecond precision
disabled_at
string
Optional ISO 8601 timestamp when project was disabled
developed_at
string
Optional ISO 8601 timestamp when project was developed
input_cases
array[array[float]]
Array of input test cases
case_count
integer
Number of test cases
Projects support the following input types:
float
- Real-valued numbers within defined min/max range
integer
- Whole numbers within defined min/max range
category
- Values from a predefined category list
boolean
- Boolean values (0 or 1)
Defining optimization parameters for a model
Setting up constraints for optimization variables
Preparing for trial runs with different input configurations