Micro Focus Content Manager SDK 10.0
Search Clauses

Using Search Clauses

Search clauses may be used with TrimMainObjectSearch, either via the TrimSearchClause class, or as strings via TrimMainObjectSearch.SetSearchString(). Given that search clauses may be captioned, it is a good idea when using them as strings to use their internal name.

This document lists all search clauses along with their internal names.

Interrogating metadata

The information about search clauses, like much of the Content Manager metadata, is available via the SDK. In this case, we can use the SearchClauseDef class to get information about each search clause. This Powershell script was used to build the table below.

Code Sample

Add-Type -Path "[PATH TO cm BINARIES]\TRIM.SDK.dll"
$database = New-Object TRIM.SDK.Database
$database.Id = "[YOUR DATABASE id]"
$database.WorkgroupServerName = "[YOUR SERVER NAME]"
$database.Connect()
try {
$file = New-Object System.IO.StreamWriter("c:\\temp\\searchClauses.txt", $false)
foreach ($objectDef in [TRIM.SDK.ObjectDef]::SelectAllSearchableObjects($database) ) {
$file.WriteLine("## {0} {{#search_clauses_{0}}}", $objectDef.Id)
$file.WriteLine("Name | Internal Name | Parameter Type | Is Sortable | Based On Property | Tooltip")
$file.WriteLine("-------------------------------|----------------------|--------------------------------|-------------|----------------------------------------------------------|--------")
$a = @()
[TRIM.SDK.SearchClauseDef]::GetAllSearchClauseIds($objectDef.Id, $database) | foreach {
$a += New-Object TRIM.SDK.SearchClauseDef($_, $database);
}
$a | sort Name | foreach {
$parName = $_.ParameterFormat.ToString()
If ($_.ParameterFormat -eq [TRIM.SDK.PropertyFormats]::Enum)
{
$parName = [string]::Format("[{0}](@ref TRIM.SDK.{0})", $_.GetEnumTypeParameter());
}
ElseIf ($_.ParameterFormat -eq [TRIM.SDK.PropertyFormats]::Object)
{
$parName = [string]::Format("[{0}](@ref TRIM.SDK.{0})", $_.GetObjectTypeParameter($objectDef.Id));
}
$relatedProp = $_.BasedOnProperty
if ($relatedProp -eq [TRIM.SDK.PropertyIds]::Unknown) {
$relatedProp = ""
} else {
$relatedProp = [string]::Format("[{0}](@ref TRIM.SDK.PropertyIds.{0})", $relatedProp);
}
$file.WriteLine("{0,-30} | {1,-20} | {2,-30} | {3,-11} | {4,-56} | {5}",
$_.Name, $_.InternalName, $parName, $_.CanSort($objectDef.Id), $relatedProp, $_.GetTooltip($objectDef.Id));
}
$file.WriteLine("");
$file.WriteLine("");
}
} catch{
"Error: "
$error[0]
}
finally {
$file.Dispose()
$database.Dispose()
}
The Database object is the first object that must be created when using the TRIM SDK....
Definition: Database.cs:16
string Id
Gets or sets a string containing the Database id for this Database. Setting this property will make a...
Definition: Database.cs:1966
A helper class that allows you to determine generic capabilities of any of the objects in the TRIM ob...
Definition: ObjectDef.cs:16
A helper class that allows you to determine generic capabilities of any of the search clauses defined...
Definition: SearchClauseDef.cs:16
Definition: ApiHost.cs:5
Definition: ApiHost.cs:5

List of search clauses by object type

ActionDef

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Actions within this dataset.
assignable adfAssignable Boolean True PropertyIds.ActionDefAssignable Selects Actions based on a value for Assignable.
audit unkAudit History False Selects Actions that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Actions by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Actions based on a generic interpretation of a string value (usually by matching the name property).
isProcedure adfIsProcedure Boolean True PropertyIds.ActionDefIsProcedure Selects Actions based on a value for Is Procedure?.
name adfName String True PropertyIds.ActionDefActionName Selects Actions based on a value for Action Name.
none unkNone Boolean False Selects no Actions.
saved unkSaved SavedSearch False Selects Actions that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Actions based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Actions based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Actions based on a unique identifier value.

Activity

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Activities having selected locations in a particular access control.
all unkAll Boolean False Selects all Activities within this dataset.
assignedOn wacAssignedOn Datetime True PropertyIds.ActivityDateAssigned Selects Activities based on a value for Date Assigned.
assignee wacAssignee Location True PropertyIds.ActivityAssignedTo Selects Activities based on a value for Assignee.
audit unkAudit History False Selects Activities that are involved with the specified Active Audit Event.
authorizedBy wacAuthorizedBy Location False Selects Activities authorized by the specified location
authorizedOn wacAuthorizedOn Datetime True PropertyIds.ActivityDateAuthorized Selects Activities based on a value for Final Completion Date.
batch unkBatch Number False Selects Activities by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
canStart wacCanStart Boolean False Selects Activities that can now be worked on
ccto wacCcto Location False Selects Activities having the specified location on the cc list
child wacChild Boolean False Selects Activities that are subordinate activities
compound wacCompound Boolean False PropertyIds.ActivityHasSubActivities Selects Activities that are compound activities
default unkDefault String False Selects all Activities based on a generic interpretation of a string value (usually by matching the name property).
done wacDone Boolean False PropertyIds.ActivityIsComplete Selects Activities based on a value for Is Complete.
doneBy wacDoneBy Location True PropertyIds.ActivityCompletedBy Selects Activities based on a value for Completed By.
doneOn wacDoneOn Datetime True PropertyIds.ActivityDateCompleted Selects Activities based on a value for Interim Completion Date.
doneOnTime wacDoneOnTime Boolean False PropertyIds.ActivityCompletedOnTime Selects Activities based on a value for Completed On Time.
dueOn wacDueOn Datetime True PropertyIds.ActivityDateDue Selects Activities based on a value for Due Date.
dueTray wacDueTray Boolean False Selects Activities that you have work to do on.
earliestStartOn wacEarliestStartOn Datetime True PropertyIds.ActivityDateEarliestStart Selects Activities based on a value for Earliest Start Date.
escalatedTo wacEscalatedTo Location True PropertyIds.ActivityEscalatedTo Selects Activities based on a value for Escalated To.
id wacId Number True PropertyIds.ActivityActivityId Selects Activities based on a value for Activity ID.
insideTemplate wacInsideTemplate Boolean False PropertyIds.ActivityWithinTemplate Selects Activities that are within a template
latestStartOn wacLatestStartOn Datetime True PropertyIds.ActivityDateLatestStart Selects Activities based on a value for Latest Start Date.
name wacName String True PropertyIds.ActivityName Selects Activities based on a value for Name.
none unkNone Boolean False Selects no Activities.
originalAssignee wacOriginalAssignee Location True PropertyIds.ActivityOriginalAssignee Selects Activities based on a value for Original Assignee.
overdue wacOverdue Boolean False PropertyIds.ActivityIsOverdue Selects Activities based on a value for Is Overdue.
pendingAuthorizationBy wacPendingAuthorizationBy Location False Selects Activities awaiting authorization from the specified location
priority wacPriority Priority True PropertyIds.ActivityActivityPriority Selects Activities based on a value for Priority.
record wacRecord Record False Selects Activities with the specified record as an associated document.
saved unkSaved SavedSearch False Selects Activities that satisfy a specified saved search.
skipped wacSkipped Boolean False PropertyIds.ActivityWasSkipped Selects Activities based on a value for Was Skipped.
startedOn wacStartedOn Datetime True PropertyIds.ActivityDateStarted Selects Activities based on a value for Start Date.
supervisor wacSupervisor Location True PropertyIds.ActivitySupervisor Selects Activities based on a value for Supervisor.
suspendedBy wacSuspendedBy Location True PropertyIds.ActivitySuspendedBy Selects Activities based on a value for Suspended By.
suspendedUntil wacSuspendedUntil Datetime True PropertyIds.ActivityDateSuspendedUntil Selects Activities based on a value for Suspended Until.
template wacTemplate WorkflowTemplate True PropertyIds.ActivityTemplate Selects Activities based on a value for Template.
top unkTop Boolean False Selects all top-level Activities (those that have no parent or are not enclosed within any other Activity).
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Activities based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Activities based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Activities based on a unique identifier value.
within wacWithin Activity False Selects Activities Selects subordinate activities of a specified parent activity
word wacWord String False Selects Activities based on the word index for Activities.
workflow wacWorkflow Workflow True PropertyIds.ActivityWorkflow Selects Activities based on a value for Workflow.

AgendaItem

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Agenda Items having selected locations in a particular access control.
all unkAll Boolean False Selects all Agenda Items within this dataset.
approved agiApproved Boolean False PropertyIds.AgendaItemApproved Selects Agenda Items based on a value for Is Approved.
approvedOn agiApprovedOn Datetime True PropertyIds.AgendaItemDateApproved Selects Agenda Items based on a value for Date Approved.
approver agiApprover Location True PropertyIds.AgendaItemNeedsApprovalBy Selects Agenda Items based on a value for Requiring Approval By.
attached agiAttached AgendaItemAttachment False Selects Agenda Items with an associated Agenda Item Attachment having selected property values.
audit unkAudit History False Selects Agenda Items that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Agenda Items by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
carriedOverFrom agiCarriedOverFrom AgendaItem True PropertyIds.AgendaItemCarriedForwardFromItem Selects Agenda Items based on a value for Carried Forward From Item.
default unkDefault String False Selects all Agenda Items based on a generic interpretation of a string value (usually by matching the name property).
meeting agiMeeting Meeting True PropertyIds.AgendaItemParentMeeting Selects Agenda Items based on a value for For meeting.
meetingType agiMeetingType MeetingType True PropertyIds.AgendaItemParentMeetingType Selects Agenda Items based on a value for For meeting type.
name agiName String True PropertyIds.AgendaItemDescription Selects Agenda Items based on a value for Agenda Item Description.
none unkNone Boolean False Selects no Agenda Items.
number agiNumber String True PropertyIds.AgendaItemNumber Selects Agenda Items based on a value for Agenda Item Number.
numberx agiNumberx String True PropertyIds.AgendaItemExpandedNumber Selects Agenda Items based on a value for Expanded Number.
order agiOrder Number True PropertyIds.AgendaItemAgendaItemOrderNumber Selects Agenda Items based on a value for Item Order Number.
parent agiParent AgendaItem True PropertyIds.AgendaItemParentAgendaItem Selects Agenda Items based on a value for Subordinate Item Of.
pending agiPending Boolean False PropertyIds.AgendaItemIsPending Selects Agenda Items based on a value for Is Pending Item.
saved unkSaved SavedSearch False Selects Agenda Items that satisfy a specified saved search.
section agiSection Boolean False PropertyIds.AgendaItemIsSection Selects Agenda Items based on a value for Is Section Heading.
standing agiStanding Boolean False PropertyIds.AgendaItemIsStanding Selects Agenda Items based on a value for Is Standing Item.
submittedBy agiSubmittedBy Location True PropertyIds.AgendaItemSubmittedBy Selects Agenda Items based on a value for Submitted By.
submittedOn agiSubmittedOn Datetime True PropertyIds.AgendaItemDateSubmitted Selects Agenda Items based on a value for Date Submitted.
top unkTop Boolean True Selects all top-level Agenda Items (those that have no parent or are not enclosed within any other Agenda Item).
type agiType AgendaItemType True PropertyIds.AgendaItemItemType Selects Agenda Items based on a value for Agenda Item Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Agenda Items based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Agenda Items based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Agenda Items based on a unique identifier value.

AgendaItemType

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Agenda Item Types having selected locations in a particular access control.
all unkAll Boolean False Selects all Agenda Item Types within this dataset.
audit unkAudit History False Selects Agenda Item Types that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Agenda Item Types by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Agenda Item Types based on a generic interpretation of a string value (usually by matching the name property).
name agtName String True PropertyIds.AgendaItemTypeName Selects Agenda Item Types based on a value for Agenda Item Type Name.
none unkNone Boolean False Selects no Agenda Item Types.
saved unkSaved SavedSearch False Selects Agenda Item Types that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Agenda Item Types based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Agenda Item Types based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Agenda Item Types based on a unique identifier value.
usable unkUsable Boolean False Selects Agenda Item Types that satisfy the can use or view criteria.

Alert

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Alerts within this dataset.
batch unkBatch Number False Selects Alerts by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
eventType altEventType Events True PropertyIds.AlertEventType Selects Alerts based on a value for Event Type.
none unkNone Boolean False Selects no Alerts.
objectType altObjectType BaseObjectTypes True PropertyIds.AlertObjectType Selects Alerts based on a value for Object Type.
saved unkSaved SavedSearch False Selects Alerts that satisfy a specified saved search.
subscriber altSubscriber AlertSubscriber False Selects Alerts with an associated Alert Subscriber having selected property values.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Alerts based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Alerts based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Alerts based on a unique identifier value.
user altUser Location False Selects Alerts that are subscribed to by the specified location

ArchiveEvent

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Archiving Events within this dataset.
audit unkAudit History False Selects Archiving Events that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Archiving Events by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Archiving Events based on a generic interpretation of a string value (usually by matching the name property).
dueOn areDueOn Datetime True PropertyIds.ArchiveEventNextOccurrenceDue Selects Archiving Events based on a value for Occurrence Schedule Next Event Due.
favorite unkFavorite Boolean False Selects favourite Archiving Events.
label unkLabel UserLabel False Selects Archiving Events with a specified User Label.
none unkNone Boolean False Selects no Archiving Events.
occurredOn areOccurredOn Datetime False Selects Archiving Events that occurred on a specified date
occurrence areOccurrence ArchiveEventOccurrence False Selects Archiving Events with an associated Occurrence having selected property values.
saved unkSaved SavedSearch False Selects Archiving Events that satisfy a specified saved search.
title areTitle String True PropertyIds.ArchiveEventTitle Selects Archiving Events based on a value for Title.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Archiving Events based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Archiving Events based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Archiving Events based on a unique identifier value.
word areWord String False Selects Archiving Events based on the word index for Archiving Events.

AutoPartRule

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Automated Part Rules having selected locations in a particular access control.
all unkAll Boolean False Selects all Automated Part Rules within this dataset.
batch unkBatch Number False Selects Automated Part Rules by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
dateType aprDateType AprDateTypes True PropertyIds.AutoPartRuleDateType Selects Automated Part Rules based on a value for Date Type.
default unkDefault String False Selects all Automated Part Rules based on a generic interpretation of a string value (usually by matching the name property).
name aprName String True PropertyIds.AutoPartRuleName Selects Automated Part Rules based on a value for Name.
none unkNone Boolean False Selects no Automated Part Rules.
saved unkSaved SavedSearch False Selects Automated Part Rules that satisfy a specified saved search.
type aprType AprType True PropertyIds.AutoPartRulePartRuleType Selects Automated Part Rules based on a value for Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Automated Part Rules based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Automated Part Rules based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Automated Part Rules based on a unique identifier value.
usable unkUsable Boolean False Selects Automated Part Rules that satisfy the can use or view criteria.

