-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into DATASTD-1613
- Loading branch information
Showing
4 changed files
with
54 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://ed-fi.org/3.3.1-b" targetNamespace="http://ed-fi.org/3.3.1-b" elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
<xs:include schemaLocation="Ed-Fi-Core.xsd"/> | ||
<xs:annotation> | ||
<xs:documentation>===== Parent Interchange Model =====</xs:documentation> | ||
</xs:annotation> | ||
<xs:element name="InterchangeParent"> | ||
<xs:annotation> | ||
<xs:documentation>This interchange defines parents and captures the familial relationship between the student and the parent as well as indicators for the parent for residence, primary parental contact, and emergency contact.</xs:documentation> | ||
</xs:annotation> | ||
<xs:complexType> | ||
<xs:choice maxOccurs="unbounded"> | ||
<xs:element name="Parent" type="Parent"/> | ||
<xs:element name="StudentParentAssociation" type="StudentParentAssociation"/> | ||
<xs:element name="Person" type="Person"/> | ||
</xs:choice> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:include schemaLocation="Ed-Fi-Core.xsd" /> | ||
<xs:annotation> | ||
<xs:documentation>===== Parent Interchange Model =====</xs:documentation> | ||
</xs:annotation> | ||
<xs:element name="InterchangeParent"> | ||
<xs:annotation> | ||
<xs:documentation>This interchange defines parents and captures the familial relationship between the student and the parent as well as indicators for the parent for residence, primary parental contact, and emergency contact.</xs:documentation> | ||
</xs:annotation> | ||
<xs:complexType> | ||
<xs:choice maxOccurs="unbounded"> | ||
<xs:element name="Parent" type="Parent" /> | ||
<xs:element name="StudentParentAssociation" type="StudentParentAssociation" /> | ||
<xs:element name="Person" type="Person" /> | ||
</xs:choice> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://ed-fi.org/3.3.1-b" targetNamespace="http://ed-fi.org/3.3.1-b" elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
<xs:include schemaLocation="Ed-Fi-Core.xsd"/> | ||
<xs:annotation> | ||
<xs:documentation>===== Student Interchange Model =====</xs:documentation> | ||
</xs:annotation> | ||
<xs:element name="InterchangeStudent"> | ||
<xs:annotation> | ||
<xs:documentation>This interchange defines students and contains all their identifying information.</xs:documentation> | ||
</xs:annotation> | ||
<xs:complexType> | ||
<xs:choice maxOccurs="unbounded"> | ||
<xs:element name="Student" type="Student"/> | ||
<xs:element name="Person" type="Person"/> | ||
</xs:choice> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:include schemaLocation="Ed-Fi-Core.xsd" /> | ||
<xs:annotation> | ||
<xs:documentation>===== Student Interchange Model =====</xs:documentation> | ||
</xs:annotation> | ||
<xs:element name="InterchangeStudent"> | ||
<xs:annotation> | ||
<xs:documentation>This interchange defines students and contains all their identifying information.</xs:documentation> | ||
</xs:annotation> | ||
<xs:complexType> | ||
<xs:choice maxOccurs="unbounded"> | ||
<xs:element name="Student" type="Student" /> | ||
<xs:element name="Person" type="Person" /> | ||
</xs:choice> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |