Azure DevOps · Schema
TestSuiteCreateParams
Parameters for creating a new test suite
AgileCI/CDDevOpsProject ManagementVersion Control
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the new test suite |
| suiteType | string | Type of test suite to create |
| parentSuite | object | Parent suite to nest this suite under |
| requirementId | integer | Work item ID to link (for requirementTestSuite type) |
| queryString | string | WIQL query string (for dynamicTestSuite type) |
| defaultTesters | array | Default testers for test cases in this suite |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TestSuiteCreateParams",
"title": "TestSuiteCreateParams",
"type": "object",
"description": "Parameters for creating a new test suite",
"required": [
"name",
"suiteType",
"parentSuite"
],
"properties": {
"name": {
"type": "string",
"description": "Name of the new test suite"
},
"suiteType": {
"type": "string",
"description": "Type of test suite to create",
"enum": [
"none",
"dynamicTestSuite",
"staticTestSuite",
"requirementTestSuite"
]
},
"parentSuite": {
"type": "object",
"description": "Parent suite to nest this suite under",
"required": [
"id"
],
"properties": {
"id": {
"type": "integer",
"description": "ID of the parent suite"
}
}
},
"requirementId": {
"type": "integer",
"description": "Work item ID to link (for requirementTestSuite type)"
},
"queryString": {
"type": "string",
"description": "WIQL query string (for dynamicTestSuite type)"
},
"defaultTesters": {
"type": "array",
"description": "Default testers for test cases in this suite",
"items": {
"$ref": "#/components/schemas/IdentityRef"
}
}
}
}