From fe775314bfe9bd9236effae6c85c627f64bf0c4c Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Thu, 6 Feb 2025 20:06:41 +0100 Subject: [PATCH] Add minimum to count --- json-schema/schema.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/json-schema/schema.json b/json-schema/schema.json index d6199dd..1f183b8 100644 --- a/json-schema/schema.json +++ b/json-schema/schema.json @@ -252,7 +252,8 @@ "type": "number" }, "count": { - "type": "integer" + "type": "integer", + "minimum": 0 }, "maximum": { "type": "number" @@ -269,4 +270,4 @@ } } } -} \ No newline at end of file +}