1{ 2 "$id": "https://example.com/address.schema.json", 3 "$schema": "http://json-schema.org/draft-07/schema#", 4 "type": "object", 5 "properties": { 6 "foo": { 7 "type": "object", 8 "enum": [1, 2, 3] 9 }, 10 "bar": { 11 "$ref": "#/properties/foo" 12 } 13 } 14} 15