Schema for IngestibleMailStore in Nuix REST API
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-ingestiblemailstore.json", "title": "IngestibleMailStore", "description": "Schema for IngestibleMailStore in Nuix REST API", "type": "object", "properties": { "protocol": { "type": "string", "description": "Mailstore protocol, supported values: pop, pops, imap, imaps, gwta." }, "host": { "type": "string", "description": "The host server IP or hostname." }, "port": { "type": "integer", "description": "The port number.", "format": "int32" }, "username": { "type": "string", "description": "The username for the mail store." }, "password": { "type": "string", "description": "The password." } } }