diff --git a/v1/models/base.py b/v1/models/base.py index 562f1ea..cdabf74 100644 --- a/v1/models/base.py +++ b/v1/models/base.py @@ -26,11 +26,12 @@ class Notification(BaseModel): type: str = Field( default_factory=str, description="The type of notification" ) - url: str = Field( + url: Optional[str] = Field( description=( "Details about this notification. This value should be shown " "to your users as a 'read more' link" - ) + ), + ) title: str = Field( description=(