UnderservedSportsbook
Underserved sportsbook information model
Properties
| Property | Type | Required | Description |
|---|---|---|---|
id | string | β Yes | Underserved opportunity ID |
league_name | string | β Yes | League name |
sport | string | β Yes | Sport type |
sportsbook_gap | string | β Yes | Gap in sportsbook coverage |
market_demand | string | β Yes | Market demand level |
competitive_advantage | string | β Yes | Competitive advantage |
entry_barriers | string | β Yes | Entry barriers assessment |
opportunity_value | string | β Yes | Estimated opportunity value |
Example
{
"id": "example",
"league_name": "example",
"sport": "example",
"sportsbook_gap": "example",
"market_demand": "example",
"competitive_advantage": "example",
"entry_barriers": "example",
"opportunity_value": "example"
}Used In
Not used in any documented endpoints.
Code Examples
TypeScript
interface UnderservedSportsbook {
id: string;
league_name: string;
sport: string;
sportsbook_gap: string;
market_demand: string;
competitive_advantage: string;
entry_barriers: string;
opportunity_value: string;
}
// Usage example
const data: UnderservedSportsbook = {
"id": "example",
"league_name": "example",
"sport": "example",
"sportsbook_gap": "example",
"market_demand": "example",
"competitive_advantage": "example",
"entry_barriers": "example",
"opportunity_value": "example"
};Python
from data_layer.schemas import UnderservedSportsbook
# Create instance
data = UnderservedSportsbook(
# 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 '{ "id": "example", "league_name": "example", "sport": "example", "sportsbook_gap": "example", "market_demand": "example", "competitive_advantage": "example", "entry_barriers": "example", "opportunity_value": "example" }'Validation Rules
Required Fields: id, league_name, sport, sportsbook_gap, market_demand, competitive_advantage, entry_barriers, opportunity_value
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.