blob: 376a80e0b0661958ef70c620efc0c069a93a9319 [file] [log] [blame]
<!--
Copyright (c) 2018, 2020 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0,
or the Eclipse Distribution License v. 1.0 which is available at
http://www.eclipse.org/org/documents/edl-v10.php.
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
-->
<xs:schema xmlns="http://first.temp.com/"
xmlns:tns="http://first.temp.com/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://first.temp.com/"
xmlns:second="http://second.temp.com/"
elementFormDefault="unqualified" attributeFormDefault="unqualified" version="1.0">
<xs:import namespace="http://second.temp.com/"
schemaLocation="xmlschema-import-cross-second.xsd"/>
<xs:element name="companyId" type="xs:string" />
<xs:element name="TestReq">
<xs:complexType>
<xs:complexContent>
<xs:extension base="second:Base_Type">
<xs:sequence>
<xs:element ref="tns:companyId"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:schema>