{
"$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"
}
}
}