Census

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Censuses within this dataset.
audit unkAudit History False Selects Censuses that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Censuses by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
censusLocation cnsCensusLocation Location True PropertyIds.CensusCensusLocation Selects Censuses based on a value for Location.
default unkDefault String False Selects all Censuses based on a generic interpretation of a string value (usually by matching the name property).
endDate cnsEndDate Datetime True PropertyIds.CensusEndDate Selects Censuses based on a value for End Date.
inProgress cnsInProgress Boolean False PropertyIds.CensusInProgress Selects Censuses based on a value for In Progress.
name cnsName String True PropertyIds.CensusName Selects Censuses based on a value for Name.
none unkNone Boolean False Selects no Censuses.
saved unkSaved SavedSearch False Selects Censuses that satisfy a specified saved search.
startDate cnsStartDate Datetime True PropertyIds.CensusStartDate Selects Censuses based on a value for Start Date.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Censuses based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Censuses based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Censuses based on a unique identifier value.

CheckinStyle

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
action chsAction ActionDef True PropertyIds.CheckinStyleAction Selects Check In Styles based on a value for Action.
addressee chsAddressee Location True PropertyIds.CheckinStyleAddressee Selects Check In Styles based on a value for Addressee.
all unkAll Boolean False Selects all Check In Styles within this dataset.
altContainer chsAltContainer Record True PropertyIds.CheckinStyleAlternativeContainer Selects Check In Styles based on a value for Alternative Container.
assignee chsAssignee Location True PropertyIds.CheckinStyleAssignee Selects Check In Styles based on a value for Assignee.
author chsAuthor Location True PropertyIds.CheckinStyleSpecificAuthor Selects Check In Styles based on a value for Specific Author.
batch unkBatch Number False Selects Check In Styles by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
classification chsClassification Classification True PropertyIds.CheckinStyleClassification Selects Check In Styles based on a value for Classification.
container chsContainer Record True PropertyIds.CheckinStyleContainer Selects Check In Styles based on a value for Container.
forServerMail chsForServerMail Boolean True PropertyIds.CheckinStyleUseForServerMailCapture Selects Check In Styles based on a value for Automatically create server-side email capture folders.
jurisdiction chsJurisdiction Jurisdiction True PropertyIds.CheckinStyleJurisdiction Selects Check In Styles based on a value for Jurisdiction.
mailFolderType chsMailFolderType MailFolderTypes True PropertyIds.CheckinStyleUseForServerMailFolderType Selects Check In Styles based on a value for Folder Type for automatically created server-side email capture folder.
matter chsMatter Record True PropertyIds.CheckinStyleMatter Selects Check In Styles based on a value for Matter record.
matterFolder chsMatterFolder Boolean False PropertyIds.CheckinStyleIsMatterSubfolder Selects Check In Styles based on a value for Is Matter SubFolder.
matterTemplate chsMatterTemplate Boolean False PropertyIds.CheckinStyleIsMatterTemplate Selects Check In Styles based on a value for Is Matter Template.
name chsName String True PropertyIds.CheckinStyleName Selects Check In Styles based on a value for Name.
none unkNone Boolean False Selects no Check In Styles.
owner chsOwner Location True PropertyIds.CheckinStyleStyleOwner Selects Check In Styles based on a value for Style Owner.
saved unkSaved SavedSearch False Selects Check In Styles that satisfy a specified saved search.
schedule chsSchedule Schedule True PropertyIds.CheckinStyleRetentionSchedule Selects Check In Styles based on a value for Retention schedule.
template chsTemplate WorkflowTemplate True PropertyIds.CheckinStyleInitiateWorkflow Selects Check In Styles based on a value for Template.
type chsType RecordType True PropertyIds.CheckinStyleRecordType Selects Check In Styles based on a value for Record Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Check In Styles based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Check In Styles based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Check In Styles based on a unique identifier value.

Classification

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Classifications having selected locations in a particular access control.
action plnAction ActionDef True PropertyIds.ClassificationAction Selects Classifications based on a value for Action.
active unkActive Boolean True Selects Classifications that are active.
activeFrom unkActiveFrom Date True Selects Classifications that have a Date Active From value matching the specified date range.
activeTo unkActiveTo Date True Selects Classifications that have a Date Active To value matching the specified date range.
all unkAll Boolean False Selects all Classifications within this dataset.
allParentsOf plnAllParentsOf Classification False Selects Classifications that are the parent(s) of the selected item(s)
approved plnApproved Boolean True PropertyIds.ClassificationIsApproved Selects Classifications based on a value for Approved.
approver plnApprover Location True PropertyIds.ClassificationApprover Selects Classifications based on a value for Approver.
audit unkAudit History False Selects Classifications that are involved with the specified Active Audit Event.
auto plnAuto Boolean False PropertyIds.ClassificationAvailableForAutoClassification Selects Classifications based on a value for Available for automatic classification.
batch unkBatch Number False Selects Classifications by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
class plnClass RecordClass True PropertyIds.ClassificationClassOfRecord Selects Classifications based on a value for Record Class.
copyacl unkCopyacl Location False Selects Classifications having selected locations in a particular access control in the copied access control set.
default unkDefault String False Selects all Classifications based on a generic interpretation of a string value (usually by matching the name property).
excludes unkExcludes Location False Selects Classifications having selected locations in the exclusions list.
favorite unkFavorite Boolean False Selects favourite Classifications.
home plnHome Location True PropertyIds.ClassificationHomeLocation Selects Classifications based on a value for Home.
label unkLabel UserLabel False Selects Classifications with a specified User Label.
name plnName String True PropertyIds.ClassificationName Selects Classifications based on a value for Name.
none unkNone Boolean False Selects no Classifications.
number plnNumber String True PropertyIds.ClassificationIdNumber Selects Classifications based on a value for Number.
numberx plnNumberx String True PropertyIds.ClassificationIdNumberUncompressed Selects Classifications based on a value for Expanded Number.
owner plnOwner Location True PropertyIds.ClassificationOwnerLocation Selects Classifications based on a value for Owner.
parent plnParent Classification True PropertyIds.ClassificationParentClassification Selects Classifications based on a value for Parent classification.
parentOf plnParentOf Classification False Selects Classifications that are the parent(s) of the selected item(s)
pcsid plnPcsid String True PropertyIds.ClassificationPolicyCentreGUID Selects Classifications based on a value for Policy Center Solution GUID.
pendingAuto plnPendingAuto Boolean True PropertyIds.ClassificationPendingAutoClassification Selects Classifications based on a value for Holding Bay For records requiring automatic classification.
recordType plnRecordType RecordType False Selects Classifications that have the specified record types in the 'Only Record Types' list
sapobject plnSapobject String False Selects Classifications that have been linked to the specified SAP Business Object
saved unkSaved SavedSearch False Selects Classifications that satisfy a specified saved search.
schedule plnSchedule Schedule True PropertyIds.ClassificationRetentionSchedule Selects Classifications based on a value for Retention schedule.
secure plnSecure Boolean False Selects Classifications that have have a security profile no higher than that of the current user
securityCaveat plnSecurityCaveat SecurityCaveat False Selects Classifications that have the specified security caveat
securityLevel plnSecurityLevel SecurityLevel False Selects Classifications that have the specified security level
template plnTemplate WorkflowTemplate True PropertyIds.ClassificationStartupTemplate Selects Classifications based on a value for Template.
title plnTitle String False PropertyIds.ClassificationTitle Selects Classifications based on a value for Classification title.
top unkTop Boolean True Selects all top-level Classifications (those that have no parent or are not enclosed within any other Classification).
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Classifications based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Classifications based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Classifications based on a unique identifier value.
usable unkUsable Boolean False Selects Classifications that satisfy the can use or view criteria.
viewRecords plnViewRecords Boolean False Selects Classifications that satisfy the view record access control
word plnWord String False Selects Classifications based on the word index for Classifications.

Communication

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Communications within this dataset.
audit unkAudit History False Selects Communications that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Communications by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
dated cmmDated Datetime True PropertyIds.CommunicationDated Selects Communications based on a value for Date Of Communication.
detail cmmDetail CommunicationDetail False Selects Communications with an associated Communication Detail having selected property values.
direction cmmDirection CommunicationDirection True PropertyIds.CommunicationDirection Selects Communications based on a value for Direction.
medium cmmMedium CommunicationMedium True PropertyIds.CommunicationMedium Selects Communications based on a value for Medium.
none unkNone Boolean False Selects no Communications.
record cmmRecord Record True PropertyIds.CommunicationRecord Selects Communications based on a value for Record.
saved unkSaved SavedSearch False Selects Communications that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Communications based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Communications based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Communications based on a unique identifier value.
viewable cmmViewable Boolean False PropertyIds.CommunicationViewable Selects Communications based on a value for Record is viewable.

Consignment

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Consignments within this dataset.
approvedOn conApprovedOn Datetime True PropertyIds.ConsignmentDateApproved Selects Consignments based on a value for Date Approval Complete.
archivist conArchivist Location True PropertyIds.ConsignmentArchivist Selects Consignments based on a value for Archivist.
audit unkAudit History False Selects Consignments that are involved with the specified Active Audit Event.
autoExaminedOn conAutoExaminedOn Datetime True PropertyIds.ConsignmentDateAutoExamined Selects Consignments based on a value for Date Auto Examination Complete.
basic conBasic Boolean True PropertyIds.ConsignmentBasicRecordsOnly Selects Consignments based on a value for Basic Records Only.
batch unkBatch Number False Selects Consignments by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
cutoffDate conCutoffDate Datetime True PropertyIds.ConsignmentCutoffDate Selects Consignments based on a value for Cutoff Date.
default unkDefault String False Selects all Consignments based on a generic interpretation of a string value (usually by matching the name property).
disposalDate conDisposalDate Datetime True PropertyIds.ConsignmentDisposalDate Selects Consignments based on a value for Disposal Date.
disposedOn conDisposedOn Datetime True PropertyIds.ConsignmentDisposalDate Selects Consignments based on a value for Disposal Date.
done conDone Boolean False PropertyIds.ConsignmentIsComplete Selects Consignments based on a value for Is Complete.
favorite unkFavorite Boolean False Selects favourite Consignments.
label unkLabel UserLabel False Selects Consignments with a specified User Label.
none unkNone Boolean False Selects no Consignments.
number conNumber String True PropertyIds.ConsignmentNumber Selects Consignments based on a value for Number.
reviewedOn conReviewedOn Datetime True PropertyIds.ConsignmentDateReviewed Selects Consignments based on a value for Date Review Complete.
saved unkSaved SavedSearch False Selects Consignments that satisfy a specified saved search.
status conStatus ConsignmentState True PropertyIds.ConsignmentStatus Selects Consignments based on a value for Status.
transferLocation conTransferLocation Location True PropertyIds.ConsignmentTransferLocation Selects Consignments based on a value for Transfer To location.
type conType ConsignmentDisposalType True PropertyIds.ConsignmentDisposalMethod Selects Consignments based on a value for Disposal Method.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Consignments based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Consignments based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Consignments based on a unique identifier value.
waiting conWaiting Boolean True PropertyIds.ConsignmentWaitingAcknowledgement Selects Consignments based on a value for Is Waiting For Transfer Acknowledgement.

ConsignmentApprover

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Consignment Approvers within this dataset.
approver coaApprover Location True PropertyIds.ConsignmentApproverApprover Selects Consignment Approvers based on a value for Approver.
batch unkBatch Number False Selects Consignment Approvers by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
consignment coaConsignment Consignment True PropertyIds.ConsignmentApproverConsignment Selects Consignment Approvers based on a value for Consignment.
none unkNone Boolean False Selects no Consignment Approvers.
saved unkSaved SavedSearch False Selects Consignment Approvers that satisfy a specified saved search.
status coaStatus ConsignmentItemApprovalStatus True PropertyIds.ConsignmentApproverStatus Selects Consignment Approvers based on a value for Status.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Consignment Approvers based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Consignment Approvers based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Consignment Approvers based on a unique identifier value.

ConsignmentIssue

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Consignment Issues within this dataset.
batch unkBatch Number False Selects Consignment Issues by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
consignment cisConsignment Consignment True PropertyIds.ConsignmentIssueConsignment Selects Consignment Issues based on a value for Consignment.
issueType cisIssueType ConsignmentItemIssueType True PropertyIds.ConsignmentIssueIssueType Selects Consignment Issues based on a value for Issue Type.
none unkNone Boolean False Selects no Consignment Issues.
reviewer cisReviewer Location True PropertyIds.ConsignmentIssueReviewer Selects Consignment Issues based on a value for Reviewer.
saved unkSaved SavedSearch False Selects Consignment Issues that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Consignment Issues based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Consignment Issues based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Consignment Issues based on a unique identifier value.

ConsignmentRejection

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Consignment Record Rejections within this dataset.
approver crjApprover Location True PropertyIds.ConsignmentRejectionApprover Selects Consignment Record Rejections based on a value for Approver.
batch unkBatch Number False Selects Consignment Record Rejections by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
consignment crjConsignment Consignment True PropertyIds.ConsignmentRejectionConsignment Selects Consignment Record Rejections based on a value for Consignment.
isConfirmed crjIsConfirmed Boolean True PropertyIds.ConsignmentRejectionIsConfirmed Selects Consignment Record Rejections based on a value for Rejection Confirmed?.
none unkNone Boolean False Selects no Consignment Record Rejections.
record crjRecord Record True PropertyIds.ConsignmentRejectionRecord Selects Consignment Record Rejections based on a value for Record.
rejectedOn crjRejectedOn Datetime True PropertyIds.ConsignmentRejectionRejectedOn Selects Consignment Record Rejections based on a value for Date Rejected.
saved unkSaved SavedSearch False Selects Consignment Record Rejections that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Consignment Record Rejections based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Consignment Record Rejections based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Consignment Record Rejections based on a unique identifier value.

DocumentQueue

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Document Queues having selected locations in a particular access control.
addressee dcqAddressee Location True PropertyIds.DocumentQueueAddressee Selects Document Queues based on a value for Addressee.
all unkAll Boolean False Selects all Document Queues within this dataset.
altContainer dcqAltContainer Record True PropertyIds.DocumentQueueAlternativeContainer Selects Document Queues based on a value for Alternative Container.
audit unkAudit History False Selects Document Queues that are involved with the specified Active Audit Event.
author dcqAuthor Location True PropertyIds.DocumentQueueSpecificAuthor Selects Document Queues based on a value for Specific Author.
auto dcqAuto Boolean True PropertyIds.DocumentQueueAllowAutomaticProcessing Selects Document Queues based on a value for Allow Automatic Processing.
batch unkBatch Number False Selects Document Queues by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
classification dcqClassification Classification True PropertyIds.DocumentQueueClassification Selects Document Queues based on a value for Default classification.
container dcqContainer Record True PropertyIds.DocumentQueueContainer Selects Document Queues based on a value for Default container.
default unkDefault String False Selects all Document Queues based on a generic interpretation of a string value (usually by matching the name property).
favorite unkFavorite Boolean False Selects favourite Document Queues.
label unkLabel UserLabel False Selects Document Queues with a specified User Label.
location dcqLocation String False PropertyIds.DocumentQueueLocation Selects Document Queues based on a value for Location.
machine dcqMachine String True PropertyIds.DocumentQueueMachine Selects Document Queues based on a value for Machine.
name dcqName String True PropertyIds.DocumentQueueName Selects Document Queues based on a value for Name.
none unkNone Boolean False Selects no Document Queues.
saved unkSaved SavedSearch False Selects Document Queues that satisfy a specified saved search.
type dcqType QueueTypes True PropertyIds.DocumentQueueQueueType Selects Document Queues based on a value for Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Document Queues based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Document Queues based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Document Queues based on a unique identifier value.
usable unkUsable Boolean False Selects Document Queues that satisfy the can use or view criteria.

