Table: rss_item
Query items from the RSS channel or Atom feed. Item information includes title, link, content, categories and other metadata.
Note: It's not possible to list all feeds in the world, so this table requires a
feed_link
qualifier to be passed in the where
or join
clause for all queries.
Examples
Query items from a channel, newest first
select title, published, linkfrom rss_itemwhere feed_link = 'https://www.hardcorehumanism.com/feed/'order by published desc;
Count items by category
select category, count(*)from rss_item, jsonb_array_elements_text(categories) as categorywhere feed_link = 'https://www.podcastinsights.com/feed/'group by categoryorder by count desc;
.inspect rss_item
An item may represent a story - much like a story in a newspaper or magazine; if so its description is a synopsis of the story, and the link points to the full story.
Name | Type | Description |
---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. |
author_email | text | Email address of the author of the item. |
author_name | text | Name of the author of the item. |
categories | jsonb | Specify one or more categories that the item belongs to. |
content | text | Content of the item. |
description | text | The item synopsis. |
enclosures | jsonb | Media objects attached to the item. |
extensions | jsonb | Extension data (e.g. Dublin Core, ITunes) for the item. |
feed_link | text | URL of the feed itself. |
guid | text | A string that uniquely identifies the item. |
image_title | text | |
image_url | text | |
link | text | The URL of the item. |
published | timestamp with time zone | Timestamp when the feed was published. |
title | text | The title of the item. |
updated | timestamp with time zone | Timestamp when the feed was updated. |