{ "$defs": { "timestamp": {"type": "string"}, "action": {"type": "string", "enum": ["linking", "unlinked", "failed"]}, "reason": {"type": "string", "enum": ["auth", "socket", "lost"]} }, "status": { "type": "object", "timestamp": {"$ref": "#/$defs/timestamp"}, "message": {"type": "string"}, "required": ["timestamp", "message"] }, "link": { "type": "object", "timestamp": {"$ref": "#/$defs/timestamp"}, "action": {"$ref": "#/$defs/action"}, "reason": {"$ref": "#/$defs/reason"}, "required": ["timestamp", "action"] } }