1 { 2 # group and class declaration config 3 # option spaces 4 "Dhcp4": { 5 // "option-space": { 6 // "name": "bar", 7 // /// Only code width 1 is supported 8 // "code-width": 4, 9 // /// Only length width 1 is supported 10 // "length-width": 4 11 // }, 12 // "option-space": { 13 // "name": "full", 14 // /// Only code width 1 is supported 15 // "code-width": 2, 16 // /// Only length width 1 is supported 17 // "length-width": 2 18 // }, 19 "option-def": [ 20 { 21 "space": "foobar", 22 "name": "test", 23 "code": 1, 24 "type": "string" 25 }, 26 { 27 "space": "foo", 28 "name": "test", 29 "code": 1, 30 "type": "string" 31 } 32 ] 33 } 34 } 35