Body_process_questionnaire_unified_api_questionnaire_process__framework__post
Body_process_questionnaire_unified_api_questionnaire_process__framework__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_process_questionnaire_unified_api_questionnaire_process__framework__post {
file: string;
}
// Usage example
const data: Body_process_questionnaire_unified_api_questionnaire_process__framework__post = {
"file": "example"
};Python
from data_layer.schemas import Body_process_questionnaire_unified_api_questionnaire_process__framework__post
# Create instance
data = Body_process_questionnaire_unified_api_questionnaire_process__framework__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.