1# JSON
2
3JSON support is available natively in Zed.
4
5- Tree Sitter: [tree-sitter/tree-sitter-json](https://github.com/tree-sitter/tree-sitter-json)
6- Language Server: [zed-industries/json-language-server](https://github.com/zed-industries/json-language-server)
7
8## JSONC
9
10Zed also supports a super-set of JSON called JSONC, which allows single line comments (`//`) in JSON files.
11While editing these files you can use `cmd-/` (macOS) or `ctrl-/` (Linux) to toggle comments on the current line or selection.
12
13<!--
14TBD: JSONC Example for how to use `file_types`
15TBD: Add formatter (prettier) settings (autoformat, tab_size, etc)
16TBD: Document JSON Schema features of Zed
17-->