Nuix · Schema
MarshalledItems
Schema for MarshalledItems in Nuix REST API
ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence
Properties
| Name | Type | Description |
|---|---|---|
| request | object | |
| 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 | The list of items. |
| count | integer | The total item count. This may differ from the size of the items list depending on paging settings. |
| deduplicatedCount | integer | The deduplicated item count. This may differ from the size of the items list depending on paging settings. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-marshalleditems.json",
"title": "MarshalledItems",
"description": "Schema for MarshalledItems in Nuix REST API",
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/ItemMarshallingOptions"
},
"metadataItems": {
"type": "array",
"description": "The list of metadata item fields.",
"items": {
"type": "string"
}
},
"localizedMetadataItems": {
"type": "array",
"description": "The list of localized metadata item fields.",
"items": {
"type": "string"
}
},
"metadataItemDetails": {
"type": "array",
"description": "The list of metadata item details.",
"items": {
"$ref": "#/components/schemas/MetadataItemDetails"
}
},
"resultList": {
"type": "array",
"description": "The list of items.",
"items": {
"type": "object",
"additionalProperties": {
"type": "object"
}
}
},
"count": {
"type": "integer",
"description": "The total item count. This may differ from the size of the items list depending on paging settings.",
"format": "int32"
},
"deduplicatedCount": {
"type": "integer",
"description": "The deduplicated item count. This may differ from the size of the items list depending on paging settings.",
"format": "int32"
}
}
}