-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add com.snowplowanalytics.snowplow/cross_navigation/jsonschema/1-0-0 (c…
…lose #1326)
- Loading branch information
1 parent
f89b6ae
commit 19866bf
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
68 changes: 68 additions & 0 deletions
68
schemas/com.snowplowanalytics.snowplow/cross_navigation/jsonschema/1-0-0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
{ | ||
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", | ||
"description": "Schema for a user and session identifiers entity included in cross platform or cross domain navigation.", | ||
"self": { | ||
"vendor": "com.snowplowanalytics.snowplow", | ||
"name": "cross_navigation", | ||
"format": "jsonschema", | ||
"version": "1-0-0" | ||
}, | ||
"type": "object", | ||
"properties": { | ||
"user_id": { | ||
"description": "The business user ID, the user was identified in the source app.", | ||
"type": [ | ||
"null", | ||
"string" | ||
], | ||
"maxLength": 4096 | ||
}, | ||
"domain_user_id": { | ||
"type": "string", | ||
"maxLength": 128, | ||
"description": "Domain user ID of the source app from which a link was followed. The corresponding atomic property is named refr_domain_userid." | ||
}, | ||
"session_id": { | ||
"type": [ | ||
"null", | ||
"string" | ||
], | ||
"format": "uuid", | ||
"description": "Session ID of the source app from which a link was followed." | ||
}, | ||
"timestamp": { | ||
"description": "Timestamp of the link click in the source app which triggered this navigation. The corresponding atomic property is named refr_dvce_tstamp.", | ||
"type": "string", | ||
"format": "date-time" | ||
}, | ||
"source_id": { | ||
"type": [ | ||
"null", | ||
"string" | ||
], | ||
"maxLength": 4096, | ||
"description": "ID of the source app where the link that started this navigation originated from." | ||
}, | ||
"source_platform": { | ||
"type": [ | ||
"null", | ||
"string" | ||
], | ||
"enum": ["web", "mob", "pc", "srv", "app", "tv", "cnsl", "iot", "headset", null], | ||
"description": "Platform of the source app (e.g., mob, web, tv)." | ||
}, | ||
"reason": { | ||
"description": "Cross navigation linking information/identifier.", | ||
"type": [ | ||
"null", | ||
"string" | ||
], | ||
"maxLength": 4096 | ||
} | ||
}, | ||
"required": [ | ||
"domain_user_id", | ||
"timestamp" | ||
], | ||
"additionalProperties": false | ||
} |