Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add com.snowplowanalytics.snowplow/cross_navigation/jsonschema/1-0-0 #1327

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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": {
adatzer marked this conversation as resolved.
Show resolved Hide resolved
"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": {
adatzer marked this conversation as resolved.
Show resolved Hide resolved
"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", null],
"description": "Platform of the source app (e.g., mobile, web, tablet app)."
},
"reason": {
"description": "Cross navigation linking information/identifier.",
"type": [
"null",
"string"
],
"maxLength": 4096
}
},
"required": [
"domain_user_id",
adatzer marked this conversation as resolved.
Show resolved Hide resolved
"timestamp"
adatzer marked this conversation as resolved.
Show resolved Hide resolved
],
"additionalProperties": false
}