Last active
August 13, 2021 16:52
-
-
Save rcook/22b27070f0fedf9760b824b1571a72d2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<plan> | |
<workbooks/> | |
<users> | |
<mappings> | |
<userMappingx> | |
<source mapping="user-mapping-source"/> | |
<destination mapping="user-mapping-destination"/> | |
</userMappingx> | |
<groupMapping> | |
<source mapping="user-mapping-source"/> | |
<destination mapping="user-mapping-destination"/> | |
</groupMapping> | |
<userMapping> | |
<source mapping="user-mapping-source"/> | |
<destination mapping="user-mapping-destination"/> | |
</userMapping> | |
</mappings> | |
</users> | |
</plan> |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<plan> | |
<workbooks/> | |
<users> | |
<mappings> | |
<userMapping> | |
<source mapping="user-mapping-source"/> | |
<destination mapping="user-mapping-destination"/> | |
</userMapping> | |
<groupMapping> | |
<source mapping="user-mapping-source"/> | |
<destination mapping="user-mapping-destination"/> | |
</groupMapping> | |
<userMapping> | |
<source mapping="user-mapping-source"/> | |
<destination mapping="user-mapping-destination"/> | |
</userMapping> | |
</mappings> | |
</users> | |
</plan> |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<!-- Created with Liquid Technologies Online Tools 1.0 (https://www.liquid-technologies.com) --> | |
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
<xs:element name="plan"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element name="workbooks" /> | |
<xs:element name="users"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element name="mappings"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:choice maxOccurs="unbounded"> | |
<xs:element name="userMapping"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element name="source"> | |
<xs:complexType> | |
<xs:attribute name="mapping" type="xs:string" use="required" /> | |
</xs:complexType> | |
</xs:element> | |
<xs:element name="destination"> | |
<xs:complexType> | |
<xs:attribute name="mapping" type="xs:string" use="required" /> | |
</xs:complexType> | |
</xs:element> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
<xs:element name="groupMapping"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element name="source"> | |
<xs:complexType> | |
<xs:attribute name="mapping" type="xs:string" use="required" /> | |
</xs:complexType> | |
</xs:element> | |
<xs:element name="destination"> | |
<xs:complexType> | |
<xs:attribute name="mapping" type="xs:string" use="required" /> | |
</xs:complexType> | |
</xs:element> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
</xs:choice> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
</xs:schema> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment