/ source-google-store / source_google_store / schemas / installs_country.json
installs_country.json
 1  {
 2    "$schema": "http://json-schema.org/draft-07/schema#",
 3    "type": "object",
 4    "properties": {
 5      "Date": {
 6        "type": "string",
 7        "description": "The date of the installs data"
 8      },
 9      "Package name": {
10        "type": "string",
11        "description": "The package name of the app"
12      },
13      "Country": {
14        "type": "string",
15        "description": "The country code"
16      },
17      "Daily Device Installs": {
18        "type": "number",
19        "description": "Number of daily device installs"
20      },
21      "Daily Device Uninstalls": {
22        "type": "number",
23        "description": "Number of daily device uninstalls"
24      },
25      "Daily Device Upgrades": {
26        "type": "number",
27        "description": "Number of daily device upgrades"
28      },
29      "Total User Installs": {
30        "type": "number",
31        "description": "Total number of user installs"
32      },
33      "Daily User Installs": {
34        "type": "number",
35        "description": "Number of daily user installs"
36      },
37      "Daily User Uninstalls": {
38        "type": "number",
39        "description": "Number of daily user uninstalls"
40      },
41      "Active Device Installs": {
42        "type": "number",
43        "description": "Number of active device installs"
44      },
45      "Install events": {
46        "type": "number",
47        "description": "Number of install events"
48      },
49      "Update events": {
50        "type": "number",
51        "description": "Number of update events"
52      },
53      "Uninstall events": {
54        "type": "number",
55        "description": "Number of uninstall events"
56      },
57      "_metadata": {
58        "type": "object",
59        "properties": {
60          "package_name": {
61            "type": "string",
62            "description": "The package name of the app"
63          },
64          "report_path": {
65            "type": "string",
66            "description": "The path to the report file"
67          },
68          "extracted_at": {
69            "type": "string",
70            "description": "Timestamp when the data was extracted"
71          },
72          "stats_type": {
73            "type": "string",
74            "description": "Type of stats (country)"
75          }
76        },
77        "required": [
78          "package_name",
79          "report_path",
80          "extracted_at",
81          "stats_type"
82        ]
83      }
84    },
85    "required": [
86      "Date",
87      "Package Name",
88      "Country",
89      "_metadata"
90    ]
91  }