Schema Registry
api__contracts__PipelineStatusResponse

PipelineStatusResponse

Response with pipeline status

Properties

PropertyTypeRequiredDescription
statusstringβœ… YesStatus: 'success' or 'error'
pipeline_statusobject❌ NoCurrent pipeline status
current_stageobject❌ NoCurrent stage (1-6)
progress_percentageobject❌ NoOverall progress
stage_detailsobject❌ NoDetails for each stage
errorobject❌ NoError message if status is 'error'

Example

{
  "status": "example",
  "pipeline_status": {},
  "current_stage": {},
  "progress_percentage": {},
  "stage_details": {},
  "error": {}
}

Used In

Code Examples

TypeScript

interface api__contracts__PipelineStatusResponse {
  status: string;
  pipeline_status?: any;
  current_stage?: any;
  progress_percentage?: any;
  stage_details?: any;
  error?: any;
}
 
// Usage example
const data: api__contracts__PipelineStatusResponse = {
  "status": "example",
  "pipeline_status": {},
  "current_stage": {},
  "progress_percentage": {},
  "stage_details": {},
  "error": {}
};

Python

from data_layer.schemas import api__contracts__PipelineStatusResponse
 
# Create instance
data = api__contracts__PipelineStatusResponse(
    # 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 '{   "status": "example",   "pipeline_status": {},   "current_stage": {},   "progress_percentage": {},   "stage_details": {},   "error": {} }'

Validation Rules

Required Fields: status

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.

Platform

Documentation

Community

Support

partnership@altsportsdata.comdev@altsportsleagues.ai

2025 Β© AltSportsLeagues.ai. Powered by AI-driven sports business intelligence.

πŸ€– AI-Enhancedβ€’πŸ“Š Data-Drivenβ€’βš‘ Real-Time