get_root_suites
Retrieve root test suites (those without parent suites) from a specified project in Zebrunner Test Case Management to organize and manage test case hierarchies.
Instructions
๐ณ Get root suites (suites with no parent) from project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
project_key | Yes | Project key (e.g., 'android' or 'ANDROID') |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Output format",
"enum": [
"dto",
"json",
"string",
"markdown"
],
"type": "string"
},
"project_key": {
"description": "Project key (e.g., 'android' or 'ANDROID')",
"minLength": 1,
"type": "string"
}
},
"required": [
"project_key"
],
"type": "object"
}