---
source: crates/biome_json_parser/tests/spec_test.rs
expression: snapshot
---
## Input
```json
"
```
## AST
```
JsonRoot {
bom_token: missing (optional),
value: JsonStringValue {
value_token: JSON_STRING_LITERAL@0..1 "\"" [] [],
},
eof_token: EOF@1..1 "" [] [],
}
```
## CST
```
0: JSON_ROOT@0..1
0: (empty)
1: JSON_STRING_VALUE@0..1
0: JSON_STRING_LITERAL@0..1 "\"" [] []
2: EOF@1..1 "" [] []
```
## Diagnostics
```
string_single_doublequote.json:1:1 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
× Missing closing quote
> 1 │ "
│ ^
i file ends here
> 1 │ "
│
```