Nuix · Schema

SearchNativeResult

Schema for SearchNativeResult in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
request object
startedOn integer Date the search started represented in milliseconds since the epoch.
completedOn integer Date the search completed represented in milliseconds since the epoch.
elapsedTimeForSearch integer Elapsed time to perform search.
elapsedTimeForSort integer Elapsed time to perform the sort.
elapsedTimeForMarshal integer Elapsed time to perform the JSON marshalling.
elapsedTimeForDeduplicate integer Elapsed time to deduplicate items.
elapsedTotal integer Total elapsed time.
metadataItems array The list of metadata item fields.
localizedMetadataItems array The list of localized metadata item fields.
metadataItemDetails array The list of metadata item details.
resultList array Results of the search
count integer Count of items in results
deduplicatedCount integer Count of deduplicated items
View JSON Schema on GitHub

JSON Schema

nuix-rest-searchnativeresult.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-searchnativeresult.json",
  "title": "SearchNativeResult",
  "description": "Schema for SearchNativeResult in Nuix REST API",
  "type": "object",
  "properties": {
    "request": {
      "$ref": "#/components/schemas/SearchNativeRequest"
    },
    "startedOn": {
      "type": "integer",
      "description": "Date the search started represented in milliseconds since the epoch."
    },
    "completedOn": {
      "type": "integer",
      "description": "Date the search completed represented in milliseconds since the epoch."
    },
    "elapsedTimeForSearch": {
      "type": "integer",
      "description": "Elapsed time to perform search.",
      "format": "int64"
    },
    "elapsedTimeForSort": {
      "type": "integer",
      "format": "int64",
      "description": "Elapsed time to perform the sort."
    },
    "elapsedTimeForMarshal": {
      "type": "integer",
      "format": "int64",
      "description": "Elapsed time to perform the JSON marshalling."
    },
    "elapsedTimeForDeduplicate": {
      "type": "integer",
      "format": "int64",
      "description": "Elapsed time to deduplicate items."
    },
    "elapsedTotal": {
      "type": "integer",
      "format": "int64",
      "description": "Total elapsed time."
    },
    "metadataItems": {
      "type": "array",
      "description": "The list of metadata item fields.",
      "items": {
        "type": "string"
      },
      "deprecated": true
    },
    "localizedMetadataItems": {
      "description": "The list of localized metadata item fields.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "deprecated": true
    },
    "metadataItemDetails": {
      "type": "array",
      "description": "The list of metadata item details.",
      "items": {
        "$ref": "#/components/schemas/MetadataItemDetails"
      }
    },
    "resultList": {
      "type": "array",
      "description": "Results of the search",
      "items": {
        "type": "object",
        "additionalProperties": {
          "type": "object"
        }
      }
    },
    "count": {
      "type": "integer",
      "description": "Count of items in results",
      "format": "int32"
    },
    "deduplicatedCount": {
      "type": "integer",
      "description": "Count of deduplicated items",
      "format": "int32"
    }
  }
}