{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TrainingFile",
"title": "TrainingFile",
"type": "object",
"required": [
"file_id"
],
"properties": {
"file_id": {
"type": "string",
"format": "uuid",
"description": "The ID of the uploaded training file."
},
"weight": {
"type": "number",
"description": "The weight of this training file in the training mix.",
"default": 1.0
}
}
}