Skip to content

Commit

Permalink
Fix array length
Browse files Browse the repository at this point in the history
maxLength only applies to strings
  • Loading branch information
johtso authored Apr 15, 2024
1 parent 144f11f commit 266c34c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/transactional.json
Original file line number Diff line number Diff line change
Expand Up @@ -7474,7 +7474,7 @@
"labels": {
"type": "array",
"description": "an optional array of up to 10 labels to use for filtering templates",
"maxLength": 10,
"maxItems": 10,
"items": {
"type": "string",
"description": "a single label",
Expand Down Expand Up @@ -7761,7 +7761,7 @@
"labels": {
"type": "array",
"description": "an optional array of up to 10 labels to use for filtering templates",
"maxLength": 10,
"maxItems": 10,
"items": {
"type": "string",
"description": "a single label",
Expand Down

0 comments on commit 266c34c

Please sign in to comment.