| Name | Type | Description | Notes |
|---|---|---|---|
| color_depth | Integer | The browser's color depth in bits per pixel obtained using the `screen.colorDepth` property. | |
| is_java_enabled | BOOLEAN | Whether Java is enabled in a browser or not. Value is returned from the `navigator.javaEnabled` property. | |
| language | String | The browser's language settings returned from the `navigator.language` property. | |
| screen_width | Integer | The browser's screen width returned from the `screen.width` property. | |
| screen_height | Integer | The browser's screen height returned from the `screen.height` property. | |
| time_zone_offset | Integer | The browser's time zone offset in minutes from UTC. A positive offset indicates the local time is behind UTC, and negative is ahead. Can find it with `(new Date()).getTimezoneOffset()` property. |