From ae1a6b540b6e9a4156374d5477b5a30f5a4add8f Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Wed, 6 Dec 2023 21:18:22 +0100 Subject: [PATCH] add "description" to instance MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit this should describe the instance and might also be markdown formated Co-authored-by: Jonne Haß --- schemas/2.2/example.json | 3 ++- schemas/2.2/schema.json | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/schemas/2.2/example.json b/schemas/2.2/example.json index 7999895..7f57594 100644 --- a/schemas/2.2/example.json +++ b/schemas/2.2/example.json @@ -1,7 +1,8 @@ { "version": "2.2", "instance": { - "name": "New FI𝑓F" + "name": "New FI𝑓F", + "description": "Welcome to the FI𝑓F fediverse server" }, "software": { "name": "diaspora", diff --git a/schemas/2.2/schema.json b/schemas/2.2/schema.json index c30e8ad..aebd623 100644 --- a/schemas/2.2/schema.json +++ b/schemas/2.2/schema.json @@ -31,6 +31,11 @@ "description": "If supported by the software the administrator configured name of this instance", "type": "string", "pattern": "^.{0,500}$" + }, + "description": { + "description": "If supported by the software the administrator configured long form description of this instance.", + "type": "string", + "pattern": "^.{0,5000}$" } } },