ElectronicStore

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
accessDate estAccessDate Datetime True PropertyIds.ElectronicStoreDefaultAccessDate Selects Document Stores based on a value for Default Last Access Date For Documents.
all unkAll Boolean False Selects all Document Stores within this dataset.
audit unkAudit History False Selects Document Stores that are involved with the specified Active Audit Event.
autnGroup estAutnGroup String False PropertyIds.ElectronicStoreAutnGroup Selects Document Stores based on a value for AUTN_GROUP for CFS Connector Store.
batch unkBatch Number False Selects Document Stores by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Document Stores based on a generic interpretation of a string value (usually by matching the name property).
inPool estInPool Boolean True PropertyIds.ElectronicStoreInPool Selects Document Stores based on a value for In Storage Pool.
name estName String True PropertyIds.ElectronicStoreName Selects Document Stores based on a value for Name.
none unkNone Boolean False Selects no Document Stores.
readonly estReadonly Boolean False PropertyIds.ElectronicStoreWriteProtected Selects Document Stores based on a value for Read Only.
saved unkSaved SavedSearch False Selects Document Stores that satisfy a specified saved search.
storeType estStoreType EstoreTypes True PropertyIds.ElectronicStoreStoreType Selects Document Stores based on a value for Type.
tier estTier TieredStorageType True PropertyIds.ElectronicStoreStorageTier Selects Document Stores based on a value for Storage Tier.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Document Stores based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Document Stores based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Document Stores based on a unique identifier value.

ExternalIcon

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all External Icons within this dataset.
audit unkAudit History False Selects External Icons that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects External Icons by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
dateModified exiDateModified Datetime True PropertyIds.ExternalIconDateModified Selects External Icons based on a value for Date last modified of icon file.
default unkDefault String False Selects all External Icons based on a generic interpretation of a string value (usually by matching the name property).
extension exiExtension String True PropertyIds.ExternalIconExtension Selects External Icons based on a value for File type of icon file.
hash exiHash BigNumber True PropertyIds.ExternalIconHash Selects External Icons based on a value for Details Hash.
name exiName String True PropertyIds.ExternalIconName Selects External Icons based on a value for Name.
none unkNone Boolean False Selects no External Icons.
saved unkSaved SavedSearch False Selects External Icons that satisfy a specified saved search.
source exiSource String True PropertyIds.ExternalIconSource Selects External Icons based on a value for Source.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects External Icons based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects External Icons based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects External Icons based on a unique identifier value.

ExternalLink

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects External Links having selected locations in a particular access control.
all unkAll Boolean False Selects all External Links within this dataset.
audit unkAudit History False Selects External Links that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects External Links by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all External Links based on a generic interpretation of a string value (usually by matching the name property).
name extName String True PropertyIds.ExternalLinkLinkName Selects External Links based on a value for Link Name.
none unkNone Boolean False Selects no External Links.
saved unkSaved SavedSearch False Selects External Links that satisfy a specified saved search.
type extType ExternalLinkType True PropertyIds.ExternalLinkLinkType Selects External Links based on a value for Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects External Links based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects External Links based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects External Links based on a unique identifier value.
usable unkUsable Boolean False Selects External Links that satisfy the can use or view criteria.

ExternalWorkflow

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all External Workflows within this dataset.
audit unkAudit History False Selects External Workflows that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects External Workflows by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
case xwkCase Record True PropertyIds.ExternalWorkflowCase Selects External Workflows based on a value for Case Record.
completedOn xwkCompletedOn Datetime True PropertyIds.ExternalWorkflowDateComplete Selects External Workflows based on a value for Workflow Completed On.
default unkDefault String False Selects all External Workflows based on a generic interpretation of a string value (usually by matching the name property).
done xwkDone Boolean False PropertyIds.ExternalWorkflowIsComplete Selects External Workflows based on a value for Is Complete.
dueOn xwkDueOn Datetime True PropertyIds.ExternalWorkflowDateDue Selects External Workflows based on a value for Workflow Due On.
init xwkInit Record True PropertyIds.ExternalWorkflowInitiatingRecord Selects External Workflows based on a value for Initiating Record.
none unkNone Boolean False Selects no External Workflows.
overdue xwkOverdue Boolean False PropertyIds.ExternalWorkflowIsOverdue Selects External Workflows based on a value for Is Overdue.
saved unkSaved SavedSearch False Selects External Workflows that satisfy a specified saved search.
slipId xwkSlipId String True PropertyIds.ExternalWorkflowSlipId Selects External Workflows based on a value for Slip Id.
task xwkTask ExternalWorkflowTask False Selects External Workflows that have the specified external workflow task attached
type xwkType ExternalWorkflowType True PropertyIds.ExternalWorkflowWorkflowType Selects External Workflows based on a value for External Workflow Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects External Workflows based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects External Workflows based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects External Workflows based on a unique identifier value.

ExternalWorkflowTask

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all External Workflow Tasks within this dataset.
assignee xwaAssignee Location True PropertyIds.ExternalWorkflowTaskAssignee Selects External Workflow Tasks based on a value for Assignee.
batch unkBatch Number False Selects External Workflow Tasks by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
dueOn xwaDueOn Datetime True PropertyIds.ExternalWorkflowTaskDateDue Selects External Workflow Tasks based on a value for Due On.
none unkNone Boolean False Selects no External Workflow Tasks.
overdue xwaOverdue Boolean False PropertyIds.ExternalWorkflowTaskIsOverdue Selects External Workflow Tasks based on a value for Is Overdue.
saved unkSaved SavedSearch False Selects External Workflow Tasks that satisfy a specified saved search.
taskId xwaTaskId String True PropertyIds.ExternalWorkflowTaskTaskId Selects External Workflow Tasks based on a value for Task Id.
taskName xwaTaskName String True PropertyIds.ExternalWorkflowTaskTaskName Selects External Workflow Tasks based on a value for Task Name.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects External Workflow Tasks based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects External Workflow Tasks based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects External Workflow Tasks based on a unique identifier value.
workflow xwaWorkflow ExternalWorkflow True PropertyIds.ExternalWorkflowTaskWorkflow Selects External Workflow Tasks based on a value for External Workflow.

ExternalWorkflowType

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all External Workflow Types within this dataset.
audit unkAudit History False Selects External Workflow Types that are involved with the specified Active Audit Event.
auto xwtAuto Boolean True PropertyIds.ExternalWorkflowTypeAutoInitiate Selects External Workflow Types based on a value for Automatically Initiate.
batch unkBatch Number False Selects External Workflow Types by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
case xwtCase RecordType True PropertyIds.ExternalWorkflowTypeCaseRecordType Selects External Workflow Types based on a value for Case Record Type.
container xwtContainer Record True PropertyIds.ExternalWorkflowTypeContainer Selects External Workflow Types based on a value for Container.
default unkDefault String False Selects all External Workflow Types based on a generic interpretation of a string value (usually by matching the name property).
doc xwtDoc RecordType True PropertyIds.ExternalWorkflowTypeDocumentRecordType Selects External Workflow Types based on a value for New Document Record Type.
id xwtId String True PropertyIds.ExternalWorkflowTypeId Selects External Workflow Types based on a value for Id.
init xwtInit RecordType True PropertyIds.ExternalWorkflowTypeInitiatingRecordType Selects External Workflow Types based on a value for Initiating Record Type.
name xwtName String True PropertyIds.ExternalWorkflowTypeName Selects External Workflow Types based on a value for Name.
needsRecord xwtNeedsRecord Boolean True PropertyIds.ExternalWorkflowTypeNeedsInitiatingRecord Selects External Workflow Types based on a value for Needs Initiating Record.
none unkNone Boolean False Selects no External Workflow Types.
saved unkSaved SavedSearch False Selects External Workflow Types that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects External Workflow Types based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects External Workflow Types based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects External Workflow Types based on a unique identifier value.

FieldDefinition

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Additional Fields having selected locations in a particular access control.
all unkAll Boolean False Selects all Additional Fields within this dataset.
audit unkAudit History False Selects Additional Fields that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Additional Fields by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Additional Fields based on a generic interpretation of a string value (usually by matching the name property).
forLocations fldForLocations LocationType False Selects Additional Fields that are used by locations of the specified type.
format fldFormat UserFieldFormats True PropertyIds.FieldDefinitionFormat Selects Additional Fields based on a value for Format.
forRecords fldForRecords RecordType False Selects Additional Fields that are used by records of the specified record type
inIdolSchema fldInIdolSchema Boolean True PropertyIds.FieldDefinitionInIDOLSchema Selects Additional Fields based on a value for In IDOL Schema.
lookupSet fldLookupSet LookupSet True PropertyIds.FieldDefinitionLookupSet Selects Additional Fields based on a value for Lookup Set.
name fldName String True PropertyIds.FieldDefinitionName Selects Additional Fields based on a value for Name.
none unkNone Boolean False Selects no Additional Fields.
sapkey fldSapkey String True PropertyIds.FieldDefinitionSapKeySetField Selects Additional Fields based on a value for SAP KeySet Field.
saved unkSaved SavedSearch False Selects Additional Fields that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Additional Fields based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Additional Fields based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Additional Fields based on a unique identifier value.
usedFor fldUsedFor BaseObjectTypes False Selects Additional Fields that are used by trim objects of the specified type
visible fldVisible Boolean False PropertyIds.FieldDefinitionIsVisible Selects Additional Fields based on a value for View additional field Value.

History

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
activity hisActivity Activity False PropertyIds.HistoryActivity Selects Active Audit Events based on a value for For activity.
all unkAll Boolean False Selects all Active Audit Events within this dataset.
batch unkBatch Number False Selects Active Audit Events by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
breach hisBreach Boolean True PropertyIds.HistoryIsSecurityViolation Selects Active Audit Events based on a value for Security Violation.
changedTo hisChangedTo Location False PropertyIds.HistoryMovementLocation Selects Active Audit Events based on a value for Moved To location.
clientIPA hisClientIPA String True PropertyIds.HistoryClientIPAddress Selects Active Audit Events based on a value for Client IP Address.
computer hisComputer String True PropertyIds.HistoryDoneOnMachine Selects Active Audit Events based on a value for Computer Name.
connectionIPA hisConnectionIPA String True PropertyIds.HistoryConnectionIPAddress Selects Active Audit Events based on a value for Connection IP Address.
date hisDate Datetime True PropertyIds.HistoryDoneOn Selects Active Audit Events based on a value for Event Date.
details hisDetails String True PropertyIds.HistoryRawEventDescription Selects Active Audit Events based on a value for Event Details (Unformatted).
event hisEvent Events True PropertyIds.HistoryEventType Selects Active Audit Events based on a value for Event Type.
isSearch hisIsSearch Boolean False PropertyIds.HistoryIsSearch Selects Active Audit Events based on a value for Is Search Event.
location hisLocation Location False PropertyIds.HistoryLocation Selects Active Audit Events based on a value for For location.
login hisLogin String True PropertyIds.HistoryLogin Selects Active Audit Events based on a value for Updated By (Login User Name).
none unkNone Boolean False Selects no Active Audit Events.
object hisObject False Selects Active Audit Events that occurred for the specified object
objectType hisObjectType BaseObjectTypes True PropertyIds.HistoryForObjectType Selects Active Audit Events based on a value for For Object Type.
record hisRecord Record False PropertyIds.HistoryRecord Selects Active Audit Events based on a value for For record.
saved unkSaved SavedSearch False Selects Active Audit Events that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Active Audit Events based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Active Audit Events based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Active Audit Events based on a unique identifier value.
usable unkUsable Boolean False Selects Active Audit Events that satisfy the can use or view criteria.
user hisUser Location True PropertyIds.HistoryLoginLocation Selects Active Audit Events based on a value for Performed By.
workflow hisWorkflow Workflow False PropertyIds.HistoryWorkflow Selects Active Audit Events based on a value for For workflow.

Hold

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Holds having selected locations in a particular access control.
active unkActive Boolean True Selects Holds that are active.
activeFrom unkActiveFrom Date True Selects Holds that have a Date Active From value matching the specified date range.
activeTo unkActiveTo Date True Selects Holds that have a Date Active To value matching the specified date range.
all unkAll Boolean False Selects all Holds within this dataset.
audit unkAudit History False Selects Holds that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Holds by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
contact lglContact Location True PropertyIds.HoldContact Selects Holds based on a value for Contact.
default unkDefault String False Selects all Holds based on a generic interpretation of a string value (usually by matching the name property).
external lglExternal String True PropertyIds.HoldExternalId Selects Holds based on a value for External ID.
name lglName String True PropertyIds.HoldName Selects Holds based on a value for Hold Title.
none unkNone Boolean False Selects no Holds.
record lglRecord Record False Selects Holds that have been applied to the specified record
saved unkSaved SavedSearch False Selects Holds that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Holds based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Holds based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Holds based on a unique identifier value.
usable unkUsable Boolean False Selects Holds that satisfy the can use or view criteria.
viewable lglViewable Boolean False PropertyIds.HoldCanViewDetails Selects Holds based on a value for Can View Details.

HtmlLayout

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Web Publisher Layouts within this dataset.
batch unkBatch Number False Selects Web Publisher Layouts by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Web Publisher Layouts based on a generic interpretation of a string value (usually by matching the name property).
name wwwName String True PropertyIds.HtmlLayoutName Selects Web Publisher Layouts based on a value for Name.
none unkNone Boolean False Selects no Web Publisher Layouts.
saved unkSaved SavedSearch False Selects Web Publisher Layouts that satisfy a specified saved search.
type wwwType BaseObjectTypes True PropertyIds.HtmlLayoutForType Selects Web Publisher Layouts based on a value for Object Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Web Publisher Layouts based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Web Publisher Layouts based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Web Publisher Layouts based on a unique identifier value.

Jurisdiction

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
active unkActive Boolean True Selects Jurisdictions that are active.
activeFrom unkActiveFrom Date True Selects Jurisdictions that have a Date Active From value matching the specified date range.
activeTo unkActiveTo Date True Selects Jurisdictions that have a Date Active To value matching the specified date range.
all unkAll Boolean False Selects all Jurisdictions within this dataset.
audit unkAudit History False Selects Jurisdictions that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Jurisdictions by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Jurisdictions based on a generic interpretation of a string value (usually by matching the name property).
description jrsDescription String True PropertyIds.JurisdictionDescription Selects Jurisdictions based on a value for Description.
favorite unkFavorite Boolean False Selects favourite Jurisdictions.
hasMember jrsHasMember Jurisdiction False Selects Jurisdictions that have the specified jurisdiction as a member.
label unkLabel UserLabel False Selects Jurisdictions with a specified User Label.
members jrsMembers Jurisdiction False Selects Jurisdictions that are members of a specified jurisdiction
name jrsName String True PropertyIds.JurisdictionName Selects Jurisdictions based on a value for Short Name.
none unkNone Boolean False Selects no Jurisdictions.
saved unkSaved SavedSearch False Selects Jurisdictions that satisfy a specified saved search.
top unkTop Boolean False Selects all top-level Jurisdictions (those that have no parent or are not enclosed within any other Jurisdiction).
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Jurisdictions based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Jurisdictions based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Jurisdictions based on a unique identifier value.

