1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4<dict>
5	<key>John Doe</key>
6	<dict>
7		<key>children</key>
8		<array>
9			<string>Jane Doe</string>
10			<string>John Doe, Jr.</string>
11		</array>
12
13		<key>pets</key>
14		<array>
15			<string>Fido</string>
16			<string>Spot</string>
17		</array>
18
19		<key>job title</key>
20		<string>computer programmer</string>
21
22		<key>u.s. citizen</key>
23		<true/>
24	</dict>
25</dict>
26</plist>
27