Project Schema
Structure
{
"id": 456, // 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
"developedAt": "2025-01-31T15:00:00.000Z", // Timestamp when project was developed
"name": "Q1 Planning", // Project name
"inputCount": 3, // Number of input variables
"minimums": [0, 0, 0], // Minimum values for each input
"maximums": [1, 1, 1], // Maximum values for each input
"inputTypes": ["float", "float", "float"], // Type of each input variable
"categories": [ // Categories for categorical inputs
["red", "green", "blue"],
[],
[]
],
"inputCases": [ // Input test cases
[0.1, 0.2, 0.7],
[0.3, 0.3, 0.4],
[0.5, 0.1, 0.4]
],
"caseCount": 3, // Number of test cases
"trials": [ // Associated trials
{
"id": 789,
// ... other trial properties
}
]
}Fields
Field
Type
Description
Input Types
Type
Description
SDK Representations
JavaScript SDK
Python SDK
PHP SDK
Examples
Simple Project
Project with Categorical Inputs
Related Endpoints
Last updated