Keyword

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Thesaurus Terms having selected locations in a particular access control.
active unkActive Boolean True Selects Thesaurus Terms that are active.
activeFrom unkActiveFrom Date True Selects Thesaurus Terms that have a Date Active From value matching the specified date range.
activeTo unkActiveTo Date True Selects Thesaurus Terms that have a Date Active To value matching the specified date range.
all unkAll Boolean False Selects all Thesaurus Terms within this dataset.
attachedTo thsAttachedTo Record False Selects Thesaurus Terms that have been attached to the specified records
audit unkAudit History False Selects Thesaurus Terms that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Thesaurus Terms by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
broader thsBroader Keyword False Selects Thesaurus Terms that are broader terms of a specified thesaurus term
default unkDefault String False Selects all Thesaurus Terms based on a generic interpretation of a string value (usually by matching the name property).
favorite unkFavorite Boolean False Selects favourite Thesaurus Terms.
forbidden thsForbidden Boolean True PropertyIds.KeywordIsForbidden Selects Thesaurus Terms based on a value for Is Forbidden.
inTitleOf thsInTitleOf Record False Selects Thesaurus Terms that have been used to title the specified records
label unkLabel UserLabel False Selects Thesaurus Terms with a specified User Label.
name thsName String True PropertyIds.KeywordName Selects Thesaurus Terms based on a value for Term.
narrower thsNarrower Keyword False Selects Thesaurus Terms that are narrower terms of a specified thesaurus term
none unkNone Boolean False Selects no Thesaurus Terms.
nonPreferredFormsOf thsNonPreferredFormsOf Keyword False Selects Thesaurus Terms that are non-preferred forms of the specified thesaurus term
primary thsPrimary Boolean True PropertyIds.KeywordIsAPrimaryTerm Selects Thesaurus Terms based on a value for Is Primary Term.
related thsRelated Keyword False Selects Thesaurus Terms that are related terms of a specified thesaurus term
saved unkSaved SavedSearch False Selects Thesaurus Terms that satisfy a specified saved search.
source thsSource String True PropertyIds.KeywordSource Selects Thesaurus Terms based on a value for Source Authority.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Thesaurus Terms based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Thesaurus Terms based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Thesaurus Terms based on a unique identifier value.
usable unkUsable Boolean False Selects Thesaurus Terms that satisfy the can use or view criteria.
usedFor thsUsedFor Keyword False Selects Thesaurus Terms that are used in preference to the specified thesaurus term
word thsWord String False Selects Thesaurus Terms based on the word index for Thesaurus Terms.

Location

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
accessUpdatedOn locAccessUpdatedOn Datetime True PropertyIds.LocationDateAccessModified Selects Locations based on a value for Date Access Modified.
acl unkAcl Location False Selects Locations having selected locations in a particular access control.
active unkActive Boolean True Selects Locations that are active.
activeFrom unkActiveFrom Date True Selects Locations that have a Date Active From value matching the specified date range.
activeTo unkActiveTo Date True Selects Locations that have a Date Active To value matching the specified date range.
address locAddress LocationAddress False Selects Locations with an associated Physical Address having selected property values.
administeredBy locAdministeredBy Location False Selects Locations that the specified location. are administered by.
administratorOf locAdministratorOf Location False Selects Locations that are adminstrators of the specified location.
all unkAll Boolean False Selects all Locations within this dataset.
audit unkAudit History False Selects Locations that are involved with the specified Active Audit Event.
barcode unkBarcode String False Selects Locations by barcode.
basedOnUserType locBasedOnUserType UserTypes False PropertyIds.LocationBasedOnUserType Selects Locations based on a value for Based On User Type.
batch unkBatch Number False Selects Locations by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
businessPhone locBusinessPhone String True PropertyIds.LocationPhoneNumber Selects Locations based on a value for Business Phone.
communication locCommunication Communication False Selects Locations that are associated with the specified communication
contactOf locContactOf Record False Selects Locations that are contacts of the specified record
default unkDefault String False Selects all Locations based on a generic interpretation of a string value (usually by matching the name property).
delegateOf locDelegateOf Location False Selects Locations that are delegates of the specified location.
delegateTo locDelegateTo Location False Selects Locations that have been delegated to by the specified location.
dob locDob Date True PropertyIds.LocationDateOfBirth Selects Locations based on a value for Date Of Birth.
email locEmail String False PropertyIds.LocationEmailAddress Selects Locations with a specified email address
favorite unkFavorite Boolean False Selects favourite Locations.
fbarcode unkFbarcode String False Selects Locations by foreign barcode.
givenNames locGivenNames String True PropertyIds.LocationGivenNames Selects Locations based on a value for First Names.
gps locGps Geography True PropertyIds.LocationGpsLocation Selects Locations based on a value for GPS Location.
hasMember locHasMember Location False Selects Locations that have the specified location as a member.
hasOther locHasOther Location False Selects Locations that have the specified location as an 'other' relationship.
id locId String True PropertyIds.LocationIdNumber Selects Locations based on a value for ID Number.
initials locInitials String True PropertyIds.LocationInitials Selects Locations based on a value for Initials.
internal locInternal Boolean True PropertyIds.LocationIsWithin Selects Locations based on a value for Internal.
jobTitle locJobTitle String True PropertyIds.LocationJobDescription Selects Locations based on a value for Job Title.
jurisdiction locJurisdiction Jurisdiction True PropertyIds.LocationDefaultJurisdiction Selects Locations based on a value for Default jurisdiction.
label unkLabel UserLabel False Selects Locations with a specified User Label.
login locLogin String False Selects Locations that have the specified network login
members locMembers Location False Selects Locations that are members of a specified location.
mobile locMobile String True PropertyIds.LocationMobileNumber Selects Locations based on a value for Mobile Phone.
name locName String False Selects Locations that have a name matching the supplied value (uses name parsing techniques)
none unkNone Boolean False Selects no Locations.
others locOthers Location False Selects Locations that have an 'other' relationship to a specified location.
phone locPhone String False Selects Locations with the specified phone number.
recipientOf locRecipientOf Communication False Selects Locations that are recipients of the specified communication
review locReview Datetime True PropertyIds.LocationReviewDate Selects Locations based on a value for Review Date.
saved unkSaved SavedSearch False Selects Locations that satisfy a specified saved search.
securityCaveat locSecurityCaveat SecurityCaveat False Selects Locations that have the specified security caveat attached
securityLevel locSecurityLevel SecurityLevel False Selects Locations that have the specified security level
senderOf locSenderOf Communication False Selects Locations that are senders of the specified communication
sortName locSortName String True PropertyIds.LocationSortName Selects Locations based on a value for Name.
supervisedBy locSupervisedBy Location False Selects Locations that have a supervisor of a specified location.
supervisorOf locSupervisorOf Location False Selects Locations that are the supervisor of the specified location.
surname locSurname String True PropertyIds.LocationSurname Selects Locations based on a value for Last Name.
surnamePrefix locSurnamePrefix String True PropertyIds.LocationSurnamePrefix Selects Locations based on a value for Last Name Prefix.
type locType LocationType True PropertyIds.LocationTypeOfLocation Selects Locations based on a value for Location Type.
unique locUnique String True PropertyIds.LocationNickName Selects Locations based on a value for Unique Name.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Locations based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Locations based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Locations based on a unique identifier value.
usable unkUsable Boolean False Selects Locations that satisfy the can use or view criteria.
userType locUserType UserTypes False PropertyIds.LocationUserType Selects Locations based on a value for User Type.
usingAddressOf locUsingAddressOf Location True PropertyIds.LocationUseAddressOf Selects Locations based on a value for Use Address Of.
usingProfileOf locUsingProfileOf Location True PropertyIds.LocationUseProfileOf Selects Locations based on a value for Use Profile Of.
validLogin locValidLogin Boolean False PropertyIds.LocationHasAValidLogin Selects Locations based on a value for Has A Valid Login.
viewable locViewable Boolean False PropertyIds.LocationCanViewAllDetails Selects Locations based on a value for Can View Details.

LookupSet

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Lookup Sets having selected locations in a particular access control.
all unkAll Boolean False Selects all Lookup Sets within this dataset.
audit unkAudit History False Selects Lookup Sets that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Lookup Sets by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Lookup Sets based on a generic interpretation of a string value (usually by matching the name property).
name cdsName String True PropertyIds.LookupSetName Selects Lookup Sets based on a value for Lookup Set.
none unkNone Boolean False Selects no Lookup Sets.
saved unkSaved SavedSearch False Selects Lookup Sets that satisfy a specified saved search.
type cdsType LookupSetType True PropertyIds.LookupSetLookupSetType Selects Lookup Sets based on a value for Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Lookup Sets based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Lookup Sets based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Lookup Sets based on a unique identifier value.
usable unkUsable Boolean False Selects Lookup Sets that satisfy the can use or view criteria.

MailTemplate

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Email Templates within this dataset.
audit unkAudit History False Selects Email Templates that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Email Templates by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Email Templates based on a generic interpretation of a string value (usually by matching the name property).
name mtmName String True PropertyIds.MailTemplateName Selects Email Templates based on a value for Template Name.
none unkNone Boolean False Selects no Email Templates.
saved unkSaved SavedSearch False Selects Email Templates that satisfy a specified saved search.
type mtmType MailEventType True PropertyIds.MailTemplateForEventType Selects Email Templates based on a value for Mail Event Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Email Templates based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Email Templates based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Email Templates based on a unique identifier value.

Meeting

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Meetings having selected locations in a particular access control.
agenda mtgAgenda Record True PropertyIds.MeetingAgendaRecord Selects Meetings based on a value for Agenda.
all unkAll Boolean False Selects all Meetings within this dataset.
audit unkAudit History False Selects Meetings that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Meetings by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
cutoff mtgCutoff Datetime True PropertyIds.MeetingSubmissionsCutoffDate Selects Meetings based on a value for Submission Cutoff Date.
date mtgDate Datetime True PropertyIds.MeetingMeetingDate Selects Meetings based on a value for Meeting Date.
default unkDefault String False Selects all Meetings based on a generic interpretation of a string value (usually by matching the name property).
document mtgDocument MeetingDocument False Selects Meetings with an associated Meeting Document having selected property values.
invite mtgInvite MeetingInvitation False Selects Meetings with an associated Meeting Participant having selected property values.
issue mtgIssue Datetime True PropertyIds.MeetingAgendaIssueDate Selects Meetings based on a value for Agenda Issue Date.
minutes mtgMinutes Record True PropertyIds.MeetingMinutesRecord Selects Meetings based on a value for Minutes.
name mtgName String True PropertyIds.MeetingName Selects Meetings based on a value for Meeting Name.
none unkNone Boolean False Selects no Meetings.
open mtgOpen Boolean False PropertyIds.MeetingAgendaOpen Selects Meetings based on a value for Agenda Open.
pending mtgPending Boolean False PropertyIds.MeetingPending Selects Meetings based on a value for Pending.
place mtgPlace Location True PropertyIds.MeetingMeetingPlace Selects Meetings based on a value for Meeting Place.
record mtgRecord Record False Selects Meetings that are associated with the specified records
saved unkSaved SavedSearch False Selects Meetings that satisfy a specified saved search.
type mtgType MeetingType True PropertyIds.MeetingMeetingType Selects Meetings based on a value for Meeting Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Meetings based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Meetings based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Meetings based on a unique identifier value.
usable unkUsable Boolean False Selects Meetings that satisfy the can use or view criteria.

MeetingType

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Meeting Types having selected locations in a particular access control.
all unkAll Boolean False Selects all Meeting Types within this dataset.
audit unkAudit History False Selects Meeting Types that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Meeting Types by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
copyacl unkCopyacl Location False Selects Meeting Types having selected locations in a particular access control in the copied access control set.
default unkDefault String False Selects all Meeting Types based on a generic interpretation of a string value (usually by matching the name property).
name mgmName String True PropertyIds.MeetingTypeName Selects Meeting Types based on a value for Meeting Name.
none unkNone Boolean False Selects no Meeting Types.
place mgmPlace Location True PropertyIds.MeetingTypeMeetingPlace Selects Meeting Types based on a value for Meeting Place.
saved unkSaved SavedSearch False Selects Meeting Types that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Meeting Types based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Meeting Types based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Meeting Types based on a unique identifier value.
usable unkUsable Boolean False Selects Meeting Types that satisfy the can use or view criteria.

MetadataRule

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Metadata Validation Rules within this dataset.
audit unkAudit History False Selects Metadata Validation Rules that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Metadata Validation Rules by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
message metMessage String True PropertyIds.MetadataRuleMessage Selects Metadata Validation Rules based on a value for Message.
none unkNone Boolean False Selects no Metadata Validation Rules.
saved unkSaved SavedSearch False Selects Metadata Validation Rules that satisfy a specified saved search.
type metType BaseObjectTypes True PropertyIds.MetadataRuleObjectType Selects Metadata Validation Rules based on a value for Object Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Metadata Validation Rules based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Metadata Validation Rules based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Metadata Validation Rules based on a unique identifier value.

MinuteItem

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
action mniAction MinuteItemActionArising False Selects Minute Items with an associated Action Item Arising having selected property values.
agenda mniAgenda AgendaItem True PropertyIds.MinuteItemParentAgendaItem Selects Minute Items based on a value for For agenda item.
all unkAll Boolean False Selects all Minute Items within this dataset.
audit unkAudit History False Selects Minute Items that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Minute Items by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Minute Items based on a generic interpretation of a string value (usually by matching the name property).
meeting mniMeeting Meeting False PropertyIds.MinuteItemMeeting Selects Minute Items based on a value for Meeting.
motion mniMotion Boolean False PropertyIds.MinuteItemIsMotion Selects Minute Items based on a value for Is Motion.
name mniName String True PropertyIds.MinuteItemDescription Selects Minute Items based on a value for Description.
none unkNone Boolean False Selects no Minute Items.
order mniOrder Number True PropertyIds.MinuteItemMinuteItemOrderNumber Selects Minute Items based on a value for Item Order Number.
outcome mniOutcome MotionOutcome True PropertyIds.MinuteItemOutcome Selects Minute Items based on a value for Outcome.
proposer mniProposer Location True PropertyIds.MinuteItemProposedBy Selects Minute Items based on a value for Proposed By.
saved unkSaved SavedSearch False Selects Minute Items that satisfy a specified saved search.
seconder mniSeconder Location True PropertyIds.MinuteItemSecondedBy Selects Minute Items based on a value for Seconded By.
type mniType MinuteItemType True PropertyIds.MinuteItemItemType Selects Minute Items based on a value for Minute Item Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Minute Items based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Minute Items based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Minute Items based on a unique identifier value.

