This is an example of the XML data format of an Atom feed. Typically there is
atleast a title, link and a timestamp, for example for the xkcd.com Atom feed
at https://xkcd.com/atom.xml:

<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en">
	<title>xkcd.com</title> <!-- feed title -->
	<link href="https://xkcd.com/" rel="alternate"/>
	<id>https://xkcd.com/</id>
	<updated>2020-09-04T00:00:00Z</updated>

	<!-- items -->
	<entry>
		<title>University COVID Model</title>
		<link href="https://xkcd.com/2355/" />
		<updated>2020-09-04T00:00:00Z</updated>
		<id>https://xkcd.com/2355/</id>
		<summary type="html">
			<img src="https://imgs.xkcd.com/comics/somename.png "/>
		</summary>
	</entry>
	<!-- ... more items. -->
</feed>
