Body_upload_file_api_pipeline_start_post
Body_upload_file_api_pipeline_start_post data model
Properties
| Property | Type | Required | Description |
|---|---|---|---|
file | string | β Yes | - |
Example
{
"file": "example"
}Used In
Not used in any documented endpoints.
Code Examples
TypeScript
interface Body_upload_file_api_pipeline_start_post {
file: string;
}
// Usage example
const data: Body_upload_file_api_pipeline_start_post = {
"file": "example"
};Python
from data_layer.schemas import Body_upload_file_api_pipeline_start_post
# Create instance
data = Body_upload_file_api_pipeline_start_post(
# Add your field values here
)cURL
curl -X POST "https://altsportsleagues-backend-2qcdjegnaa-uc.a.run.app/api/endpoint" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{ "file": "example" }'Validation Rules
Required Fields: file
Additional Information
- Type: object
- Source: Generated from Pydantic models in
data_layer/schemas/ - Auto-validated: All fields are validated by FastAPI
This documentation is auto-generated from the OpenAPI specification.