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