changedInput schema / properties / payload / oneOf
Previous value: -[
- {
- "properties": {
- "action": {
- "const": "create",
- "description": "The operation to perform: create a new section",
- "type": "string"
- },
- "description": {
- "description": "The description of the section",
- "type": "string"
- },
- "name": {
- "description": "The name of the section",
- "type": "string"
- },
- "parent_id": {
- "description": "The ID of the parent section (to build section hierarchies)",
- "type": "number"
- },
- "project_id": {
- "description": "The ID of the project the section should be added to",
- "type": "number"
- },
- "suite_id": {
- "description": "The ID of the test suite (required for multi-suite projects, i.e. suite_mode=2 or 3). Use get_suites to find available suites",
- "type": "number"
- }
- },
- "required": [
- "name",
- "action",
- "project_id"
- ],
- "type": "object"
- },
- {
- "properties": {
- "action": {
- "const": "update",
- "description": "The operation to perform: update an existing section",
- "type": "string"
- },
- "description": {
- "description": "The description of the section",
- "type": "string"
- },
- "name": {
- "description": "The name of the section",
- "type": "string"
- },
- "section_id": {
- "description": "The ID of the section to update",
- "type": "number"
- }
- },
- "required": [
- "action",
- "section_id"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "properties": {
+ "action": {
+ "const": "create",
+ "description": "The operation to perform: create a new section",
+ "type": "string"
+ },
+ "description": {
+ "description": "The description of the section",
+ "type": "string"
+ },
+ "name": {
+ "description": "The name of the section",
+ "type": "string"
+ },
+ "parent_id": {
+ "description": "The ID of the parent section (to build section hierarchies)",
+ "type": "number"
+ },
+ "project_id": {
+ "description": "The ID of the project the section should be added to",
+ "type": "number"
+ },
+ "suite_id": {
+ "description": "The ID of the test suite (required for multi-suite projects, i.e. suite_mode=2 or 3). Use query_suite to find available suites",
+ "type": "number"
+ }
+ },
+ "required": [
+ "name",
+ "action",
+ "project_id"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "action": {
+ "const": "update",
+ "description": "The operation to perform: update an existing section",
+ "type": "string"
+ },
+ "description": {
+ "description": "The description of the section",
+ "type": "string"
+ },
+ "name": {
+ "description": "The name of the section",
+ "type": "string"
+ },
+ "section_id": {
+ "description": "The ID of the section to update",
+ "type": "number"
+ }
+ },
+ "required": [
+ "action",
+ "section_id"
+ ],
+ "type": "object"
+ }
+]