changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "config_fallback_disabled": {
+ "type": "boolean"
+ },
+ "default_business_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "detected_agent": {
+ "type": "string"
+ },
+ "has_credentials": {
+ "type": "boolean"
+ },
+ "lookup_errors": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "next_step": {
+ "type": "string"
+ },
+ "registered_tools": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "sources_checked": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "found": {
+ "type": "boolean"
+ },
+ "id": {
+ "type": "string"
+ },
+ "label": {
+ "type": "string"
+ },
+ "path": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "label",
+ "path",
+ "found"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "token_source": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "write_tools_hidden": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "writes_enabled": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "has_credentials",
+ "token_source",
+ "writes_enabled",
+ "default_business_id",
+ "detected_agent",
+ "config_fallback_disabled",
+ "sources_checked",
+ "lookup_errors",
+ "registered_tools",
+ "write_tools_hidden"
+ ],
+ "type": "object"
+}