mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
29 lines
1,001 B
YAML
29 lines
1,001 B
YAML
|
|
name: parse_json
|
||
|
|
notes: This table is not a core osquery table. It is included as part of [Fleetd](https://fleetdm.com/docs/using-fleet/orbit), the osquery manager from Fleet. Fleetd can be built with [fleetctl](https://fleetdm.com/docs/using-fleet/adding-hosts#osquery-installer).
|
||
|
|
description: Parses an entire file as JSON. See `parse_jsonl` where multiple JSON documents are supported.
|
||
|
|
platforms:
|
||
|
|
- darwin
|
||
|
|
- windows
|
||
|
|
- linux
|
||
|
|
evented: false
|
||
|
|
columns:
|
||
|
|
- name: path
|
||
|
|
description: Path of the file to read.
|
||
|
|
required: true
|
||
|
|
type: text
|
||
|
|
- name: fullkey
|
||
|
|
description: Same as `key` in this table. See `parse_jsonl` where multiple JSON documents are supported.
|
||
|
|
required: false
|
||
|
|
type: text
|
||
|
|
- name: parent
|
||
|
|
description: Parent key when keys are nested in the document.
|
||
|
|
required: false
|
||
|
|
type: text
|
||
|
|
- name: key
|
||
|
|
description: JSON key or array index.
|
||
|
|
required: false
|
||
|
|
type: text
|
||
|
|
- name: value
|
||
|
|
description: JSON value
|
||
|
|
required: false
|
||
|
|
type: text
|