Plain is headed towards 1.0! Subscribe for development updates →
1from typing import TypedDict 2 3 4class ErrorSchema(TypedDict): 5 id: str 6 message: str 7 url: str | None