xref: /aosp_15_r20/external/json-schema-validator/src/test/resources/schema/output-format-schema.json (revision 78c4dd6aa35290980cdcd1623a7e337e8d021c7c)
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}