View Table
| **Feature or Property value** | **DataType** | **DataFormat** | **Type of data returned
by `getCurrentValue()`** | **Example output** |
| ------------------------------------------------------------------------------------------------------ | ------------ | -------------- | ----------------------------------------------------- | ------------------------------------------------------------------------------------ |
| `true` | BOOLEAN | not applicable | `boolean` | `true` |
| `25` | NUMERIC | not applicable | `number` | `25` |
| "a string text" | STRING | TEXT | `string` | `a string text` |
| {
"firefox": {
"name": "Firefox",
"pref_url": "about:config"
}
} | STRING | JSON | `JSON object` | `{"firefox":{"name":"Firefox","pref_url":"about:config"}}` |
| men:
- John Smith
- Bill Jones
women:
- Mary Smith
- Susan Williams
| STRING | YAML | `string` | `"men:\n - John Smith\n - Bill Jones\nwomen:\n - Mary Smith\n - Susan Williams"` |