From 53384bfc7c65b4efb6c9d0a57cd5674a946538c0 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Sun, 17 Dec 2023 16:59:15 +0100 Subject: [PATCH] Add "activeWeek" to usage.users --- 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..09d2c2a 100644 --- a/schemas/2.2/example.json +++ b/schemas/2.2/example.json @@ -19,7 +19,8 @@ "users": { "total": 123, "activeHalfyear": 42, - "activeMonth": 23 + "activeMonth": 23, + "activeWeek": 22 }, "localPosts": 500, "localComments": 1000 diff --git a/schemas/2.2/schema.json b/schemas/2.2/schema.json index c30e8ad..2f0e06b 100644 --- a/schemas/2.2/schema.json +++ b/schemas/2.2/schema.json @@ -177,6 +177,11 @@ "description": "The amount of users that signed in at least once in the last 30 days.", "type": "integer", "minimum": 0 + }, + "activeWeek": { + "description": "The amount of users that signed in at least once in the last 7 days.", + "type": "integer", + "minimum": 0 } } },