Skip to main content

Native App Schema

One of the core components of the Intilery Schema is the track method. It records any arbitrary event that the user has triggered. For Mobile tracking, in addition to screen calls, you’ll want to send specific event names that we recognize semantically. That way, we can transform them correctly before actioning them in the Intilery CDP and Customer Engagement Platform.

By standardizing the events that comprise the core mobile application lifecycle and associated mobile campaign and referral events, Intilery can, wherever possible, automatically collect and action these events on your behalf and build downstream actions which take full advantage of the semantic meaning associated with these events and their properties.

Note: If you’re already collecting similar events, we recommend migrating to these event names so that you can take advantage of available features in our CDP and Customer Engagement Plarform which depend on the Schema as they become available.

Overview of Events#

The Intilery Native Mobile Spec includes the following semantic events:

Application Lifecycle Events

Campaign Events

We recommend using the above event names if you’re going to be integrating the events yourself. This will ensure that they can be mapped effectively in the CDP and Customer Engagement Platform

Additionally, though they’re not formally part of the Native Mobile Schema, we also collect Order Completed from our ecommerce spec automatically upon in-app purchases on iOS and can collect screen views automatically in iOS and Android.

Lifecycle Events#

Mobile applications live within a fairly bounded lifecycle. In order to understand and communicate effectively with your users, it’s crucial to instrument the core flows associated with installing and opening your app. The following events, many of which we can capture automatically in the latest versions of our SDKs (whenthey become available), allow you to get a picture of top-line metrics like DAUs, MAUs, Screen Views per session, etc. Automatic tracking of lifecycle events is completely optional.

The following events will be tracked automatically when lifecycle events are enabled:

Application Installed#

This event fires when a user first opens your mobile application. Note, if the user never opens your app after installing, we will not be able to collect this event. This event does not wait for attribution or campaign information to be received, and is collected automatically by our SDKs.

{  "userId": "019mr8mf4r",  "type": "track",  "event": "Application Installed",  "properties": {    "version": "1.2.3", "build": "1234"  }}
PropertyTypeDescription
versionStringThe version installed.
buildStringThe build number of the installed app.

Application Opened#

This event fires when a user launches or foregrounds your mobile application after the first open. It will fire after the Application Installed event and again after the app is re-opened after being closed. This event does not wait for attribution information to be received but may include information about referring applications or deep link URLs if available to the application upon open.

{  "userId": "019mr8mf4r",  "type": "track",  "event": "Application Opened",  "properties": {    "from_background": false,    "referring_application": "GMail",    "url": "url://location"  }}
PropertyTypeDescription
from_backgroundBooleanIf application transitioned from “Background” to “Inactive” state prior to foregrounding (as opposed to from “Not Running” state).
urlStringThe value of UIApplicationLaunchOptionsURLKey from launchOptions.Collected on iOS only.
referring_applicationStringThe value of UIApplicationLaunchOptionsSourceApplicationKey from launchOptions. Automatically collected on iOS only.
versionStringThe version installed.
buildStringThe build number of the installed app.

Application Backgrounded#

This event should be sent when a user backgrounds the application upon applicationDidEnterBackground

{  "userId": "019mr8mf4r",  "type": "track",  "event": "Application Backgrounded",  "properties": {}}

Application Updated#

This event fires when a user updates the application. Our SDK will automatically collect this event in lieu of an “Application Opened” event when we determine that the Open is first since an update.

{  "userId": "019mr8mf4r",  "type": "track",  "event": "Application Updated",  "properties": {    "previous_version": "1.1.2",    "previous_build": "1234",    "version": "1.2.0",    "build": "1456"  }}
PropertyTypeDescription
previous_versionStringThe previously recorded version.
previous_buildStringThe previously recorded build.
versionStringThe new version.
buildStringThe new build.

Application Uninstalled#

Fire this event when a user uninstalls the application. Several destination partners will detect this for you using Silent Push Notifications and send this event to Intilery on your behalf.

{  "userId": "019mr8mf4r",  "type": "track",  "event": "Application Uninstalled",  "properties": {}}

Application Crashed#

You can send this event when you receive a crash notification from your app, but is not meant to supplant traditional crash reporting tools. By tracking crashes as an analytics event with device and user information, you can analyze the which types of users are impacted by crashes and how those crashes, in turn, affect their engagement. You may also want to target those customers with tailored communications in other channels if they’ve encountered several crashes.

