{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UTMCoordinates", "title": "UTMCoordinates", "type": "object", "properties": { "UTMZone": { "type": "string", "pattern": "^.+$" }, "UTMEastward": { "type": "string", "pattern": "^.+$" }, "UTMNorthward": { "type": "string", "pattern": "^.+$" } }, "required": [ "UTMZone", "UTMEastward", "UTMNorthward" ] }