JSNotificationURLFormat
A universal link that determines how the system provides Journaling Suggestion notifications to your app.
Discussion
Add this key to your app’s Info.plist to register it as an eligible client of Journaling Suggestions notifications. The value needs to be a universal link, which consists of a base URL for your app, followed by the parameter string: {journaling-suggestion-id}, which represents the unique journaling suggestion. For example:
<base_URL>/{journaling-suggesion-id}As an alternative to including the parameter string as a path component, you can define it as a query argument. The following example specifies query argument suggestion-identifier:
<base_URL>/?suggestion-identifier={journaling-suggestion-id}The base URL is composed of a protocol identifier, your app’s domain name, and a unique path component that scopes the request to a journaling suggestion:
<protocol_identifier><domain_name>/<path_component>Here are complete example values:
# Example with a path-component argument:
http://myapp.com/journaling-suggestion/{journaling-suggesion-id}
# Example with a query-parameter argument:
http://myapp.com/journaling-suggestion-notification/?suggestion-identifier={journaling-suggesion-id}