from typing import TypedDict class Notification(TypedDict): id: int title: str description: str class Notifications(TypedDict): notifications: list[Notification]