MinuteItemType

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Minute Item Types having selected locations in a particular access control.
all unkAll Boolean False Selects all Minute Item Types within this dataset.
audit unkAudit History False Selects Minute Item Types that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Minute Item Types by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Minute Item Types based on a generic interpretation of a string value (usually by matching the name property).
name mitName String True PropertyIds.MinuteItemTypeName Selects Minute Item Types based on a value for Minute Item Type Name.
none unkNone Boolean False Selects no Minute Item Types.
saved unkSaved SavedSearch False Selects Minute Item Types that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Minute Item Types based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Minute Item Types based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Minute Item Types based on a unique identifier value.
usable unkUsable Boolean False Selects Minute Item Types that satisfy the can use or view criteria.

OfflineRecord

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Offline Records within this dataset.
batch unkBatch Number False Selects Offline Records by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
container offContainer OfflineRecord True PropertyIds.OfflineRecordContainer Selects Offline Records based on a value for Container (Offline).
default unkDefault String False Selects all Offline Records based on a generic interpretation of a string value (usually by matching the name property).
extension offExtension String True PropertyIds.OfflineRecordExtension Selects Offline Records based on a value for Extension.
isContainer offIsContainer Boolean True PropertyIds.OfflineRecordIsAFolder Selects Offline Records based on a value for Is A Folder.
isDocument offIsDocument Boolean True PropertyIds.OfflineRecordIsADocument Selects Offline Records based on a value for Is A Document.
isEmpty offIsEmpty Boolean True PropertyIds.OfflineRecordIsEmptyContainer Selects Offline Records based on a value for Is Empty Container.
none unkNone Boolean False Selects no Offline Records.
saved unkSaved SavedSearch False Selects Offline Records that satisfy a specified saved search.
status offStatus OfflineStatus True PropertyIds.OfflineRecordStatus Selects Offline Records based on a value for Status.
title offTitle String True PropertyIds.OfflineRecordTitle Selects Offline Records based on a value for Title.
top unkTop Boolean False Selects all top-level Offline Records (those that have no parent or are not enclosed within any other Offline Record).
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Offline Records based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Offline Records based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Offline Records based on a unique identifier value.

Origin

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Origins having selected locations in a particular access control.
all unkAll Boolean False Selects all Origins within this dataset.
audit unkAudit History False Selects Origins that are involved with the specified Active Audit Event.
auto ognAuto Boolean True PropertyIds.OriginAutoStart Selects Origins based on a value for Auto Start.
batch unkBatch Number False Selects Origins by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Origins based on a generic interpretation of a string value (usually by matching the name property).
loadedOn ognLoadedOn Datetime True PropertyIds.OriginDateLastLoaded Selects Origins based on a value for Date Last Loaded.
machine ognMachine String True PropertyIds.OriginRunsOnMachine Selects Origins based on a value for Run On Computer.
name ognName String True PropertyIds.OriginName Selects Origins based on a value for Name.
none unkNone Boolean False Selects no Origins.
saved unkSaved SavedSearch False Selects Origins that satisfy a specified saved search.
source ognSource String True PropertyIds.OriginOriginLocation Selects Origins based on a value for Source.
type ognType OriginType True PropertyIds.OriginTypeOfOrigin Selects Origins based on a value for Origin Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Origins based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Origins based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Origins based on a unique identifier value.
usable unkUsable Boolean False Selects Origins that satisfy the can use or view criteria.

OriginHistory

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Origin Run Histories within this dataset.
batch unkBatch Number False Selects Origin Run Histories by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
none unkNone Boolean False Selects no Origin Run Histories.
origin oghOrigin Origin True PropertyIds.OriginHistoryOrigin Selects Origin Run Histories based on a value for Origin.
runOn oghRunOn Datetime True PropertyIds.OriginHistoryDateRun Selects Origin Run Histories based on a value for Date Import Run.
saved unkSaved SavedSearch False Selects Origin Run Histories that satisfy a specified saved search.
source oghSource String True PropertyIds.OriginHistoryOriginLocationUsed Selects Origin Run Histories based on a value for Source.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Origin Run Histories based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Origin Run Histories based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Origin Run Histories based on a unique identifier value.

