
Lab #1: Create JSON that is Equivalent to XML

Use Oxygen to create a JSON document that is
equivalent to this XML:

<Persons>
    <Person>
        <Name>
            <First>John</First>
            <MI>E.</MI>
            <Last>Doe</Last>
        </Name>
    </Person>
    <Person>
        <Name>
            <First>Sally</First>
            <MI />
            <Last>Smith</Last>
        </Name>
    </Person>
    <Person>
        <Name>
            <First>Lisa</First>
            <MI>M.</MI>
            <Last>Barnes</Last>
        </Name>
    </Person>
</Persons>

When you have finished creating the JSON, check that it is a
correct JSON document (click on the red checkmark in Oxygen).

