fix(tools): branch_list schema constraints
This commit is contained in:
@@ -27,8 +27,8 @@ func (t *BranchList) Descriptor() registry.ToolDescriptor {
|
||||
"properties":{
|
||||
"owner":{"type":"string"},
|
||||
"name":{"type":"string"},
|
||||
"page":{"type":"integer"},
|
||||
"limit":{"type":"integer"}
|
||||
"page":{"type":"integer","minimum":1},
|
||||
"limit":{"type":"integer","minimum":1,"maximum":50}
|
||||
},
|
||||
"required":["owner","name"]
|
||||
}`),
|
||||
|
||||
Reference in New Issue
Block a user