Record

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
accessedOn recAccessedOn Datetime False PropertyIds.RecordDocumentLastAccessedDate Selects Records based on a value for Document Last Accessed Date.
accession recAccession Number True PropertyIds.RecordAccessionNumber Selects Records based on a value for Accession Number.
acl unkAcl Location False Selects Records having selected locations in a particular access control.
aclContainer recAclContainer RecordAccess False Selects Records that have the specified access control(s) set as 'Same as Container'
action recAction RecordAction False Selects Records that have the specified action(s) attached
actionedOn recActionedOn Datetime True PropertyIds.RecordLastActionDate Selects Records based on a value for Last Action Date.
activity recActivity Activity False Selects Records that are associated with the specified activity
addressee recAddressee Location True Selects Records that have an addressee of the specified location
all unkAll Boolean False Selects all Records within this dataset.
allContainersOf recAllContainersOf Record False Selects Records that are in the container hierarchy for the specified records
allParts recAllParts Record False Selects Records that have in the same part series as the specified record
allRelated recAllRelated Record False Selects Records that have any relationship with the specified record (excludes parts, versions, series, alt container and SharePoint relationship types)
allVersions recAllVersions Record False Selects Records that have in the same version series as the specified record
altContainer recAltContainer Record False Selects Records that have the alternatively contains relationship with the specified record
altContains recAltContains Record False Selects Records that have the alternatively within relationship with the specified record
anyWord recAnyWord String False Selects Records based on the word index for Any Word.
archivedOn recArchivedOn Datetime True Selects Records that had disposition changed to archived (keep forever) on the specified date.
archiveOn recArchiveOn Datetime True Selects Records that are due to have a disposition change to archived (keep forever) on the specified date.
assignee recAssignee Location True PropertyIds.RecordAssignee Selects Records based on a value for Assignee.
assigneex recAssigneex RecordLocation False Selects Records with an associated assignee having selected property values
atHome recAtHome Boolean False Selects Records that are at home (i.e. assignee is same as home)
attachedTo recAttachedTo Record False Selects Records that have the attached to relationship with the specified record
attachments recAttachments Boolean False PropertyIds.RecordHasEmailAttachments Selects Records based on a value for Has Email Attachments.
audit unkAudit History False Selects Records that are involved with the specified Active Audit Event.
author recAuthor Location True Selects Records that have an author of the specified location
authorizer recAuthorizer Location True Selects Records that have an authorizer of the specified location
barcode unkBarcode String False Selects Records by barcode.
basic recBasic Boolean False PropertyIds.RecordBasicMetadataOnly Selects Records based on a value for Basic Metadata Only.
batch unkBatch Number False Selects Records by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
bcc recBcc Location True Selects Records that have the specified location in the bcc contacts list
canUseClass recCanUseClass Boolean False PropertyIds.RecordCanUseClassification Selects Records based on a value for Can Use Classification.
cc recCc Location True Selects Records that have the specified location in the cc contacts list
checkedInBy recCheckedInBy Location True PropertyIds.RecordCheckedInBy Selects Records based on a value for Checked In By.
checkedInOn recCheckedInOn Datetime True PropertyIds.RecordCheckedInOn Selects Records based on a value for Checked In On.
checkedOutBy recCheckedOutBy Location True PropertyIds.RecordCheckedOutTo Selects Records based on a value for Checked Out To.
checkedOutTray recCheckedOutTray Boolean False Selects Records that you you have currently checked out for editing
checkinStyle recCheckinStyle CheckinStyle False Selects Records that are used by the specified check in style
class recClass RecordClass True PropertyIds.RecordClassOfRecord Selects Records based on a value for Record Class.
classification recClassification Classification True PropertyIds.RecordClassification Selects Records based on a value for Classification.
client recClient Location True Selects Records that have a client contact of the specified location
clientOf recClientOf Record False Selects Records that are the Client record of the specified records
clientRecord recClientRecord Record True PropertyIds.RecordClientRecord Selects Records based on a value for Client record.
closedOn recClosedOn Datetime True PropertyIds.RecordDateClosed Selects Records based on a value for Date Closed.
combinedTitle recCombinedTitle String True PropertyIds.RecordTitle Selects Records based on a value for Full Title.
communication recCommunication Communication False Selects Records that were associated with the specified communication
consignment recConsignment Consignment True PropertyIds.RecordConsignmentObject Selects Records based on a value for Consignment.
consignmentNumber recConsignmentNumber String True PropertyIds.RecordConsignment Selects Records based on a value for Consignment Number.
contact recContact Location True Selects Records that have a contact attached matching the location details specified.
contactx recContactx RecordLocation False Selects Records with an associated Contact having selected property values.
container recContainer Record True PropertyIds.RecordContainer Selects Records based on a value for Container.
containerEx recContainerEx Record False Selects Records that are contained within or are alternatively contained within the specified record
contains recContains Record False Selects Records that are a container for the specified records
containsEx recContainsEx Record False Selects Records that are either a container or an alternative container for the specified records
content recContent String False Selects Records that have a document with contents matching the content index search clause supplied.
contentBlockIn recContentBlockIn Record False Selects Records that have the is a document content block within relationship with the specified record
conversation recConversation Record False Selects Records that are in the same email message conversation as the specified record
conversationId recConversationId String True PropertyIds.RecordConversationId Selects Records based on a value for Email Conversation ID.
copyOf recCopyOf Record False Selects Records that have the copy of relationship with the specified record
createdOn recCreatedOn Datetime True PropertyIds.RecordDateCreated Selects Records based on a value for Date Created.
creator recCreator Location True PropertyIds.RecordCreator Selects Records based on a value for Creator.
CS_atRegistration recCS_atRegistration SecurityLevel False Selects Records that have classified security with the nominated security level at registration
CS_changeType recCS_changeType SecurityUpdateTypes True Selects Records that have classified security that was upgraded by the specified locations
CS_classifiedBy recCS_classifiedBy String False Selects Records that have classified security that has been classified by the specified person
CS_classifiedByAgency recCS_classifiedByAgency String False Selects Records that have classified security that has been classified by the specified agency
CS_declassifiedBy recCS_declassifiedBy Location False Selects Records that have classified security that was declassified by the specified locations
CS_declassifiedOn recCS_declassifiedOn Datetime False Selects Records that have classified security that was declassified in a specified date range
CS_declassify recCS_declassify Datetime False PropertyIds.RecordCSdeclassifyOn Selects Records based on a value for CS: Declassify On.
CS_declassifyEvent recCS_declassifyEvent String False Selects Records that have classified security that needs to be declassified according the specified event text
CS_derivedFrom recCS_derivedFrom String False Selects Records that have classified security derived from a particular source
CS_downgrade recCS_downgrade Datetime False PropertyIds.RecordCSdowngradeOn Selects Records based on a value for CS: Downgrade On.
CS_downgradedBy recCS_downgradedBy Location False Selects Records that have classified security that was downgraded by the specified locations
CS_downgradedOn recCS_downgradedOn Datetime False Selects Records that have classified security that was downgraded in a specified date range
CS_downgradeEvent recCS_downgradeEvent String False Selects Records that have classified security that needs to be downgraded according the specified event text
CS_downgradeInstructions recCS_downgradeInstructions String False Selects Records that have classified security with the specified downgrade instructions
CS_guide recCS_guide SecurityGuide False Selects Records that have security set up from the specified security guide entry entry
CS_initial recCS_initial String False PropertyIds.RecordCSinitialSecurity Selects Records based on a value for CS: Security At Registration.
CS_reason recCS_reason String False Selects Records that have classified security with a particular reason
CS_reviewedBy recCS_reviewedBy Location False Selects Records that have classified security that has been reviewed by the specified location
CS_reviewedOn recCS_reviewedOn Datetime False Selects Records that have classified security that has been reviewed on the specified date
CS_updatedBy recCS_updatedBy Location False Selects Records that have classified security that has been updated by the specified location
CS_updatedOn recCS_updatedOn Datetime False Selects Records that have classified security that has been updated on the specified date
CS_updatedReason recCS_updatedReason String False Selects Records that have classified security that was updated for the specified reason
CS_upgradedBy recCS_upgradedBy Location False Selects Records that have classified security that was upgraded by the specified locations
CS_upgradedOn recCS_upgradedOn Datetime False Selects Records that have classified security that was upgraded in a specified date range
currentVersion recCurrentVersion Record False Selects Records that are the most recently finalized version of the specified record
default unkDefault String False Selects all Records based on a generic interpretation of a string value (usually by matching the name property).
derivedFrom recDerivedFrom Record False Selects Records that have the derived from relationship with the specified record
destroyedOn recDestroyedOn Datetime True Selects Records that had disposition changed to destroyed on the specified date.
destroyOn recDestroyOn Datetime True Selects Records that are due to have a disposition change to destroyed on the specified date.
destroyOnNoHold recDestroyOnNoHold Datetime True Selects Records that are due to have a disposition change to destroyed on the specified date (and are not on hold).
disposition recDisposition RecordDisp True PropertyIds.RecordDisposition Selects Records based on a value for Disposition.
docMissing recDocMissing Boolean False PropertyIds.RecordDocumentMissing Selects Records based on a value for Document Is Missing.
documentSize recDocumentSize BigNumber True PropertyIds.RecordDocumentSize Selects Records based on a value for Size.
dueOn recDueOn Datetime True PropertyIds.RecordDateDue Selects Records based on a value for Date Due.
dueOrInTray recDueOrInTray Boolean False Selects Records that you or your position are the current assignee of or have a current action or document review task to be completed.
dueTray recDueTray Boolean False Selects Records that you or your position have a current action or document review task to be completed.
editedOn recEditedOn Datetime True PropertyIds.RecordDateModified Selects Records based on a value for Date Modified.
editingDone recEditingDone Boolean False PropertyIds.RecordExternalEditingComplete Selects Records based on a value for External Editing Complete.
editingDoneBy recEditingDoneBy Location False PropertyIds.RecordExternalEditingCompletedBy Selects Records based on a value for External Editing Completed By.
editor recEditor Location True Selects Records that have an editor of the specified location
editorId recEditorId String False PropertyIds.RecordExternalEditorId Selects Records based on a value for External Editor Id.
editState recEditState DocumentEditStatus False PropertyIds.RecordEditState Selects Records based on a value for Edit Status.
elastic recElastic String False Selects Records that match the specified Elasticsearch query string.
electronic recElectronic Boolean False PropertyIds.RecordIsElectronic Selects Records based on a value for Is Electronic.
enclosed recEnclosed Boolean False Selects Records that have a container and are enclosed in that container
excase recExcase ExternalWorkflow False Selects Records that are cases for the specified external workflows
excludes unkExcludes Location False Selects Records having selected locations in the exclusions list.
exinit recExinit ExternalWorkflow False Selects Records that are initiating records for the specified external workflows
extension recExtension String True PropertyIds.RecordExtension Selects Records based on a value for Extension.
external recExternal String True PropertyIds.RecordExternalReference Selects Records based on a value for External ID.
favorite unkFavorite Boolean False Selects favourite Records.
fbarcode unkFbarcode String False Selects Records by foreign barcode.
final recFinal Boolean False Selects Records that have been finalized.
finalisedOn recFinalisedOn Datetime True PropertyIds.RecordDateFinalized Selects Records based on a value for Date Declared As Final.
firstPart recFirstPart Record False Selects Records that have the first part of relationship with the specified record
firstVersionOf recFirstVersionOf Record False Selects Records that have the first version of relationship with the specified record
folderOrigin recFolderOrigin Origin True PropertyIds.RecordFolderOrigin Selects Records based on a value for Folder Origin.
generatedTitle recGeneratedTitle String True PropertyIds.RecordGeneratedTitle Selects Records based on a value for Title (Structured Part).
gps recGps Geography True PropertyIds.RecordGpsLocation Selects Records based on a value for GPS Location.
hasAttachment recHasAttachment Record False Selects Records that have the has attachment relationship with the specified record
hasContentBlock recHasContentBlock Record False Selects Records that have the contains document content block relationship with the specified record
hasContents recHasContents Boolean True PropertyIds.RecordIsContainer Selects Records based on a value for Has Contents.
hasDerivation recHasDerivation Record False Selects Records that have the derivations relationship with the specified record
hasFirstPart recHasFirstPart Record False Selects Records that have the has first part of relationship with the specified record
hasFirstVersion recHasFirstVersion Record False Selects Records that have the has first version of relationship with the specified record
hasHold recHasHold Boolean True PropertyIds.RecordHasHoldAttached Selects Records based on a value for Has Hold Attached.
hasRedaction recHasRedaction Record False Selects Records that have the was redacted to relationship with the specified record
hasReply recHasReply Record False Selects Records that have the has reply relationship with the specified record
hasSite recHasSite Record False Selects Records that have the contains sharepoint list or site relationship with the specified record
hold recHold Hold False Selects Records that are associated with the specified hold
holdingBay recHoldingBay Space False PropertyIds.RecordHomeSpace Selects Records based on a value for In Holding Bay.
home recHome Location True PropertyIds.RecordHomeLocation Selects Records based on a value for Home.
homex recHomex RecordLocation False Selects Records with an associated home having selected property values
imported recImported Datetime True PropertyIds.RecordDateImported Selects Records based on a value for Date Imported.
inactiveOn recInactiveOn Datetime True PropertyIds.RecordDateInactive Selects Records based on a value for Date Inactive.
index recIndex RecordKeyword False Selects Records with an associated Attached thesaurus term having selected property values.
inSeries recInSeries Record False Selects Records that are in the specified series record
inSite recInSite Record False Selects Records that have the within sharepoint site relationship with the specified record
inSpList recInSpList Record False Selects Records that represent SharePoint list items within the nominated SharePoint list.
inTray recInTray Boolean False Selects Records that you or your position are the current assignee of.
isSeriesOf recIsSeriesOf Record False Selects Records that are a series record of the specified record
jurisdiction recJurisdiction Jurisdiction False Selects Records that have the specified jurisdiction.
keyword recKeyword Keyword False Selects Records that have the specified thesaurus term attached.
label unkLabel UserLabel False Selects Records with a specified User Label.
latestPart recLatestPart Record False Selects Records that are the latest part of the specified record
latestVersion recLatestVersion Record False Selects Records that are the latest version of the specified record
lockedOn recLockedOn Datetime True PropertyIds.RecordCheckedOutOn Selects Records based on a value for Checked Out On.
makeInactiveOn recMakeInactiveOn Datetime True Selects Records that are due to have a disposition change to inactive on the specified date.
matterOf recMatterOf Record False Selects Records that are the Matter record of the specified records
matterRecord recMatterRecord Record True PropertyIds.RecordMatterRecord Selects Records based on a value for Matter record.
media recMedia MediaTypes True PropertyIds.RecordMediaType Selects Records based on a value for Media Type.
meeting recMeeting Meeting False Selects Records associated with the specified meeting.
messageId recMessageId String True PropertyIds.RecordMessageId Selects Records based on a value for Email Message ID.
mime recMime String True PropertyIds.RecordMimeType Selects Records based on a value for Internet Media Type.
missing recMissing Boolean False Selects Records that have an unknown assignee
myContainers recMyContainers Boolean False Selects Records that are in your recently used containers tray.
myContent recMyContent Boolean False Selects Records that are in your favorite content blocks tray.
myDocuments recMyDocuments Boolean False Selects Records that are in your recently accessed documents tray.
myTemplates recMyTemplates Boolean False Selects Records that are in your favorite document templates tray.
none unkNone Boolean False Selects no Records.
notes recNotes String False Selects Records based on the word index for Record Notes.
number recNumber String True PropertyIds.RecordNumber Selects Records based on a value for Record Number.
numberx recNumberx String True PropertyIds.RecordLongNumber Selects Records based on a value for Expanded Number.
offline recOffline OfflineRecord False Selects Records that are associated with the specified offline records
origin recOrigin Origin False PropertyIds.RecordOriginatedFrom Selects Records based on a value for Originated From.
originalOf recOriginalOf Record False Selects Records that have the original of relationship with the specified record
originRun recOriginRun OriginHistory True PropertyIds.RecordOriginatedFromRun Selects Records based on a value for Originated From Run.
otherContact recOtherContact Location False Selects Records that have an other type of contact of the specified location
owner recOwner Location True PropertyIds.RecordOwnerLocation Selects Records based on a value for Owner.
partRule recPartRule AutoPartRule True PropertyIds.RecordNewPartCreationRule Selects Records based on a value for Automated Part Rule.
party recParty Location False Selects Records that have the specified location attached as an interested party.
partyEx recPartyEx RecordClientMatterParty False Selects Records with an associated Client/Matter Party having selected property values.
priority recPriority String True PropertyIds.RecordPriority Selects Records based on a value for Priority.
publishedOn recPublishedOn Datetime True PropertyIds.RecordDatePublished Selects Records based on a value for Date Published.
receivedOn recReceivedOn Datetime True PropertyIds.RecordDateReceived Selects Records based on a value for Date Received.
reclocationx recReclocationx RecordLocation False Selects Records with an associated record location having selected property values
redactionOf recRedactionOf Record False Selects Records that have the redaction of relationship with the specified record
registeredOn recRegisteredOn Datetime True PropertyIds.RecordDateRegistered Selects Records based on a value for Date Registered.
related recRelated Record False Selects Records that have the related to relationship with the specified record
relatedEx recRelatedEx Record False Selects Records that have the specified relationship with the specified records
relatedReverseEx recRelatedReverseEx Record False Selects Records that have the specified reverse record relationship with the specified records
replyTo recReplyTo Record False Selects Records that have the reply to relationship with the specified record
representative recRepresentative Location True Selects Records that have a representative of the specified location
request recRequest Request False Selects Records that are associated with the specified request
requestedOn recRequestedOn Datetime False Selects Records that have been requested on the specified date/time
requestor recRequestor Location False Selects Records that have been requested by the specified location
returnOn recReturnOn Datetime True PropertyIds.RecordReturnDueDateTime Selects Records due for return by a specified date.
review recReview Datetime True PropertyIds.RecordReviewDate Selects Records based on a value for Retention Review Date.
reviewer recReviewer Location True Selects Records that have a reviewer of the specified location
reviewState recReviewState DocumentReviewStates True PropertyIds.RecordReviewState Selects Records based on a value for Document Review State.
reviewStatus recReviewStatus PendingEventReviewFilter False Selects Records that have a review date set indicating the desired review status
revision recRevision Number True PropertyIds.RecordRevisionNumber Selects Records based on a value for Revision Number.
revisionEx recRevisionEx RecordRevision False Selects Records with an associated Revision having selected property values.
role recRole Location False Selects Records that have the specified location attached as playing a role for the client.
roleEx recRoleEx RecordClientMatterRole False Selects Records with an associated Client/Matter Role having selected property values.
sameClient recSameClient Record False Selects Records that share the same client as the specified record
sameContact recSameContact Record False Selects Records that share the same contact as the specified record
sapcustomer recSapcustomer String True PropertyIds.RecordSapCustomerName Selects Records based on a value for SAP Customer.
sapcustomerid recSapcustomerid String True PropertyIds.RecordSapCustomerNumber Selects Records based on a value for SAP Customer ID.
sapdoc recSapdoc String True PropertyIds.RecordSapDocumentId Selects Records based on a value for SAP Document.
saprepos recSaprepos String True PropertyIds.RecordSapReposId Selects Records based on a value for SAP Repository.
saved unkSaved SavedSearch False Selects Records that satisfy a specified saved search.
schedule recSchedule Schedule True PropertyIds.RecordRetentionSchedule Selects Records based on a value for Retention schedule.
scheduleStatus recScheduleStatus DisposalScheduleStatus True PropertyIds.RecordScheduledDisposalStatus Selects Records based on a value for Scheduled Disposal Status.
sdmenv recSdmenv String False PropertyIds.RecordSdmEnvironmentID Selects Records based on a value for SDM Environment ID.
sdmfile recSdmfile String False PropertyIds.RecordSdmFileName Selects Records based on a value for SDM File Name.
sdmfolder recSdmfolder String False PropertyIds.RecordSdmFolderName Selects Records based on a value for SDM Folder Name.
sdmrun recSdmrun String False PropertyIds.RecordSdmRunID Selects Records based on a value for SDM Run ID.
securityCaveat recSecurityCaveat SecurityCaveat False Selects Records that have the specified security caveat
securityLevel recSecurityLevel SecurityLevel False Selects Records that have the specified security level
space recSpace Space True PropertyIds.RecordHomeSpace Selects Records based on a value for In space.
spaceOrBay recSpaceOrBay Space False PropertyIds.RecordHomeSpace Selects Records based on a value for In space Or Holding Bay.
spFarmGUID recSpFarmGUID String True PropertyIds.RecordSpFarmGUID Selects Records based on a value for SharePoint Server Farm ID.
spGUID recSpGUID String True PropertyIds.RecordSpGUID Selects Records based on a value for SharePoint GUID.
spLirId recSpLirId BigNumber False Selects Records that represent a SharePoint List Item with the nominated ID.
spLirURL recSpLirURL String False Selects Records that represent a SharePoint List Item with the nominated URL.
spList recSpList SharePointItem False Selects Records that represent the SharePoint List for the specified SharePoint items
spRecord recSpRecord SharePointItem False Selects Records that manage the specified SharePoint items
spSiteCollectionGUID recSpSiteCollectionGUID String True PropertyIds.RecordSpSiteCollectionGUID Selects Records that represent a SharePoint Site within the nominated site collection.
spType recSpType SpElementType False PropertyIds.RecordSpType Selects Records that are the specified type of SharePoint object.
spURL recSpURL String True PropertyIds.RecordSpURL Selects Records based on a value for SharePoint URL.
store recStore ElectronicStore True PropertyIds.RecordEStore Selects Records based on a value for Document Store.
supersededBy recSupersededBy Record False Selects Records that have the is superseded by relationship with the specified record
supersededOn recSupersededOn Datetime True PropertyIds.RecordDateSuperseded Selects Records based on a value for Date Superseded.
supersedes recSupersedes Record False Selects Records that have the supersedes relationship with the specified record
task recTask ScheduledTask False Selects Records that have the specified vital review task(s) attached
title recTitle String False Selects Records based on the word index for Record Titles.
todo recTodo TodoItem False Selects Records referenced by the specificed to do item.
transferOn recTransferOn Datetime True Selects Records that are due to have a disposition change to archived (custody transferred) on the specified date.
transferredOn recTransferredOn Datetime True Selects Records that had disposition changed to archived (custody transferred) on the specified date.
type recType RecordType True PropertyIds.RecordRecordType Selects Records based on a value for Record Type.
typedTitle recTypedTitle String True PropertyIds.RecordTypedTitle Selects Records based on a value for Title (Free Text Part).
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Records based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Records based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Records based on a unique identifier value.
views recViews BigNumber True PropertyIds.RecordViewCounter Selects Records based on a value for View Counter.
workflow recWorkflow Workflow False Selects Records that are associated with the specified workflow
workTray recWorkTray Boolean False Selects Records that are in your working records tray.

RecordAction

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Record Actions within this dataset.
assignedBy racAssignedBy Location True PropertyIds.RecordActionAssignedBy Selects Record Actions based on a value for Assigned By.
assignee racAssignee Location True PropertyIds.RecordActionResponsibility Selects Record Actions based on a value for Assignee.
audit unkAudit History False Selects Record Actions that are involved with the specified Active Audit Event.
barcode unkBarcode String False Selects Record Actions by barcode.
batch unkBatch Number False Selects Record Actions by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
canStart racCanStart Boolean False Selects Record Actions that can now be worked on
completedBy racCompletedBy Location True PropertyIds.RecordActionCompletedBy Selects Record Actions based on a value for Completed By.
default unkDefault String False Selects all Record Actions based on a generic interpretation of a string value (usually by matching the name property).
done racDone Boolean False PropertyIds.RecordActionDone Selects Record Actions based on a value for Done.
doneOn racDoneOn Datetime True PropertyIds.RecordActionEndDate Selects Record Actions based on a value for Completed On.
doneOnTime racDoneOnTime Boolean False PropertyIds.RecordActionCompletedOnTime Selects Record Actions based on a value for Completed On Time.
dueOn racDueOn Datetime True PropertyIds.RecordActionDueDate Selects Record Actions based on a value for Due Date.
fbarcode unkFbarcode String False Selects Record Actions by foreign barcode.
name racName String True PropertyIds.RecordActionActionName Selects Record Actions based on a value for Action.
none unkNone Boolean False Selects no Record Actions.
overdue racOverdue Boolean False PropertyIds.RecordActionOverdue Selects Record Actions based on a value for Overdue.
parent racParent RecordAction True PropertyIds.RecordActionParentRecordAction Selects Record Actions based on a value for Parent record action.
procedure racProcedure Boolean True PropertyIds.RecordActionProcedure Selects Record Actions based on a value for Procedure.
record racRecord Record True PropertyIds.RecordActionRecord Selects Record Actions based on a value for Record.
saved unkSaved SavedSearch False Selects Record Actions that satisfy a specified saved search.
startOn racStartOn Datetime True PropertyIds.RecordActionStartDate Selects Record Actions based on a value for Start Date.
suspendUntil racSuspendUntil Datetime True PropertyIds.RecordActionSuspendUntil Selects Record Actions based on a value for Suspend Until.
top unkTop Boolean True Selects all top-level Record Actions (those that have no parent or are not enclosed within any other Record Action).
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Record Actions based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Record Actions based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Record Actions based on a unique identifier value.
viewable racViewable Boolean False PropertyIds.RecordActionViewable Selects Record Actions based on a value for Record is viewable.

