ZDNet · JSON Structure

Rss Rss Feed Structure

RSS 2.0 feed envelope describing a list of news articles.

Type: object Properties: 5
Enterprise ITMediaTechnology News

RssFeed is a JSON Structure definition published by ZDNet, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

title link description language items

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zdnet/refs/heads/main/json-structure/rss-rss-feed-structure.json",
  "name": "RssFeed",
  "description": "RSS 2.0 feed envelope describing a list of news articles.",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "Feed title.",
      "example": "ZDNet"
    },
    "link": {
      "type": "uri",
      "description": "Feed website URL.",
      "example": "https://www.zdnet.com"
    },
    "description": {
      "type": "string",
      "description": "Feed description.",
      "example": "ZDNet news, analysis, and reviews."
    },
    "language": {
      "type": "string",
      "description": "Language code.",
      "example": "en-US"
    },
    "items": {
      "type": "array",
      "description": "List of article items.",
      "items": {
        "$ref": "#/components/schemas/RssItem"
      },
      "example": [
        {}
      ]
    }
  }
}