changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "content": {
+ "additionalProperties": false,
+ "properties": {
+ "code": {
+ "description": "the integration identification string",
+ "type": "string"
+ },
+ "id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "external unique integration identifier (if set for the integration)"
+ },
+ "type": {
+ "const": "integration",
+ "description": "will be \"integration\"",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "code"
+ ],
+ "type": "object"
+ },
+ "success": {
+ "description": "operation was successful",
+ "type": "boolean"
+ },
+ "user": {
+ "description": "the user identification string",
+ "type": "string"
+ }
+ },
+ "required": [
+ "user",
+ "content",
+ "success"
+ ],
+ "type": "object"
+}