1{ 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "properties": { 4 "optionalObject": { 5 "anyOf": [ 6 { 7 "type": "null" 8 }, 9 { 10 "type": "object", 11 "properties": { 12 "value": { 13 "enum": [ 14 "one", 15 "two" 16 ] 17 } 18 }, 19 "required": [ 20 "value" 21 ] 22 } 23 ] 24 } 25 } 26} 27