Nuix · Schema

AuditStatus

Schema for AuditStatus in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
unverifiedAuditReport boolean Flag indicates whether an unverified audit report exists for the case.
verifiedAuditReports array The list of verified audit reports if it exists.
auditReportFilename string The filename of the unverified audit report if it exists.
creationDate integer The creation date of the unverified audit report if it exists.
View JSON Schema on GitHub

JSON Schema

nuix-rest-auditstatus.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-auditstatus.json",
  "title": "AuditStatus",
  "description": "Schema for AuditStatus in Nuix REST API",
  "type": "object",
  "properties": {
    "unverifiedAuditReport": {
      "type": "boolean",
      "description": "Flag indicates whether an unverified audit report exists for the case."
    },
    "verifiedAuditReports": {
      "type": "array",
      "description": "The list of verified audit reports if it exists.",
      "items": {
        "type": "string"
      }
    },
    "auditReportFilename": {
      "type": "string",
      "description": "The filename of the unverified audit report if it exists."
    },
    "creationDate": {
      "type": "integer",
      "description": "The creation date of the unverified audit report if it exists.",
      "format": "int64"
    }
  }
}