From 755b5c03ad3c1aa75d4c6895165683b7b04026a3 Mon Sep 17 00:00:00 2001 From: Till Rohrmann Date: Mon, 13 May 2024 15:48:12 +0200 Subject: [PATCH] Update min/max of protocol version fields in endpoint_manifest_schema --- endpoint_manifest_schema.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/endpoint_manifest_schema.json b/endpoint_manifest_schema.json index 9d4ab2f..8f65804 100644 --- a/endpoint_manifest_schema.json +++ b/endpoint_manifest_schema.json @@ -11,12 +11,14 @@ }, "minProtocolVersion": { "type": "integer", - "minimum": 0, + "minimum": 1, + "maximum": 2147483647, "description": "Minimum supported protocol version" }, "maxProtocolVersion": { "type": "integer", - "maximum": 0, + "minimum": 1, + "maximum": 2147483647, "description": "Maximum supported protocol version" }, "services": {