Nuix · Schema

SystemPropertyResponse

Schema for SystemPropertyResponse in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
name string The name of the system property.
value string The current value of the system property, or null if there was no property with that key.
previousValue string The previous value of the system property, or null if there was no property with that key.
View JSON Schema on GitHub

JSON Schema

nuix-rest-systempropertyresponse.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-systempropertyresponse.json",
  "title": "SystemPropertyResponse",
  "description": "Schema for SystemPropertyResponse in Nuix REST API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the system property."
    },
    "value": {
      "type": "string",
      "description": "The current value of the system property, or null if there was no property with that key."
    },
    "previousValue": {
      "type": "string",
      "description": "The previous value of the system property, or null if there was no property with that key."
    }
  }
}