You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -33,49 +33,60 @@ The origin of OData's format comes from the world of weblogs, blogging and syndi
33
33
34
34
> RSS is also known as "RDF Site Summary" or "Really Simple Syndication".
35
35
36
-
Look at an example of the RSS representation of blog posts - in particular, the posts tagged **ABAP Development** with this URL:
36
+
Let's look at an example of RSS. The National Aeronautics and Space Administration (NASA) maintains many RSS feeds, and you can see a list of them on the [NASA RSS Feeds](https://www.nasa.gov/content/nasa-rss-feeds) page. Go there now and select the [Breaking News](https://www.nasa.gov/rss/dyn/breaking_news.rss) feed which is at this URL:
<description>NASA Administrator Bill Nelson will speak to elementary school students about the future of space exploration Monday, May 9, and tour a lab working on robotic construction technologies Tuesday, May 10, during a trip to Florida.</description>
<description>NASA’s SpaceX Crew-3 astronauts aboard the Dragon Endurance spacecraft safely splashed down Friday in the Gulf of Mexico off the coast of Florida, completing the agency’s third long-duration commercial crew mission to the International Space Station.</description>
The resulting RSS content of this resource should look something like this:
75
+
Observe the structure of the XML document. Within the outermost `<rss>` element, it describes a `<channel>` that has some metadata such as title and description. That `<channel>` contains one or more `<item>` elements, each of them representing a breaking news item.
46
76
47
-
```xml
48
-
<feedxmlns="http://www.w3.org/2005/Atom">
49
-
<title>Latest blog posts for ABAP Development</title>
<summarytype="text">Whether you are new to ABAP or just want to learn something new this year, this blog post will give you an overview and a handful of helpful resources about all the new technologies in the ABAP cosmos. Not only the universe is expanding, but the ABAP world is also. ...</summary>
73
-
</entry>
74
-
...
75
-
</feed>
77
+
```
78
+
rss
79
+
|
80
+
+-- channel
81
+
|
82
+
+-- item
83
+
|
84
+
+-- item
85
+
|
86
+
+-- ...
76
87
```
77
88
78
-
Observe the structure of the XML document. It describes a `feed` that has some metadata such as title, id, logo and information as to when it was last updated. That `feed` contains one or more `entry` elements, each of them representing a post in the list tagged with "ABAP Development". Think of this like a document, with a header and items.
89
+
Think of this overall structure like a document, with a header and items.
79
90
80
91
[VALIDATE_1]
81
92
@@ -258,4 +269,3 @@ Finally, use the OData system query option $count to retrieve the number of orde
0 commit comments