/ source-app-store / source_app_store / schemas / app_downloads_detailed.json
app_downloads_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 downloads 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      "Download Type": {
18        "type": ["string", "null"],
19        "description": "Type of download (Auto-update, first-time, redownload)"
20      },
21      "App Version": {
22        "type": ["string", "null"],
23        "description": "Version of the app"
24      },
25      "Device": {
26        "type": ["string", "null"],
27        "description": "Device type used (iPhone, iPad, etc.)"
28      },
29      "Platform Version": {
30        "type": ["string", "null"],
31        "description": "iOS/iPadOS version"
32      },
33      "Source Type": {
34        "type": ["string", "null"],
35        "description": "Source of the app download"
36      },
37      "Source Info": {
38        "type": ["string", "null"],
39        "description": "Additional information about the source"
40      },
41      "Campaign": {
42        "type": ["string", "null"],
43        "description": "Marketing campaign associated with the download"
44      },
45      "Page Type": {
46        "type": ["string", "null"],
47        "description": "Type of page where the download originated"
48      },
49      "Page Title": {
50        "type": ["string", "null"],
51        "description": "Title of the page where the download originated"
52      },
53      "Pre-Order": {
54        "type": ["string", "null"],
55        "description": "Whether the app was pre-ordered"
56      },
57      "Territory": {
58        "type": ["string", "null"],
59        "description": "Geographic territory of the data"
60      },
61      "Counts": {
62        "type": ["integer", "null"],
63        "description": "Number of downloads"
64      },
65      "_ab_source_file_url": {
66        "type": ["string", "null"],
67        "description": "Source file URL"
68      },
69      "processed_date": {
70        "type": ["string", "null"],
71        "description": "Date when the record was processed"
72      }
73    }
74  }