Skip to content
This repository has been archived by the owner on Feb 14, 2025. It is now read-only.

Commit

Permalink
Update min/max of protocol version fields in endpoint_manifest_schema
Browse files Browse the repository at this point in the history
  • Loading branch information
tillrohrmann committed May 14, 2024
1 parent f3ffeaa commit 755b5c0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions endpoint_manifest_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 755b5c0

Please sign in to comment.