Tools, FAQ, Tutorials:
Atom Document Structure
What Is the Atom Document Structure?
✍: FYIcenter.com
An Atom feed document must have a root element called "feed".
Within in the "feed" element, one or more "entry" elements are enclosed.
The high level structure of an Atom feed document looks like:
<?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>...</title> <link href="/..."/> <updated>...</updated> <author> <name>...</name> </author> <id>...</id> <entry> <title>...</title> <link href="/..."/> <id>...</id> <updated>...</updated> <summary>...</summary> </entry> <entry> ... </entry> ... </feed>
As you can see, an Atom XML document can be described as:
Â
⇒Atom Specification - RFC 4287
⇒⇒RSS FAQ and Tutorials
2017-09-28, 1170👍, 0💬
Popular Posts:
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
How to Build my "sleep" Docker image from the Alpine image? I want the container to sleep for 10 hou...
How to login to the Developer Portal internally by you as the publisher? Normally, the Developer Por...
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http:/...
How to add request body examples to my Azure API operation to make it more user friendly? If you hav...