Mistral AI · Schema
Integration
Properties
| Name | Type | Description |
|---|---|---|
| type | string | Integration type |
| project | string | Project name for the integration |
| name | string | Run name for the integration |
| api_key | string | API key for the integration service |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Integration",
"title": "Integration",
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"wandb"
],
"description": "Integration type"
},
"project": {
"type": "string",
"description": "Project name for the integration"
},
"name": {
"type": "string",
"description": "Run name for the integration"
},
"api_key": {
"type": "string",
"description": "API key for the integration service"
}
}
}