changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "ContextDiscrepancy": {
+ "properties": {
+ "description": {
+ "title": "Description",
+ "type": "string"
+ },
+ "id": {
+ "title": "Id",
+ "type": "integer"
+ },
+ "severity": {
+ "title": "Severity",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "description",
+ "severity"
+ ],
+ "title": "ContextDiscrepancy",
+ "type": "object"
+ },
+ "ContextThread": {
+ "properties": {
+ "current_value": {
+ "title": "Current Value",
+ "type": "string"
+ },
+ "id": {
+ "title": "Id",
+ "type": "string"
+ },
+ "opened_by": {
+ "title": "Opened By",
+ "type": "string"
+ },
+ "revisions_count": {
+ "title": "Revisions Count",
+ "type": "integer"
+ },
+ "status": {
+ "title": "Status",
+ "type": "string"
+ },
+ "subject": {
+ "title": "Subject",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "subject",
+ "current_value",
+ "status",
+ "opened_by",
+ "revisions_count"
+ ],
+ "title": "ContextThread",
+ "type": "object"
+ }
+ },
+ "properties": {
+ "context_hash": {
+ "title": "Context Hash",
+ "type": "string"
+ },
+ "discrepancies": {
+ "items": {
+ "$ref": "#/$defs/ContextDiscrepancy"
+ },
+ "title": "Discrepancies",
+ "type": "array"
+ },
+ "protocol_mode": {
+ "title": "Protocol Mode",
+ "type": "string"
+ },
+ "threads": {
+ "items": {
+ "$ref": "#/$defs/ContextThread"
+ },
+ "title": "Threads",
+ "type": "array"
+ }
+ },
+ "required": [
+ "protocol_mode",
+ "context_hash",
+ "threads",
+ "discrepancies"
+ ],
+ "title": "RoomContext",
+ "type": "object"
+}