Smithery

connected_accounts.link.create

Creates a new authentication link session that users can use to connect their accounts

Remote smithery/composio

Other tools also called connected_accounts.link.create? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "alias": {
      "type": "string",
      "description": "A human-readable alias for this connected account. Must be unique per entity and toolkit within the project."
    },
    "user_id": {
      "type": "string",
      "minLength": 1,
      "description": "The user id to create a link for"
    },
    "callback_url": {
      "type": "string",
      "description": "The callback url to create a link for"
    },
    "experimental": {
      "type": "object",
      "properties": {
        "account_type": {
          "enum": [
            "PRIVATE",
            "SHARED"
          ],
          "type": "string",
          "description": "Sharing model for this connected account. PRIVATE (default) is usable only by the owning user_id. SHARED is reachable from a tool-router session ONLY when explicitly pinned in the session config — at most one SHARED connection per toolkit per session. Sessions never use a SHARED connection implicitly.",
          "x-experimental": true
        },
        "acl_config_for_shared": {
          "type": "object",
          "properties": {
            "allow_all_users": {
              "type": "boolean",
              "description": "Wildcard \"any user_id in the project\" allow toggle. Only valid on SHARED connections."
            },
            "allowed_user_ids": {
              "type": "array",
              "items": {
                "type": "string",
                "maxLength": 256,
                "minLength": 1
              },
              "maxItems": 1000,
              "description": "Explicit allow list of user_ids who can use this SHARED connection."
            },
            "not_allowed_user_ids": {
              "type": "array",
              "items": {
                "type": "string",
                "maxLength": 256,
                "minLength": 1
              },
              "maxItems": 1000,
              "description": "Explicit deny list. Wins on conflict with allow_all_users and allowed_user_ids."
            }
          },
          "description": "Access control for SHARED connections. Resolution rule (only fires when caller != creator): user in not_allowed_user_ids → DENY; allow_all_users=true → ALLOW; user in allowed_user_ids → ALLOW; else DENY. Default state (omitted or {}) is deny-by-default — only the creator can use.",
          "x-experimental": true
        }
      },
      "description": "Experimental features - not stable, may be modified or removed in future versions.",
      "x-experimental": true
    },
    "auth_config_id": {
      "type": "string",
      "format": "authConfigId",
      "description": "The auth config id to create a link for"
    },
    "connection_data": {
      "anyOf": [
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "oauth_token",
            "authUri",
            "oauth_token_secret",
            "redirectUrl"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "authUri": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "callbackUrl": {
              "type": "string"
            },
            "oauth_token": {
              "type": "string"
            },
            "redirectUrl": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "oauth_token_secret": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "oauth_token",
            "oauth_token_secret"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "oauth_token": {
              "type": "string"
            },
            "redirectUrl": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "callback_url": {
              "type": "string"
            },
            "consumer_key": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "oauth_verifier": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "oauth_token_secret": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "error": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "error_description": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expired_at": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "oauth_token",
            "oauth_token_secret"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "oauth_token": {
              "type": "string"
            },
            "redirectUrl": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "callback_url": {
              "type": "string"
            },
            "consumer_key": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "oauth_verifier": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "oauth_token_secret": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "redirectUrl"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "redirectUrl": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "callback_url": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "code_verifier": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "finalRedirectUri": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "webhook_signature": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "access_token"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "scope": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                {
                  "nullable": true
                }
              ]
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "id_token": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expires_in": {
              "anyOf": [
                {
                  "type": "number"
                },
                {
                  "type": "string"
                },
                {
                  "nullable": true
                }
              ]
            },
            "token_type": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "authed_user": {
              "type": "object",
              "properties": {
                "scope": {
                  "type": "string"
                },
                "access_token": {
                  "type": "string"
                }
              },
              "description": "for slack user scopes"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "access_token": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "refresh_token": {
              "type": "string",
              "nullable": true
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "extra_token_data": {
              "type": "object",
              "additionalProperties": {
                "nullable": true
              }
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "webhook_signature": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "access_token"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "scope": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                {
                  "nullable": true
                }
              ]
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "id_token": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expires_in": {
              "anyOf": [
                {
                  "type": "number"
                },
                {
                  "type": "string"
                },
                {
                  "nullable": true
                }
              ]
            },
            "token_type": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "authed_user": {
              "type": "object",
              "properties": {
                "scope": {
                  "type": "string"
                },
                "access_token": {
                  "type": "string"
                }
              },
              "description": "for slack user scopes"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "access_token": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "refresh_token": {
              "type": "string",
              "nullable": true
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "extra_token_data": {
              "type": "object",
              "additionalProperties": {
                "nullable": true
              }
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "webhook_signature": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "error": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "error_description": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expired_at": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "revoked_at": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_key": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "bearer_token": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "basic_encoded": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "generic_api_key": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_key": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "bearer_token": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "basic_encoded": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "generic_api_key": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "username"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "password": {
              "type": "string"
            },
            "username": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "username"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "password": {
              "type": "string"
            },
            "username": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "token"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "token": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "token"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "token": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "redirectUrl"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "redirectUrl": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            },
            "composio_link_redirect_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "credentials_json"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "credentials_json": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "credentials_json"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "credentials_json": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "error": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "error_description": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expired_at": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "error": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "error_description": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expired_at": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "redirectUrl"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "redirectUrl": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "sessionId",
            "devKey"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "devKey": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "sessionId": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "sessionId",
            "devKey"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "devKey": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "sessionId": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "error": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "error_description": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expired_at": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "username",
            "password"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "password": {
              "type": "string"
            },
            "username": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "username",
            "password"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "password": {
              "type": "string"
            },
            "username": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "username",
            "password"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "error": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "password": {
              "type": "string"
            },
            "username": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "error_description": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "username",
            "password"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "password": {
              "type": "string"
            },
            "username": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expired_at": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "application_id",
            "installation_id",
            "private_key"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "private_key": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "application_id": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "installation_id": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "application_id",
            "installation_id",
            "private_key"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "private_key": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "application_id": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "installation_id": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "error": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "error_description": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expired_at": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "client_id",
            "redirectUrl"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "client_id": {
              "type": "string",
              "description": "Dynamically registered client ID"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "redirectUrl": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "callback_url": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "client_secret": {
              "type": "string",
              "description": "Dynamically registered client secret"
            },
            "code_verifier": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "finalRedirectUri": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "client_id_issued_at": {
              "type": "number"
            },
            "borneo_dashboard_url": {
              "type": "string"
            },
            "client_secret_expires_at": {
              "type": "number"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "client_id",
            "access_token"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "scope": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                {
                  "nullable": true
                }
              ]
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "id_token": {
              "type": "string"
            },
            "client_id": {
              "type": "string",
              "description": "Dynamically registered client ID"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expires_in": {
              "anyOf": [
                {
                  "type": "number"
                },
                {
                  "type": "string"
                },
                {
                  "nullable": true
                }
              ]
            },
            "token_type": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "access_token": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "client_secret": {
              "type": "string",
              "description": "Dynamically registered client secret"
            },
            "refresh_token": {
              "type": "string",
              "nullable": true
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "client_id_issued_at": {
              "type": "number"
            },
            "borneo_dashboard_url": {
              "type": "string"
            },
            "client_secret_expires_at": {
              "type": "number"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "client_id",
            "access_token"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "scope": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                {
                  "nullable": true
                }
              ]
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "id_token": {
              "type": "string"
            },
            "client_id": {
              "type": "string",
              "description": "Dynamically registered client ID"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expires_in": {
              "anyOf": [
                {
                  "type": "number"
                },
                {
                  "type": "string"
                },
                {
                  "nullable": true
                }
              ]
            },
            "token_type": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "access_token": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "client_secret": {
              "type": "string",
              "description": "Dynamically registered client secret"
            },
            "refresh_token": {
              "type": "string",
              "nullable": true
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "client_id_issued_at": {
              "type": "number"
            },
            "borneo_dashboard_url": {
              "type": "string"
            },
            "client_secret_expires_at": {
              "type": "number"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "error": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "error_description": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expired_at": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "state_prefix": {
              "type": "string",
              "maxLength": 40,
              "description": "The oauth2 state prefix for the connection"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "long_redirect_url": {
              "type": "boolean",
              "description": "Whether to return the redirect url without shortening"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "access_token",
            "client_id",
            "client_secret"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "scope": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                {
                  "nullable": true
                }
              ]
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "client_id": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expires_at": {
              "type": "string"
            },
            "expires_in": {
              "anyOf": [
                {
                  "type": "number"
                },
                {
                  "type": "string"
                },
                {
                  "nullable": true
                }
              ]
            },
            "token_type": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "access_token": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "client_secret": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "required": [
            "access_token",
            "client_id",
            "client_secret"
          ],
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "scope": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                {
                  "nullable": true
                }
              ]
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "client_id": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expires_at": {
              "type": "string"
            },
            "expires_in": {
              "anyOf": [
                {
                  "type": "number"
                },
                {
                  "type": "string"
                },
                {
                  "nullable": true
                }
              ]
            },
            "token_type": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "access_token": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "client_secret": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "error": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "error_description": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        },
        {
          "type": "object",
          "properties": {
            "dc": {
              "type": "string"
            },
            "shop": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "region": {
              "type": "string"
            },
            "api_url": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "base_url": {
              "type": "string"
            },
            "extension": {
              "type": "string"
            },
            "site_name": {
              "type": "string"
            },
            "subdomain": {
              "type": "string"
            },
            "account_id": {
              "type": "string"
            },
            "expired_at": {
              "type": "string"
            },
            "account_url": {
              "type": "string"
            },
            "your-domain": {
              "type": "string"
            },
            "your_server": {
              "type": "string"
            },
            "instanceName": {
              "type": "string"
            },
            "COMPANYDOMAIN": {
              "type": "string"
            },
            "proxy_password": {
              "type": "string"
            },
            "proxy_username": {
              "type": "string"
            },
            "server_location": {
              "type": "string"
            },
            "instanceEndpoint": {
              "type": "string"
            },
            "form_api_base_url": {
              "type": "string"
            },
            "borneo_dashboard_url": {
              "type": "string"
            }
          },
          "additionalProperties": {
            "nullable": true
          }
        }
      ],
      "description": "Optional data to pre-fill connection fields with default values"
    }
  }
}