﻿<?xml version="1.0" encoding="utf-8" ?>
<xs:schema
    xmlns:gin="http://ginnamespace"
    xmlns="http://documentnamespace"
    elementFormDefault="qualified"
    targetNamespace="http://documentnamespace"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import schemaLocation="gin_to_import.xsd" namespace="http://ginnamespace" />
    <xs:element name="Document">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="DocumentId" type="gin:Id" />
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>
