Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Ready for review (updated namespaces in examples)

...

Code Block
languagexml
<?xml version=”1.0” encoding=”UTF-8”?>
<xs:schema xmlns:xs=”http://www.w3.org/2001/XMLSchema” xmlns=”http://ed-fi.org/0200”0220” targetNamespace=”http://ed-fi.org/0200”0220” elementFormDefault=”qualified” attributeFormDefault=”unqualified”>
	<xs:include schemaLocation=”Ed-Fi-Core.xsd”/>
		<xs:complexType>
			<xs:choice maxOccurs=”unbounded”>
				<xs:element name=”Student” type=”Student”/>
			</xs:choice>
		</xs:complexType>
	</xs:element>
</xs:schema>

...

Code Block
languagexml
<?xml version=”1.0” encoding=”UTF-8”?>
<xs:schema xmlns:xs=”http://www.w3.org/2001/XMLSchema” xmlns=”http://ed-fi.org/0200”0220” targetNamespace=”http://ed-fi.org/02000220-RFC” elementFormDefault=”qualified” attributeFormDefault=”unqualified”>
	<xs:include schemaLocation=”Ed-Fi-Core.xsd”/>
	<xs:element name=”InterchangeParent”>
		<xs:complexType>
			<xs:choice maxOccurs=”unbounded”>
				<xs:element name=”Parent” type=”Parent”/>
				<xs:element name=”StudentParentAssociation” type=”StudentParentAssociation”/>
			</xs:choice>
		</xs:complexType>
	</xs:element>
</xs:schema>

...