Nuix · Schema

CustomMetadataResponse

Schema for CustomMetadataResponse in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
fieldName string The name of the custom metadata field
value object The value of the custom metadata field
type string The data type of the field
mode string The custom metadata mode
template string The name of the custom metadata template that applies to the given custom metadata field
fieldTemplate object
View JSON Schema on GitHub

JSON Schema

nuix-rest-custommetadataresponse.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-custommetadataresponse.json",
  "title": "CustomMetadataResponse",
  "description": "Schema for CustomMetadataResponse in Nuix REST API",
  "type": "object",
  "properties": {
    "fieldName": {
      "type": "string",
      "description": "The name of the custom metadata field"
    },
    "value": {
      "type": "object",
      "description": "The value of the custom metadata field"
    },
    "type": {
      "type": "string",
      "description": "The data type of the field"
    },
    "mode": {
      "type": "string",
      "description": "The custom metadata mode"
    },
    "template": {
      "type": "string",
      "description": "The name of the custom metadata template that applies to the given custom metadata field"
    },
    "fieldTemplate": {
      "$ref": "#/components/schemas/CustomMetadataFieldResponse"
    }
  }
}