Skip to content

Commit

Permalink
Relax InstallationNotes max length (#3397)
Browse files Browse the repository at this point in the history
  • Loading branch information
yao-msft authored and Ryan Fu committed Jul 10, 2023
1 parent 41e70ac commit fe19c57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
"InstallationNotes": {
"type": [ "string", "null" ],
"minLength": 1,
"maxLength": 256,
"maxLength": 10000,
"description": "The notes displayed to the user upon completion of a package installation."
},
"Documentations": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/JSON/manifests/v1.5.0/manifest.locale.1.5.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@
"InstallationNotes": {
"type": [ "string", "null" ],
"minLength": 1,
"maxLength": 256,
"maxLength": 10000,
"description": "The notes displayed to the user upon completion of a package installation."
},
"Documentations": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@
"InstallationNotes": {
"type": [ "string", "null" ],
"minLength": 1,
"maxLength": 256,
"maxLength": 10000,
"description": "The notes displayed to the user upon completion of a package installation."
},
"Documentations": {
Expand Down

0 comments on commit fe19c57

Please sign in to comment.