get_suite_hierarchy
Retrieve hierarchical test suite tree structure with configurable depth for Zebrunner project test organization and navigation.
Instructions
๐ณ Get hierarchical test suite tree with configurable depth
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
include_clickable_links | No | Include clickable links to Zebrunner web UI | |
max_depth | No | Maximum tree depth | |
project_key | Yes | Project key | |
root_suite_id | No | Start from specific root suite |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Output format",
"enum": [
"dto",
"json",
"string",
"markdown"
],
"type": "string"
},
"include_clickable_links": {
"default": false,
"description": "Include clickable links to Zebrunner web UI",
"type": "boolean"
},
"max_depth": {
"default": 5,
"description": "Maximum tree depth",
"exclusiveMinimum": 0,
"maximum": 10,
"type": "integer"
},
"project_key": {
"description": "Project key",
"minLength": 1,
"type": "string"
},
"root_suite_id": {
"description": "Start from specific root suite",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"project_key"
],
"type": "object"
}