from pydantic import BaseModel from typing import List from models.form import Form class Solution(BaseModel): response_id: int forms: List[Form]