blob: 42c8e9bb9ebfdf1225ce8d3be1b21f07f3c9f881 [file] [log] [blame] [view]
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01001[TOC](Readme.md) [Prev](json.md) [Next](commas.md)
2
3# Quotes are Optional for Field Names
4
5JSON objects are called structs in CUE.
6An object member is called a field.
7
8
9Double quotes may be omitted from field names if their name contains no
10special characters and does not start with a number:
11
12<!-- CUE editor -->
13```
14{
15 one: 1,
16 two: 2,
17 "two-and-a-half": 2.5
18}
19```
20
21<!-- JSON result -->
22```json
23{
24 "one": 1,
25 "two": 2,
26 "two-and-a-half": 2.5
27}
28```