changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "Step": {
+ "additionalProperties": false,
+ "description": "A serialized scenario step, including recursive shared-step children.",
+ "properties": {
+ "action": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Inline step action.",
+ "title": "Action"
+ },
+ "expected": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Expected result for an inline step.",
+ "title": "Expected"
+ },
+ "index": {
+ "description": "One-based step index.",
+ "minimum": 1,
+ "title": "Index",
+ "type": "integer"
+ },
+ "shared_step_id": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Referenced shared-step identifier.",
+ "title": "Shared Step Id"
+ },
+ "shared_step_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Referenced shared-step URL.",
+ "title": "Shared Step Url"
+ },
+ "steps": {
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/$defs/Step"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Nested shared-step children.",
+ "title": "Steps"
+ },
+ "type": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Step kind, such as shared_step.",
+ "title": "Type"
+ }
+ },
+ "required": [
+ "index"
+ ],
+ "title": "Step",
+ "type": "object"
+ }
+ },
+ "additionalProperties": false,
+ "properties": {
+ "action": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Requested operation name.",
+ "title": "Action"
+ },
+ "error": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Error"
+ },
+ "requires_confirmation": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Requires Confirmation"
+ },
+ "shared_step_id": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Shared Step Id"
+ },
+ "shared_step_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Shared Step Url"
+ },
+ "status": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Status"
+ },
+ "steps": {
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/$defs/Step"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Serialized scenario steps.",
+ "title": "Steps"
+ },
+ "test_case_id": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Test Case Id"
+ },
+ "test_case_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Test Case Url"
+ }
+ },
+ "title": "UnlinkSharedStepOutput",
+ "type": "object"
+}