RecordType

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
ackRequests rtyAckRequests Boolean True PropertyIds.RecordTypeAcknowledgeRequests Selects Record Types based on a value for Requests Need Acknowledgement before Completion.
acl unkAcl Location False Selects Record Types having selected locations in a particular access control.
action rtyAction ActionDef True PropertyIds.RecordTypeAction Selects Record Types based on a value for Assigned action.
active unkActive Boolean True Selects Record Types that are active.
activeFrom unkActiveFrom Date True Selects Record Types that have a Date Active From value matching the specified date range.
activeTo unkActiveTo Date True Selects Record Types that have a Date Active To value matching the specified date range.
all unkAll Boolean False Selects all Record Types within this dataset.
archive rtyArchive Boolean True PropertyIds.RecordTypeUseRetention Selects Record Types based on a value for Allow Retention Schedule.
assignee rtyAssignee Location True PropertyIds.RecordTypeAssignee Selects Record Types based on a value for Assignee.
audit unkAudit History False Selects Record Types that are involved with the specified Active Audit Event.
basic rtyBasic Boolean False PropertyIds.RecordTypeBasicMetadataOnly Selects Record Types based on a value for Basic Metadata Only.
batch unkBatch Number False Selects Record Types by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
behaviour rtyBehaviour RecordBehaviour True PropertyIds.RecordTypeUsualBehaviour Selects Record Types based on a value for Behaves Like.
canBeContainedBy rtyCanBeContainedBy RecordType False Selects Record Types that can contained by the specified record types
canContain rtyCanContain RecordType False Selects Record Types that can contain the specified record types
census rtyCensus Boolean True PropertyIds.RecordTypeUseCensus Selects Record Types based on a value for Track during Census.
classification rtyClassification Classification True PropertyIds.RecordTypeClassification Selects Record Types based on a value for Starting classification.
copyacl unkCopyacl Location False Selects Record Types having selected locations in a particular access control in the copied access control set.
default unkDefault String False Selects all Record Types based on a generic interpretation of a string value (usually by matching the name property).
excludes unkExcludes Location False Selects Record Types having selected locations in the exclusions list.
externalId rtyExternalId String True PropertyIds.RecordTypeExternalId Selects Record Types based on a value for External ID.
favorite unkFavorite Boolean False Selects favourite Record Types.
field rtyField FieldDefinition False Selects Record Types that use the specified additional field
hasElecDocSupport rtyHasElecDocSupport Boolean False Selects Record Types that support Electronic Documents.
hasMatter rtyHasMatter Boolean True PropertyIds.RecordTypeBelongsToAMatter Selects Record Types based on a value for Records Must Belong To A Matter.
home rtyHome Location True PropertyIds.RecordTypeHomeLocation Selects Record Types based on a value for Home.
label unkLabel UserLabel False Selects Record Types with a specified User Label.
level rtyLevel Number True PropertyIds.RecordTypeLevel Selects Record Types based on a value for Container Level.
lir rtyLir Boolean True PropertyIds.RecordTypeCanHaveSharePointItems Selects Record Types based on a value for Records can be SharePoint List Item records.
media rtyMedia MediaTypes True PropertyIds.RecordTypeMediaType Selects Record Types based on a value for Default media type.
name rtyName String True PropertyIds.RecordTypeName Selects Record Types based on a value for Name.
none unkNone Boolean False Selects no Record Types.
owner rtyOwner Location True PropertyIds.RecordTypeOwnerLocation Selects Record Types based on a value for Owner.
saprepository rtySaprepository String True PropertyIds.RecordTypeSapRepositoryId Selects Record Types based on a value for SAP Repository ID.
saved unkSaved SavedSearch False Selects Record Types that satisfy a specified saved search.
schedule rtySchedule Schedule True PropertyIds.RecordTypeRetentionSchedule Selects Record Types based on a value for Retention schedule.
sortOrder rtySortOrder String True PropertyIds.RecordTypeSortOrder Selects Record Types based on a value for Sort Order.
space rtySpace Boolean False PropertyIds.RecordTypeHomeCanBeSpace Selects Record Types that can be stored in the space management system
store rtyStore ElectronicStore True PropertyIds.RecordTypeEStore Selects Record Types based on a value for Store Name.
template rtyTemplate WorkflowTemplate True PropertyIds.RecordTypeStartupTemplate Selects Record Types based on a value for Initiate workflow based on a template.
titling rtyTitling TitlingMethods True PropertyIds.RecordTypeTitlingMethod Selects Record Types based on a value for Titling Method.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Record Types based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Record Types based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Record Types based on a unique identifier value.
usable unkUsable Boolean False Selects Record Types that satisfy the can use or view criteria.

Report

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Reports having selected locations in a particular access control.
all unkAll Boolean False Selects all Reports within this dataset.
batch unkBatch Number False Selects Reports by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Reports based on a generic interpretation of a string value (usually by matching the name property).
favorite unkFavorite Boolean False Selects favourite Reports.
label unkLabel UserLabel False Selects Reports with a specified User Label.
name rptName String True PropertyIds.ReportReportName Selects Reports based on a value for Name.
none unkNone Boolean False Selects no Reports.
saved unkSaved SavedSearch False Selects Reports that satisfy a specified saved search.
type rptType BaseObjectTypes True PropertyIds.ReportForObject Selects Reports based on a value for For Object Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Reports based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Reports based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Reports based on a unique identifier value.
usable unkUsable Boolean False Selects Reports that satisfy the can use or view criteria.

ReportBitmap

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Report Graphics within this dataset.
batch unkBatch Number False Selects Report Graphics by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Report Graphics based on a generic interpretation of a string value (usually by matching the name property).
name rbmName String True PropertyIds.ReportBitmapName Selects Report Graphics based on a value for Name.
none unkNone Boolean False Selects no Report Graphics.
saved unkSaved SavedSearch False Selects Report Graphics that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Report Graphics based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Report Graphics based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Report Graphics based on a unique identifier value.

Request

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Requests within this dataset.
assignee rcqAssignee Location False PropertyIds.RequestCurrentLocation Selects Requests based on a value for Record assignee.
athome rcqAthome Boolean False Selects Requests that are for records that are currently at their home location.
audit unkAudit History False Selects Requests that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Requests by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
by rcqBy Location True PropertyIds.RequestRequestor Selects Requests based on a value for Requested By.
completedOn rcqCompletedOn Datetime True PropertyIds.RequestDateCompleted Selects Requests based on a value for Date Completed.
createdOn rcqCreatedOn Datetime True PropertyIds.RequestDateCreated Selects Requests based on a value for Date Created.
deliverTo rcqDeliverTo Location True PropertyIds.RequestTransitLocation Selects Requests based on a value for Delivery/Pickup Location.
done rcqDone Boolean False PropertyIds.RequestIsComplete Selects Requests based on a value for Is Complete.
dueOn rcqDueOn Datetime True PropertyIds.RequestDueDate Selects Requests based on a value for Date Required.
isCurrent rcqIsCurrent Boolean False Selects Requests that are the currently outstanding retrieval request for the records they are associated with.
none unkNone Boolean False Selects no Requests.
priority rcqPriority RequestPriority True PropertyIds.RequestPriority Selects Requests based on a value for Priority.
record rcqRecord Record True PropertyIds.RequestRecord Selects Requests based on a value for Record.
saved unkSaved SavedSearch False Selects Requests that satisfy a specified saved search.
serviceLocation rcqServiceLocation Location True PropertyIds.RequestServiceLocation Selects Requests based on a value for Service Location.
space rcqSpace Space True PropertyIds.RequestServiceSpace Selects Requests that are for records with home location within the nominated spaces.
status rcqStatus RequestStatus True PropertyIds.RequestStatus Selects Requests based on a value for Status.
statusDate rcqStatusDate Datetime True PropertyIds.RequestStatusChangedDate Selects Requests based on a value for Date Status Changed.
type rcqType RequestTypes True PropertyIds.RequestRequestType Selects Requests based on a value for Request Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Requests based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Requests based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Requests based on a unique identifier value.
viewable rcqViewable Boolean False PropertyIds.RequestViewable Selects Requests based on a value for Record is viewable.

SavedSearch

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Saved Searches having selected locations in a particular access control.
all unkAll Boolean False Selects all Saved Searches within this dataset.
audit unkAudit History False Selects Saved Searches that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Saved Searches by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
canEdit srhCanEdit Boolean False PropertyIds.SavedSearchCanEdit Selects Saved Searches based on a value for Can edit query.
canExecute srhCanExecute Boolean False PropertyIds.SavedSearchCanExecute Selects Saved Searches based on a value for Can execute query.
default unkDefault String False Selects all Saved Searches based on a generic interpretation of a string value (usually by matching the name property).
favorite unkFavorite Boolean False Selects favourite Saved Searches.
fullName srhFullName String False PropertyIds.SavedSearchFullName Selects Saved Searches based on a value for Full Name.
group srhGroup Boolean True PropertyIds.SavedSearchIsGrouping Selects Saved Searches based on a value for Is Search Group.
label unkLabel UserLabel False Selects Saved Searches with a specified User Label.
lastUsedOn srhLastUsedOn Datetime True PropertyIds.SavedSearchLastUsedOn Selects Saved Searches based on a value for Last Used On.
name srhName String True PropertyIds.SavedSearchName Selects Saved Searches based on a value for Name.
none unkNone Boolean False Selects no Saved Searches.
old srhOld Boolean True PropertyIds.SavedSearchIsOldFormat Selects Saved Searches based on a value for Old Format.
owner srhOwner Location True PropertyIds.SavedSearchOwner Selects Saved Searches based on a value for Owner.
parent srhParent SavedSearch True PropertyIds.SavedSearchParent Selects Saved Searches based on a value for Within Search Group.
public srhPublic Boolean False PropertyIds.SavedSearchIsPublic Selects Saved Searches based on a value for Is Public.
saved unkSaved SavedSearch False Selects Saved Searches that satisfy a specified saved search.
top unkTop Boolean True Selects all top-level Saved Searches (those that have no parent or are not enclosed within any other Saved Search).
type srhType BaseObjectTypes True PropertyIds.SavedSearchObjectType Selects Saved Searches based on a value for Object Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Saved Searches based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Saved Searches based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Saved Searches based on a unique identifier value.
usable unkUsable Boolean False Selects Saved Searches that satisfy the can use or view criteria.

Schedule

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Schedules having selected locations in a particular access control.
active unkActive Boolean True Selects Schedules that are active.
activeFrom unkActiveFrom Date True Selects Schedules that have a Date Active From value matching the specified date range.
activeTo unkActiveTo Date True Selects Schedules that have a Date Active To value matching the specified date range.
agency schAgency Boolean True PropertyIds.ScheduleIsAgencySpecific Selects Schedules based on a value for Agency Specific.
all unkAll Boolean False Selects all Schedules within this dataset.
allParentsOf schAllParentsOf Schedule False Selects Schedules that are the parent(s) of the selected item(s)
audit unkAudit History False Selects Schedules that are involved with the specified Active Audit Event.
barcode unkBarcode String False Selects Schedules by barcode.
batch unkBatch Number False Selects Schedules by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Schedules based on a generic interpretation of a string value (usually by matching the name property).
favorite unkFavorite Boolean False Selects favourite Schedules.
fbarcode unkFbarcode String False Selects Schedules by foreign barcode.
label unkLabel UserLabel False Selects Schedules with a specified User Label.
name schName String True PropertyIds.ScheduleName Selects Schedules based on a value for Schedule Number.
none unkNone Boolean False Selects no Schedules.
parent schParent Schedule True PropertyIds.ScheduleParentSchedule Selects Schedules based on a value for Parent Schedule.
parentOf schParentOf Schedule False Selects Schedules that are the parent(s) of the selected item(s)
pcsid schPcsid String True PropertyIds.SchedulePolicyCentreGUID Selects Schedules based on a value for Policy Center Solution GUID.
saved unkSaved SavedSearch False Selects Schedules that satisfy a specified saved search.
source schSource String True PropertyIds.ScheduleSource Selects Schedules based on a value for Source.
supersededBy schSupersededBy Schedule True PropertyIds.ScheduleSupersededBy Selects Schedules based on a value for Superseded By.
supersededOn schSupersededOn Datetime True PropertyIds.ScheduleDateSuperseded Selects Schedules based on a value for Date Superseded.
top unkTop Boolean True Selects all top-level Schedules (those that have no parent or are not enclosed within any other Schedule).
trigger schTrigger ScheduleTrigger False Selects Schedules with an associated Trigger having selected property values.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Schedules based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Schedules based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Schedules based on a unique identifier value.
usable unkUsable Boolean False Selects Schedules that satisfy the can use or view criteria.
word schWord String False Selects Schedules based on the word index for Schedules.

ScheduledTask

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Scheduled Tasks within this dataset.
assignee tskAssignee Location True PropertyIds.ScheduledTaskAssignee Selects Scheduled Tasks based on a value for Assigned To.
batch unkBatch Number False Selects Scheduled Tasks by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
classification tskClassification Classification False Selects Scheduled Tasks that are attached to the specified classifications
date tskDate Datetime True PropertyIds.ScheduledTaskStartDate Selects Scheduled Tasks based on a value for Commencement date.
done tskDone Boolean False PropertyIds.ScheduledTaskIsComplete Selects Scheduled Tasks that have been completed.
folders tskFolders Boolean False Selects Scheduled Tasks for records that are folders.
none unkNone Boolean False Selects no Scheduled Tasks.
objectType tskObjectType BaseObjectTypes True PropertyIds.ScheduledTaskAttachedToObjectType Selects Scheduled Tasks based on a value for Attached To.
overdue tskOverdue Boolean False Selects Scheduled Tasks that are overdue.
record tskRecord Record False Selects Scheduled Tasks that are attached to the specified records
saved unkSaved SavedSearch False Selects Scheduled Tasks that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Scheduled Tasks based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Scheduled Tasks based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Scheduled Tasks based on a unique identifier value.

SearchForm

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Search Forms having selected locations in a particular access control.
all unkAll Boolean False Selects all Search Forms within this dataset.
batch unkBatch Number False Selects Search Forms by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Search Forms based on a generic interpretation of a string value (usually by matching the name property).
favorite unkFavorite Boolean False Selects favourite Search Forms.
label unkLabel UserLabel False Selects Search Forms with a specified User Label.
name sfmName String True PropertyIds.SearchFormName Selects Search Forms based on a value for Name.
none unkNone Boolean False Selects no Search Forms.
saved unkSaved SavedSearch False Selects Search Forms that satisfy a specified saved search.
searchfilter sfmSearchfilter SavedSearch True PropertyIds.SearchFormSavedSearchFilter Selects Search Forms based on a value for Saved Search Filter.
type sfmType BaseObjectTypes True PropertyIds.SearchFormObjectType Selects Search Forms based on a value for Object Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Search Forms based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Search Forms based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Search Forms based on a unique identifier value.
usable unkUsable Boolean False Selects Search Forms that satisfy the can use or view criteria.

SecurityCaveat

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
abbreviation scvAbbreviation String True PropertyIds.SecurityCaveatAbbreviation Selects Security Caveats based on a value for Abbreviation.
active unkActive Boolean True Selects Security Caveats that are active.
activeFrom unkActiveFrom Date True Selects Security Caveats that have a Date Active From value matching the specified date range.
activeTo unkActiveTo Date True Selects Security Caveats that have a Date Active To value matching the specified date range.
all unkAll Boolean False Selects all Security Caveats within this dataset.
audit unkAudit History False Selects Security Caveats that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Security Caveats by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
caveatNumber scvCaveatNumber Number True PropertyIds.SecurityCaveatCaveatNumber Selects Security Caveats based on a value for ID.
default unkDefault String False Selects all Security Caveats based on a generic interpretation of a string value (usually by matching the name property).
held scvHeld Boolean False Selects Security Caveats that are also held by the currently logged-in user
name scvName String True PropertyIds.SecurityCaveatName Selects Security Caveats based on a value for Description.
none unkNone Boolean False Selects no Security Caveats.
saved unkSaved SavedSearch False Selects Security Caveats that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Security Caveats based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Security Caveats based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Security Caveats based on a unique identifier value.

