---
source: crates/biome_json_parser/tests/spec_test.rs
expression: snapshot
---
## Input
```json
{
```
## AST
```
JsonRoot {
bom_token: missing (optional),
value: JsonObjectValue {
l_curly_token: L_CURLY@0..1 "{" [] [],
json_member_list: JsonMemberList [],
r_curly_token: missing (required),
},
eof_token: EOF@1..1 "" [] [],
}
```
## CST
```
0: JSON_ROOT@0..1
0: (empty)
1: JSON_OBJECT_VALUE@0..1
0: L_CURLY@0..1 "{" [] []
1: JSON_MEMBER_LIST@1..1
2: (empty)
2: EOF@1..1 "" [] []
```
## Diagnostics
```
structure_open_object.json:1:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
× expected `}` but instead the file ends
> 1 │ {
│
i the file ends here
> 1 │ {
│
```