<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:coordinates="https://schemas.rutdev.se/xsd/types/coordinates-1.0.xsd"
    targetNamespace="https://schemas.rutdev.se/xsd/types/coordinates-1.0.xsd"
    elementFormDefault="qualified"
    version="1.0">

    <!--
      Coordinates Types Schema

      Description: Coordinates type definitions
      Version: 1.0
      Generated: 2026-04-22T06:56:44Z
      Source: specs/types/coordinates/1.0/
    -->

    <!-- 2D coordinates with positive integer values -->
    <xsd:complexType name="Coordinates">
        <xsd:sequence>
            <xsd:element name="x" type="xsd:positiveInteger"/>
            <xsd:element name="y" type="xsd:positiveInteger"/>
        </xsd:sequence>
    </xsd:complexType>

</xsd:schema>