fleet/schema/tables/usb_devices.yml
Eric 02437a098e
Schema: change default block scalar used in schema override files (#19296)
Closes: #19271
Closes: #19286

Changes:
- Updated the example in the schema folder readme
- Updated the block scalar used in Fleet's osquery override
documentation (`>-` » `|-`) and removed extra newlines
- Updated the block scalar used in URLs used to create new yaml override
files
- Regenerated osqeury_fleet_schema.json
2024-05-27 18:18:56 -05:00

9 lines
326 B
YAML

name: usb_devices
examples: |-
Identify Yubikeys currently connected. The model field contains information
about what authentication protocols the keys are configured to support. This
table can be used to track any type of USB device.
```
SELECT model, vendor, version FROM usb_devices WHERE vendor='Yubico';
```