1{ 2 "$id": "https://example.com/polygon", 3 "$schema": "https://json-schema.org/draft/2020-12/schema", 4 "$defs": { 5 "point": { 6 "type": "object", 7 "properties": { 8 "x": { "type": "number" }, 9 "y": { "type": "number" } 10 }, 11 "additionalProperties": false, 12 "required": [ "x", "y" ] 13 } 14 }, 15 "type": "array", 16 "items": { "$ref": "#/$defs/point" }, 17 "minItems": 3 18}