Created
June 27, 2018 12:13
-
-
Save pvillard31/7c371e345e5816ab801117c2f54726d4 to your computer and use it in GitHub Desktop.
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
<customers> | |
<customer customer_id="1" name="John Doe"> | |
<addresses> | |
<address type="home" value="1 Apache NiFi street, Nifiville" /> | |
<address type="work" value="10 MiNiFi avenue, Nifiville" /> | |
</addresses> | |
<accounts> | |
<account account_id="1" shortname="perso" balance="1234.56" /> | |
<account account_id="2" shortname="joint" balance="2345.67"> | |
<transactions> | |
<transaction transaction_id="1" source_account_id="123" destination_account_id="2" amount="123.00" /> | |
<transaction transaction_id="2" source_account_id="3" destination_account_id="2" amount="500.00" /> | |
</transactions> | |
</account> | |
</accounts> | |
</customer> | |
<customer customer_id="2" name="Jane Doe"> | |
<addresses> | |
<address type="home" value="1 Apache NiFi street, Nifiville" /> | |
</addresses> | |
<accounts> | |
<account account_id="3" shortname="perso" balance="3333.33"> | |
<transactions> | |
<transaction transaction_id="2" source_account_id="3" destination_account_id="2" amount="500.00" /> | |
</transactions> | |
</account> | |
</accounts> | |
</customer> | |
</customers> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment