Skip to content

Commit

Permalink
Add com.snowplowanalytics.mobile/list_item_view/jsonschema/1-0-0 (close
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed Dec 12, 2023
1 parent ca2cf59 commit fd1e2c1
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"description": "Schema for an event tracked when an item is displayed in a list",
"self": {
"vendor": "com.snowplowanalytics.mobile",
"name": "list_item_view",
"format": "jsonschema",
"version": "1-0-0"
},
"type": "object",
"properties": {
"index": {
"type": "integer",
"description": "Index of the item in a list on the screen",
"minimum": 0,
"maximum": 65535
},
"items_count": {
"type": [
"integer",
"null"
],
"description": "Total number of items in a list on the screen",
"minimum": 0,
"maximum": 65535
}
},
"required": [
"index"
],
"additionalProperties": false
}

0 comments on commit fd1e2c1

Please sign in to comment.