Add detail about the protocol deprecation

Make sure it's clear that the deprecated fields serve no purpose, and
should be ignored.
This commit is contained in:
James Bardin
2021-09-29 16:45:29 -04:00
parent 9847eaa9cf
commit fe671206cc
2 changed files with 6 additions and 0 deletions

View File

@@ -128,6 +128,9 @@ message Schema {
repeated Attribute attributes = 1;
NestingMode nesting = 3;
// MinItems and MaxItems were never used in the protocol, and have no
// effect on validation.
int64 min_items = 4 [deprecated = true];
int64 max_items = 5 [deprecated = true];
}