/ source-google-store / source_google_store / schemas / crashes_android_version.json
crashes_android_version.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 crash data"
 8      },
 9      "Package Name": {
10        "type": "string",
11        "description": "The package name of the app"
12      },
13      "Android OS Version": {
14        "type": "string",
15        "description": "The Android OS version"
16      },
17      "Daily Crashes": {
18        "type": "number",
19        "description": "Number of crashes"
20      },
21      "Daily ANRs": {
22        "type": "number",
23        "description": "Number of Application Not Responding events"
24      },
25      "_metadata": {
26        "type": "object",
27        "properties": {
28          "package_name": {
29            "type": "string"
30          },
31          "report_path": {
32            "type": "string"
33          },
34          "extracted_at": {
35            "type": "string"
36          },
37          "stats_type": {
38            "type": "string"
39          }
40        }
41      }
42    },
43    "required": [
44      "Date",
45      "Package Name",
46      "Android OS Version",
47      "_metadata"
48    ]
49  }