La mayoría del software almacenaría información en XML de esta forma:
<book>
<title>Generic Examples, the Internet, and You</title>
<length pages="43" />
<authors>
<person>Yolanda Squatpump</person>
<collective>
Anonymous 1
Anonymous 2
<et.al />
</collective>
</authors>
</book>
Mientras que .plist
s de Apple se asemejaría a:
<plist version="1.0">
<dict>
<key>Label</key>
<string>book</string>
<key>title</key>
<string>Generic Examples, the Internet, and You</string>
<key>length</key>
<dict>
<key>pages</key>
<integer>43</integer>
</dict>
<key>authors</key>
<dict>
<key>person</key>
<string>Yolanda Squatpump</string>
<key>collective</key>
<array>
<string>Anonymous 1</string>
<string>Anonymous 2</string>
</array>
</dict>
</dict>
</plist>