From bb05ce5c7f078d6efd2b084d8f690cb0f46e0c30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Markacz?= Date: Mon, 28 Mar 2016 10:23:34 +0200 Subject: [PATCH] Add RSS channel to support section in composer schema (closes #5073) --- doc/04-schema.md | 1 + res/composer-schema.json | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/doc/04-schema.md b/doc/04-schema.md index fcb960d3b..90f83f979 100644 --- a/doc/04-schema.md +++ b/doc/04-schema.md @@ -238,6 +238,7 @@ Support information includes the following: * **irc:** IRC channel for support, as irc://server/channel. * **source:** URL to browse or download the sources. * **docs:** URL to the documentation. +* **rss:** URL to the RSS feed. An example: diff --git a/res/composer-schema.json b/res/composer-schema.json index 8b9a40465..e943b825c 100644 --- a/res/composer-schema.json +++ b/res/composer-schema.json @@ -465,6 +465,11 @@ "type": "string", "description": "URL to the documentation.", "format": "uri" + }, + "rss": { + "type": "string", + "description": "URL to the RSS feed.", + "format": "uri" } } },