Body_generate_contract_terms_api_contracts_generate_terms_post
Body_generate_contract_terms_api_contracts_generate_terms_post data model
Properties
| Property | Type | Required | Description |
|---|---|---|---|
league_profile | object | β Yes | - |
term_adjustments | object | β No | - |
Example
{
"league_profile": {},
"term_adjustments": {}
}Used In
Code Examples
TypeScript
interface Body_generate_contract_terms_api_contracts_generate_terms_post {
league_profile: Record<string, any>;
term_adjustments?: any;
}
// Usage example
const data: Body_generate_contract_terms_api_contracts_generate_terms_post = {
"league_profile": {},
"term_adjustments": {}
};Python
from data_layer.schemas import Body_generate_contract_terms_api_contracts_generate_terms_post
# Create instance
data = Body_generate_contract_terms_api_contracts_generate_terms_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 '{ "league_profile": {}, "term_adjustments": {} }'Validation Rules
Required Fields: league_profile
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.