Fix topic partition count min to be an integer instead of string (#1063)

Co-authored-by: Matt <mithmatt@github.com>
This commit is contained in:
Matt 2021-11-05 11:46:40 -07:00 committed by GitHub
parent 433857ca0c
commit 845552670a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@
"partitions" : {
"description" : "Number of partitions into which the topic is divided.",
"type" : "integer",
"minimum": "1"
"minimum": 1
},
"schemaText" : {
"description" : "Schema used for message serialization. Optional as some topics may not have associated schemas.",