Objective Schema
Structure
{
"id": 321, // Unique identifier
"createdAt": "2025-01-31T10:00:00.000Z", // Creation timestamp
"updatedAt": "2025-01-31T10:00:00.000Z", // Last update timestamp
"disabledAt": null, // Optional disable timestamp
"optimalInverse": { // Optional reference to the optimal inverse solution
"id": 456,
// ... other inverse properties
},
"attemptCount": 10, // Number of optimization attempts
"stopReason": 1, // Reason optimization stopped (enum)
"desiredL1Norm": 0.05, // Desired L1 norm for optimization
"objectives": [1500000, 850000], // Target objective values
"objectiveTypes": ["maximize", "minimize"], // Type of each objective
"minimumBounds": [1000000, 700000], // Minimum bounds for each objective
"maximumBounds": [2000000, 1000000], // Maximum bounds for each objective
"inverses": [ // Array of inverse optimization steps
{
"id": 789,
// ... other inverse properties
}
]
}Fields
Field
Type
Description
Stop Reason Values
Value
Name
Description
Objective Types
Type
Description
SDK Representations
JavaScript SDK
Python SDK
PHP SDK
Examples
Optimization in Progress
Completed Optimization
Related Endpoints
Last updated