An eDiscovery search
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EdiscoverySearch", "title": "EdiscoverySearch", "type": "object", "description": "An eDiscovery search", "properties": { "id": { "type": "string", "readOnly": true }, "displayName": { "type": "string" }, "description": { "type": "string" }, "contentQuery": { "type": "string", "description": "The KQL query for the search" }, "createdDateTime": { "type": "string", "format": "date-time", "readOnly": true }, "lastModifiedDateTime": { "type": "string", "format": "date-time", "readOnly": true }, "createdBy": { "$ref": "#/components/schemas/IdentitySet" }, "lastModifiedBy": { "$ref": "#/components/schemas/IdentitySet" } } }