SecurityLevel

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
abbreviation slvAbbreviation String True PropertyIds.SecurityLevelAbbreviation Selects Security Levels based on a value for Abbreviation.
active unkActive Boolean True Selects Security Levels that are active.
activeFrom unkActiveFrom Date True Selects Security Levels that have a Date Active From value matching the specified date range.
activeTo unkActiveTo Date True Selects Security Levels that have a Date Active To value matching the specified date range.
all unkAll Boolean False Selects all Security Levels within this dataset.
audit unkAudit History False Selects Security Levels that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Security Levels by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Security Levels based on a generic interpretation of a string value (usually by matching the name property).
held slvHeld Boolean False Selects Security Levels that are at or below the currently logged in users security level
levelNumber slvLevelNumber Number True PropertyIds.SecurityLevelLevelNumber Selects Security Levels based on a value for Ranking.
name slvName String True PropertyIds.SecurityLevelName Selects Security Levels based on a value for Description.
none unkNone Boolean False Selects no Security Levels.
saved unkSaved SavedSearch False Selects Security Levels that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Security Levels based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Security Levels based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Security Levels based on a unique identifier value.

SharePointItem

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all SharePoint Documents within this dataset.
batch unkBatch Number False Selects SharePoint Documents by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all SharePoint Documents based on a generic interpretation of a string value (usually by matching the name property).
list spiList Record True PropertyIds.SharePointItemListRecord Selects SharePoint Documents based on a value for List record.
listId spiListId BigNumber True PropertyIds.SharePointItemListItemId Selects SharePoint Documents based on a value for List Item ID.
none unkNone Boolean False Selects no SharePoint Documents.
record spiRecord Record True PropertyIds.SharePointItemListItemRecord Selects SharePoint Documents based on a value for List Item record.
saved unkSaved SavedSearch False Selects SharePoint Documents that satisfy a specified saved search.
synchPending spiSynchPending Boolean True Selects SharePoint Documents that are currently needing synchronization
uniqueId spiUniqueId String True PropertyIds.SharePointItemUniqueId Selects SharePoint Documents based on a value for SharePoint Identifier.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects SharePoint Documents based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects SharePoint Documents based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects SharePoint Documents based on a unique identifier value.
viewable spiViewable Boolean False PropertyIds.SharePointItemViewable Selects SharePoint Documents based on a value for Record is viewable.

Space

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Spaces having selected locations in a particular access control.
all unkAll Boolean False Selects all Spaces within this dataset.
allParentsOf spmAllParentsOf Space False Selects Spaces that are the parent(s) of the selected item(s)
audit unkAudit History False Selects Spaces that are involved with the specified Active Audit Event.
barcode unkBarcode String False Selects Spaces by barcode.
batch unkBatch Number False Selects Spaces by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
bay spmBay Boolean True PropertyIds.SpaceHasHoldingBay Selects Spaces based on a value for Has Holding Bay.
default unkDefault String False Selects all Spaces based on a generic interpretation of a string value (usually by matching the name property).
favorite unkFavorite Boolean False Selects favourite Spaces.
fbarcode unkFbarcode String False Selects Spaces by foreign barcode.
key spmKey String True PropertyIds.SpaceNickName Selects Spaces based on a value for Search Key.
label unkLabel UserLabel False Selects Spaces with a specified User Label.
lowest spmLowest Boolean True PropertyIds.SpaceIsLowestLevel Selects Spaces based on a value for Is Lowest Level.
none unkNone Boolean False Selects no Spaces.
number spmNumber String True PropertyIds.SpaceNumber Selects Spaces based on a value for Space Number.
parentOf spmParentOf Space False Selects Spaces that are the parent(s) of the selected item(s)
saved unkSaved SavedSearch False Selects Spaces that satisfy a specified saved search.
top unkTop Boolean True Selects all top-level Spaces (those that have no parent or are not enclosed within any other Space).
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Spaces based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Spaces based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Spaces based on a unique identifier value.
usable unkUsable Boolean False Selects Spaces that satisfy the can use or view criteria.
within spmWithin Space True PropertyIds.SpaceWithin Selects Spaces based on a value for Within space.

StopWord

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Noise Words within this dataset.
batch unkBatch Number False Selects Noise Words by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
default unkDefault String False Selects all Noise Words based on a generic interpretation of a string value (usually by matching the name property).
name swdName String True PropertyIds.StopWordName Selects Noise Words based on a value for Noise Word.
none unkNone Boolean False Selects no Noise Words.
saved unkSaved SavedSearch False Selects Noise Words that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Noise Words based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Noise Words based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Noise Words based on a unique identifier value.

TodoItem

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects To Do Items having selected locations in a particular access control.
all unkAll Boolean False Selects all To Do Items within this dataset.
assignee tdoAssignee Location True PropertyIds.TodoItemAssignee Selects To Do Items based on a value for Assignee.
audit unkAudit History False Selects To Do Items that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects To Do Items by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
creator tdoCreator Location True PropertyIds.TodoItemCreatedBy Selects To Do Items based on a value for Created By.
default unkDefault String False Selects all To Do Items based on a generic interpretation of a string value (usually by matching the name property).
done tdoDone Boolean False PropertyIds.TodoItemIsComplete Selects To Do Items based on a value for Completed.
doneOn tdoDoneOn Datetime True PropertyIds.TodoItemDateDone Selects To Do Items based on a value for Date Completed.
dueOn tdoDueOn Datetime True PropertyIds.TodoItemDateDue Selects To Do Items based on a value for Date Due.
name tdoName String True PropertyIds.TodoItemTodo Selects To Do Items based on a value for To Be Done.
none unkNone Boolean False Selects no To Do Items.
overdue tdoOverdue Boolean False PropertyIds.TodoItemIsOverdue Selects To Do Items based on a value for Overdue.
priority tdoPriority Priority True PropertyIds.TodoItemItemPriority Selects To Do Items based on a value for Priority.
reference tdoReference TodoItemItemReference False Selects To Do Items with an associated To Do Item Reference having selected property values.
refObject tdoRefObject False Selects To Do Items that references the specified object(s)
saved unkSaved SavedSearch False Selects To Do Items that satisfy a specified saved search.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects To Do Items based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects To Do Items based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects To Do Items based on a unique identifier value.
usable unkUsable Boolean False Selects To Do Items that satisfy the can use or view criteria.

UserLabel

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects User Labels having selected locations in a particular access control.
all unkAll Boolean False Selects all User Labels within this dataset.
allParentsOf lblAllParentsOf UserLabel False Selects User Labels that are the parent(s) of the selected item(s)
attachable lblAttachable Boolean False PropertyIds.UserLabelAttachable Selects User Labels based on a value for Can Attach.
batch unkBatch Number False Selects User Labels by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
dateCreated lblDateCreated Datetime True PropertyIds.UserLabelDateCreated Selects User Labels based on a value for Date Created.
default unkDefault String False Selects all User Labels based on a generic interpretation of a string value (usually by matching the name property).
detachable lblDetachable Boolean False PropertyIds.UserLabelDetachable Selects User Labels based on a value for Can Detach.
fullName lblFullName String False PropertyIds.UserLabelFullName Selects User Labels based on a value for Full user label Name.
hasChildren lblHasChildren Boolean True PropertyIds.UserLabelHasChildLabels Selects User Labels based on a value for Has Child User Labels.
name lblName String True PropertyIds.UserLabelName Selects User Labels based on a value for User Label Name.
none unkNone Boolean False Selects no User Labels.
owner lblOwner Location True PropertyIds.UserLabelOwner Selects User Labels based on a value for Owner.
parent lblParent UserLabel True PropertyIds.UserLabelParentLabel Selects User Labels based on a value for Parent user label.
parentOf lblParentOf UserLabel False Selects User Labels that are the parent(s) of the selected item(s)
saved unkSaved SavedSearch False Selects User Labels that satisfy a specified saved search.
stuckOn lblStuckOn False Selects User Labels that have been attached the specified Content Manager object
top unkTop Boolean True Selects all top-level User Labels (those that have no parent or are not enclosed within any other User Label).
type lblType UserLabelType True PropertyIds.UserLabelLabelType Selects User Labels based on a value for User Label Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects User Labels based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects User Labels based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects User Labels based on a unique identifier value.
usable unkUsable Boolean False Selects User Labels that satisfy the can use or view criteria.

Word

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Indexed Words within this dataset.
batch unkBatch Number False Selects Indexed Words by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
count wrdCount BigNumber True PropertyIds.WordCount Selects Indexed Words based on a value for Usage Count.
default unkDefault String False Selects all Indexed Words based on a generic interpretation of a string value (usually by matching the name property).
field wrdField FieldDefinition False PropertyIds.WordField Selects Indexed Words based on a value for Field.
name wrdName String True PropertyIds.WordName Selects Indexed Words based on a value for Indexed Word.
none unkNone Boolean False Selects no Indexed Words.
saved unkSaved SavedSearch False Selects Indexed Words that satisfy a specified saved search.
type wrdType WordTypes True PropertyIds.WordWordType Selects Indexed Words based on a value for Type.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Indexed Words based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Indexed Words based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Indexed Words based on a unique identifier value.

Workflow

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Workflows having selected locations in a particular access control.
activity wkfActivity Activity False Selects Workflows that contain the specified activity
all unkAll Boolean False Selects all Workflows within this dataset.
audit unkAudit History False Selects Workflows that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Workflows by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
container wkfContainer Record True PropertyIds.WorkflowDefaultContainer Selects Workflows based on a value for Default container.
creator wkfCreator Location True PropertyIds.WorkflowCreator Selects Workflows based on a value for Workflow Creator.
customer wkfCustomer Location True PropertyIds.WorkflowCustomer Selects Workflows based on a value for Client.
default unkDefault String False Selects all Workflows based on a generic interpretation of a string value (usually by matching the name property).
destroyOn wkfDestroyOn Datetime True PropertyIds.WorkflowDestroyDueDate Selects Workflows based on a value for Date Due For Destruction.
done wkfDone Boolean False PropertyIds.WorkflowIsComplete Selects Workflows based on a value for Complete.
doneOn wkfDoneOn Datetime True PropertyIds.WorkflowDateCompleted Selects Workflows based on a value for Date Completed.
dueOn wkfDueOn Datetime True PropertyIds.WorkflowDateDue Selects Workflows based on a value for Date Due.
favorite unkFavorite Boolean False Selects favourite Workflows.
initiator wkfInitiator Record True PropertyIds.WorkflowInitiator Selects Workflows based on a value for Initiating record.
job wkfJob String False PropertyIds.WorkflowJobNumber Selects Workflows based on a value for Job Number.
jobx wkfJobx String True PropertyIds.WorkflowJobNumberExpanded Selects Workflows based on a value for Job Number (Expanded).
label unkLabel UserLabel False Selects Workflows with a specified User Label.
lockedBy wkfLockedBy Location True PropertyIds.WorkflowLockedBy Selects Workflows based on a value for Locked By.
name wkfName String True PropertyIds.WorkflowName Selects Workflows based on a value for Name.
none unkNone Boolean False Selects no Workflows.
overdue wkfOverdue Boolean False PropertyIds.WorkflowIsOverdue Selects Workflows based on a value for Overdue.
priority wkfPriority Priority True PropertyIds.WorkflowWorkflowPriority Selects Workflows based on a value for Priority.
record wkfRecord Record False Selects Workflows associated with the specified record
registeredOn wkfRegisteredOn Datetime True PropertyIds.WorkflowDateRegistered Selects Workflows based on a value for Date Registered.
saved unkSaved SavedSearch False Selects Workflows that satisfy a specified saved search.
scheduledStartOn wkfScheduledStartOn Datetime True PropertyIds.WorkflowScheduledStartDate Selects Workflows based on a value for Scheduled Start Date.
startedOn wkfStartedOn Datetime True PropertyIds.WorkflowDateStarted Selects Workflows based on a value for Date Started.
supervisor wkfSupervisor Location True PropertyIds.WorkflowSupervisor Selects Workflows based on a value for Workflow Supervisor.
template wkfTemplate WorkflowTemplate True PropertyIds.WorkflowTemplate Selects Workflows based on a value for Based On template.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Workflows based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Workflows based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Workflows based on a unique identifier value.
usable unkUsable Boolean False Selects Workflows that satisfy the can use or view criteria.
word wkfWord String False Selects Workflows based on the word index for Workflows.

WorkflowTemplate

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
acl unkAcl Location False Selects Templates having selected locations in a particular access control.
active unkActive Boolean True Selects Templates that are active.
activeFrom unkActiveFrom Date True Selects Templates that have a Date Active From value matching the specified date range.
activeTo unkActiveTo Date True Selects Templates that have a Date Active To value matching the specified date range.
all unkAll Boolean False Selects all Templates within this dataset.
audit unkAudit History False Selects Templates that are involved with the specified Active Audit Event.
batch unkBatch Number False Selects Templates by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
copyacl unkCopyacl Location False Selects Templates having selected locations in a particular access control in the copied access control set.
dateRegistered wktDateRegistered Datetime True PropertyIds.WorkflowTemplateDateRegistered Selects Templates based on a value for Date Registered.
default unkDefault String False Selects all Templates based on a generic interpretation of a string value (usually by matching the name property).
favorite unkFavorite Boolean False Selects favourite Templates.
label unkLabel UserLabel False Selects Templates with a specified User Label.
name wktName String True PropertyIds.WorkflowTemplateName Selects Templates based on a value for Name.
none unkNone Boolean False Selects no Templates.
priority wktPriority Priority True PropertyIds.WorkflowTemplateDefaultPriority Selects Templates based on a value for Priority.
saved unkSaved SavedSearch False Selects Templates that satisfy a specified saved search.
supervisor wktSupervisor Location True PropertyIds.WorkflowTemplateSupervisor Selects Templates based on a value for Workflow Supervisor.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Templates based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Templates based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Templates based on a unique identifier value.
usable unkUsable Boolean False Selects Templates that satisfy the can use or view criteria.

ZipCode

Name Internal Name Parameter Type Is Sortable Based On Property Tooltip
all unkAll Boolean False Selects all Postal Codes within this dataset.
batch unkBatch Number False Selects Postal Codes by calculating a batch number based on the unique row identifier of the object. Requires a batch number and a number of batches parameters.
city zipCity String True PropertyIds.ZipCodeCity Selects Postal Codes based on a value for City.
country zipCountry String True PropertyIds.ZipCodeCountry Selects Postal Codes based on a value for Country.
default unkDefault String False Selects all Postal Codes based on a generic interpretation of a string value (usually by matching the name property).
none unkNone Boolean False Selects no Postal Codes.
postcode zipPostcode String True PropertyIds.ZipCodePostcode Selects Postal Codes based on a value for Postal Code.
region zipRegion String True PropertyIds.ZipCodeRegion Selects Postal Codes based on a value for Region.
saved unkSaved SavedSearch False Selects Postal Codes that satisfy a specified saved search.
state zipState String True PropertyIds.ZipCodeState Selects Postal Codes based on a value for State.
updated unkUpdated Datetime True PropertyIds.DateLastUpdated Selects Postal Codes based on when they were last updated.
updatedBy unkUpdatedBy Location True PropertyIds.LastUpdatedBy Selects Postal Codes based on who they were last updated by.
uri unkUri BigNumber True PropertyIds.Uri Selects Postal Codes based on a unique identifier value.