{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Point", "title": "Point", "type": "object", "properties": { "X": { "type": "string" }, "Y": { "type": "string" } }, "required": [ "X", "Y" ] }