Model Schema
Structure
{
"id": 123, // 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
"name": "Production Optimization", // Model name
"description": "Optimization model for production planning", // Optional description
"projects": [ // Associated projects
{
"id": 456,
"createdAt": "2025-01-31T10:00:00.000Z",
"updatedAt": "2025-01-31T10:00:00.000Z",
"disabledAt": null,
"name": "Q1 Planning",
"description": "First quarter production planning",
"configuration": {
"parameters": {
"max_iterations": 1000,
"convergence_threshold": 0.001
}
}
}
]
}Fields
Field
Type
Description
SDK Representations
JavaScript SDK
Python SDK
PHP SDK
Examples
Simple Model
Model with Projects
Related Endpoints
Last updated