Properties
| Name | Type | Description |
|---|---|---|
| file_id | string | Unique identifier of the file. |
| name | string | Original file name. |
| status | string | Processing status of the file within the pipeline. |
| metadata | object | Custom metadata associated with the file. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PipelineFile",
"title": "PipelineFile",
"type": "object",
"description": "A file associated with a pipeline, including processing status.",
"properties": {
"file_id": {
"type": "string",
"description": "Unique identifier of the file."
},
"name": {
"type": "string",
"description": "Original file name."
},
"status": {
"type": "string",
"enum": [
"pending",
"processing",
"completed",
"error"
],
"description": "Processing status of the file within the pipeline."
},
"metadata": {
"type": "object",
"additionalProperties": true,
"description": "Custom metadata associated with the file."
}
}
}