Nuix · Schema

IngestibleSQLServer

Schema for IngestibleSQLServer in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
domain string This optional parameter defines the Windows networking domain of the server account.
username string The username needed to access the server account.
password string The password needed to access the server account.
computer string The hostname or IP address of the target server.
instance string This parameter specifies the database instance.
query string This optional parameter specifies the SQL query used to filter the content.
maxRowsPerTable integer The maximum number of rows to return from each table or query. This parameter is optional. It can save time when processing tables or query results with very many rows. The selection of which rows wil
View JSON Schema on GitHub

JSON Schema

nuix-rest-ingestiblesqlserver.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-ingestiblesqlserver.json",
  "title": "IngestibleSQLServer",
  "description": "Schema for IngestibleSQLServer in Nuix REST API",
  "type": "object",
  "properties": {
    "domain": {
      "type": "string",
      "description": "This optional parameter defines the Windows networking domain of the server account."
    },
    "username": {
      "type": "string",
      "description": "The username needed to access the server account."
    },
    "password": {
      "type": "string",
      "description": "The password needed to access the server account."
    },
    "computer": {
      "type": "string",
      "description": "The hostname or IP address of the target server."
    },
    "instance": {
      "type": "string",
      "description": "This parameter specifies the database instance."
    },
    "query": {
      "type": "string",
      "description": "This optional parameter specifies the SQL query used to filter the content."
    },
    "maxRowsPerTable": {
      "type": "integer",
      "description": "The maximum number of rows to return from each table or query. This parameter is optional. It can save time when processing tables or query results with very many rows. The selection of which rows will be returned should be considered arbitrary."
    }
  }
}