changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "environment": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": false,
+ "description": "A string key/value pair, for example a manual-session environment entry.",
+ "properties": {
+ "key": {
+ "description": "Variable name.",
+ "title": "Key",
+ "type": "string"
+ },
+ "value": {
+ "description": "Variable value.",
+ "title": "Value",
+ "type": "string"
+ }
+ },
+ "required": [
+ "key",
+ "value"
+ ],
+ "title": "KeyValue",
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Environment"
+ },
+ "job_id": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Job Id"
+ },
+ "job_run_id": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Job Run Id"
+ },
+ "launch_id": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Launch Id"
+ },
+ "project_id": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Project Id"
+ },
+ "test_session_id": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Test Session Id"
+ }
+ },
+ "title": "StartManualTestSessionOutput",
+ "type": "object"
+}