changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "custom_fields": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": false,
+ "description": "A named custom-field value exposed by test-case details.",
+ "properties": {
+ "name": {
+ "description": "Custom field name.",
+ "title": "Name",
+ "type": "string"
+ },
+ "value": {
+ "description": "Rendered custom field value.",
+ "title": "Value",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "value"
+ ],
+ "title": "CustomFieldEntry",
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "additionalProperties": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer"
+ },
+ {
+ "type": "number"
+ },
+ {
+ "type": "boolean"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Custom-field values as named entries or a value map.",
+ "title": "Custom Fields"
+ },
+ "test_case_id": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Test Case Id"
+ }
+ },
+ "title": "GetTestCaseCustomFieldsOutput",
+ "type": "object"
+}