app_sessions_detailed.json
1 { 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "properties": { 5 "Date": { 6 "type": ["string", "null"], 7 "description": "Date of the app sessions report" 8 }, 9 "App Name": { 10 "type": ["string", "null"], 11 "description": "Name of the application" 12 }, 13 "App Apple Identifier": { 14 "type": ["integer", "null"], 15 "description": "Unique identifier for the app in the App Store" 16 }, 17 "App Version": { 18 "type": ["string", "null"], 19 "description": "Version of the application" 20 }, 21 "Device": { 22 "type": ["string", "null"], 23 "description": "Device type (iPhone, iPad, etc.)" 24 }, 25 "Platform Version": { 26 "type": ["string", "null"], 27 "description": "Version of the operating system" 28 }, 29 "Source Type": { 30 "type": ["string", "null"], 31 "description": "Source of the app session (App Store search, etc.)" 32 }, 33 "Source Info": { 34 "type": ["string", "null"], 35 "description": "Additional information about the session source" 36 }, 37 "Campaign": { 38 "type": ["string", "null"], 39 "description": "Marketing campaign associated with the session" 40 }, 41 "Page Type": { 42 "type": ["string", "null"], 43 "description": "Type of page where the session occurred" 44 }, 45 "Page Title": { 46 "type": ["string", "null"], 47 "description": "Title of the page where the session occurred" 48 }, 49 "App Download Date": { 50 "type": ["string", "null"], 51 "description": "Date when the app was downloaded" 52 }, 53 "Territory": { 54 "type": ["string", "null"], 55 "description": "Geographic territory of the data" 56 }, 57 "Sessions": { 58 "type": ["integer", "null"], 59 "description": "Number of sessions" 60 }, 61 "Total Session Duration": { 62 "type": ["integer", "null"], 63 "description": "Total duration of sessions in minutes" 64 }, 65 "Unique Devices": { 66 "type": ["integer", "null"], 67 "description": "Number of unique devices with sessions" 68 }, 69 "_ab_source_file_url": { 70 "type": ["string", "null"], 71 "description": "Source file URL" 72 }, 73 "processed_date": { 74 "type": ["string", "null"], 75 "description": "Date when the record was processed" 76 } 77 } 78 }