{
  "definitions": {
    "Category": {
      "type": "object",
      "properties": {
        "text": {
          "type": "string"
        },
        "domain": {
          "type": "string"
        }
      }
    },
    "Cloud": {
      "type": "object",
      "properties": {
        "domain": {
          "type": "string"
        },
        "port": {
          "type": "integer"
        },
        "path": {
          "type": "string"
        },
        "registerProcedure": {
          "type": "string"
        },
        "protocol": {
          "type": "string"
        }
      }
    },
    "Enclosure": {
      "type": "object",
      "properties": {
        "url": {
          "type": "string"
        },
        "length": {
          "type": "integer"
        },
        "type": {
          "type": "string"
        }
      }
    },
    "Item": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "link": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "author": {
          "type": "string"
        },
        "category": {
          "type": "array",
          "items": {
            "$ref": "Category"
          }
        },
        "comments": {
          "type": "string"
        },
        "enclosure": {
          "$ref": "Enclosure"
        },
        "guid": {
          "type": "string"
        },
        "pubDate": {
          "format": "date-time",
          "type": "string"
        },
        "source": {
          "$ref": "Source"
        }
      }
    },
    "Rss": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "link": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "language": {
          "type": "string"
        },
        "copyright": {
          "type": "string"
        },
        "managingEditor": {
          "type": "string"
        },
        "webMaster": {
          "type": "string"
        },
        "generator": {
          "type": "string"
        },
        "docs": {
          "type": "string"
        },
        "ttl": {
          "type": "integer"
        },
        "image": {
          "type": "string"
        },
        "rating": {
          "type": "string"
        },
        "skipHours": {
          "type": "integer"
        },
        "skipDays": {
          "type": "string"
        },
        "category": {
          "type": "array",
          "items": {
            "$ref": "Category"
          }
        },
        "pubDate": {
          "format": "date-time",
          "type": "string"
        },
        "lastBuildDate": {
          "format": "date-time",
          "type": "string"
        },
        "cloud": {
          "$ref": "Cloud"
        },
        "item": {
          "type": "array",
          "items": {
            "$ref": "Item"
          }
        }
      }
    },
    "Source": {
      "type": "object",
      "properties": {
        "text": {
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      }
    }
  },
  "$ref": "Rss"
}