Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For example, consider the interchange for students based on the Ed-Fi Core. The interchange for Student is composed from the complex type for the Student domain entity class, as shown below.

(Image to come)Image Added

InterchangeStudent

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” targetNamespace=”http://ed-fi.org/0200” 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>

...

For example, consider a data interchange to load parent information and the familial relationship between the student and the parent. The interchange schema requires the Parent and StudentParentAssociation entities, as shown below.

(Image to come)Image Added

InterchangeParent

...