/ source-app-store / source_app_store / schemas / app_install_performance.json
app_install_performance.json
 1  {
 2    "$schema": "http://json-schema.org/draft-07/schema#",
 3    "type": "object",
 4    "properties": {
 5      "Date": {
 6        "type": ["string", "null"],
 7        "description": "The date of the app install performance report"
 8      },
 9      "App Name": {
10        "type": ["string", "null"],
11        "description": "The name of the app"
12      },
13      "App Apple Identifier": {
14        "type": ["integer", "null"],
15        "description": "The Apple identifier for the app"
16      },
17      "Download Type": {
18        "type": ["string", "null"],
19        "description": "Type of download (e.g., First Time, Redownload)"
20      },
21      "Download Info": {
22        "type": ["string", "null"],
23        "description": "Additional information about the download"
24      },
25      "Install Status": {
26        "type": ["string", "null"],
27        "description": "Status of the installation (e.g., Successful, Failed)"
28      },
29      "Install Package Type": {
30        "type": ["string", "null"],
31        "description": "Type of installation package"
32      },
33      "Device": {
34        "type": ["string", "null"],
35        "description": "Device type (e.g., iPhone, iPad)"
36      },
37      "Platform Version": {
38        "type": ["string", "null"],
39        "description": "Version of the platform"
40      },
41      "Territory": {
42        "type": ["string", "null"],
43        "description": "Territory/country of the download"
44      },
45      "Counts": {
46        "type": ["integer", "null"],
47        "description": "Number of installs/downloads"
48      },
49      "Avg Install Duration": {
50        "type": ["integer", "null"],
51        "description": "Average installation duration in milliseconds"
52      },
53      "_ab_source_file_url": {
54        "type": ["string", "null"],
55        "description": "The URL of the source file"
56      },
57      "processed_date": {
58        "type": ["string", "null"],
59        "description": "The date when the record was processed"
60      }
61    }
62  }