{  "userId": "019mr8mf4r",  "type": "track",  "event": "Application Crashed",  "properties": {}}

Campaign Events#

As the walls between apps become increasingly lowered, capturing information about the content and campaigns that drive users to engage with your app is critical to building more targeted, relevant, personalized experiences for your users.

Install Attributed#

{  "userId": "019mr8mf4r",  "type": "track",  "event": "Install Attributed",  "properties": {    "provider": "Tune/Kochava/Branch/AppsFlyer",    "campaign": {      "source": "Network/FB/AdWords/MoPub/Source",      "name": "Campaign Name",      "content": "Organic Content Title",      "ad_creative": "Red Hello World Ad",      "ad_group": "Red Ones"    }  }}
PropertyTypeDescription
providerStringThe attribution provider.
campaign[source]StringCampaign source — attributed ad network
campaign[name]StringThe name of the attributed campaign.
campaign[medium]StringIdentifies what type of link was used.
campaign[content]StringThe content of the campaign.
campaign[ad_creative]StringThe ad creative name.
campaign[ad_group]StringThe ad group name.

Push Notification Received#

This event can be sent when a push notification is received in the app. It can be automatically enabled on iOS SDK

{  "userId": "019mr8mf4r",  "type": "track",  "event": "Push Notification Received",  "properties": {    "campaign": {      "medium": "Push",      "source": "Vendor Name",      "name": "Referral Flow",      "content": "Your friend invited you to play a match."    }  }}
PropertyTypeDescription
campaign[name]StringCampaign Name.
campaign[medium]StringIdentifies what type of link was used (Push Notification).
campaign[content]StringPush notification content.
campaign[source]StringDesignates the push provider. (Optional)

Push Notification Tapped#

This event can be sent when a user taps on a push notification associated with your app. It can be automatically enabled on iOS SDK

{  "userId": "019mr8mf4r",  "type": "track",  "event": "Push Notification Tapped",  "properties": {    "action": "Accept",    "campaign": {      "medium": "Push",      "source": "Vendor Name",      "name": "Referral Flow",      "content": "Your friend invited you to play a match."    }  }}
PropertyTypeDescription
actionStringIf this notification is “actionable”, the custom action tapped. Default: “Open”
campaign[name]StringCampaign Name.
campaign[medium]StringIdentifies what type of link was used (Push Notification).
campaign[content]StringPush notification content content
campaign[source]StringDesignates the push provider. (Optional)

Push Notification Bounced#

This event fires when a push notification from a provider bounces. If your push notification provider forwards push lifecycle events to Intilery, they should include this event in their suite.

{  "userId": "019mr8mf4r",  "type": "track",  "event":"Push Notification Bounced",  "properties": {    "action": "Accept",    "campaign": {      "medium": "Push",      "source": "Vendor Name",      "name": "Referral Flow",      "content": "Your friend invited you to play a match."    }  }}
PropertyTypeDescription
actionStringIf this notification is “actionable”, the custom action tapped. Default: “Open”
campaign[name]StringCampaign Name.
campaign[medium]StringIdentifies what type of link was used (Push Notification).
campaign[content]StringPush notification content content
campaign[source]StringDesignates the push provider. (Optional)

Deep Link Opened#

When your application is opened using a referring link, Intilery or your packaged deep link partner can fire this event on your behalf.

This event is fired in addition to the associated Application Opened event.

Our iOS SDK SDK can collect this event automatically if configured to do so.

{  "userId": "019mr8mf4r",  "type": "track",  "event": "Deep Link Opened",  "properties": {    "provider": "Branch Metrics",    "url": "app://landing"  }}
PropertyTypeDescription
providerStringThe deep link provider.
urlStringThe App URL opened.

Deep Link Clicked#

This event may be provided by deep link providers postback mechanisms or an internal redirect service if you use one in order to provide a waypoint funnel step between your content or advertisement and the resulting app open.

{  "userId": "019mr8mf4r",  "type": "track",  "event": "Deep Link Clicked",  "properties": {    "provider": "Branch Metrics",    "url": "brnch.io/1234"  }}
PropertyTypeDescription
providerStringThe deep link provider.
urlStringThe deep link URL clicked.