Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
iambriccardo committed Oct 23, 2023
1 parent 68def1e commit 4c62f40
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions relay/event.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1205,6 +1205,14 @@
"format": "uint64",
"minimum": 0.0
},
"locale": {
"description": " Locale of the device.",
"default": null,
"type": [
"string",
"null"
]
},
"low_memory": {
"description": " Whether the device was low on memory.",
"default": null,
Expand Down Expand Up @@ -1310,6 +1318,16 @@
"format": "uint64",
"minimum": 0.0
},
"screen_height_pixels": {
"description": " Height of the screen in pixels.",
"default": null,
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"screen_resolution": {
"description": " Device screen resolution.\n\n (e.g.: 800x600, 3040x1444)",
"default": null,
Expand All @@ -1318,6 +1336,16 @@
"null"
]
},
"screen_width_pixels": {
"description": " Width of the screen in pixels.",
"default": null,
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"simulator": {
"description": " Simulator/prod indicator.",
"default": null,
Expand Down Expand Up @@ -1393,6 +1421,15 @@
],
"format": "uint64",
"minimum": 0.0
},
"uuid": {
"description": " UUID of the device.",
"default": null,
"type": [
"string",
"null"
],
"format": "uuid"
}
},
"additionalProperties": false
Expand Down

0 comments on commit 4c62f40

Please sign in to comment.