1from typing import TypedDict 2 3__all__ = ["ErrorSchema"] 4 5 6class ErrorSchema(TypedDict): 7 id: str 8 message: str 9 url: str