Search Software Package Tokens
software.package.idsoftware.package.id
Use a numeric value to search for software packages with a specific software package ID.
Example:
Show results for software package ID 12345.
software.package.id:`12345`
software.package.namesoftware.package.name
Use a string value to filter results by software package name.
Example:
Show results with package name Chrome Install.
software.package.name:'chrome install'
software.package.actionsoftware.package.action
Use a string value to filter results by package action. Supported values: Install, Uninstall.
Example:
Show results for installation packages.
software.package.action:Install
software.package.methodsoftware.package.method
Use a string value to filter results by installation method. Supported values:
- Windows: MSI, EXE
- Linux: RPM, DEB, Package Manager
Example:
Show results for MSI packages.
software.package.method:MSI
software.package.statussoftware.package.status
Use a string value to filter results by package status.
Supported values:
- PENDING_REVIEW
- PENDING_UPDATE
- PENDING_TEST
- APPROVED
- DEPRECATED
- REJECTED
Example:
Show results for approved packages.
software.package.status:APPROVED
software.package.createdBy.usernamesoftware.package.createdBy.username
Use a string value to filter results by the username of the package creator.
Example:
Show results for packages created by John Doe.
software.package.createdBy.username:John Doe
software.package.approvedBy.usernamesoftware.package.approvedBy.username
Use a string value in quotes to filter results by the username of the approver.
Example:
Show results for packages approved by John Doe.
software.package.approvedBy.username:John Doe
software.package.descriptionsoftware.package.description
Use a string value to filter results by package description.
Example:
Show results with description containing browser update.
software.package.description:"browser update"
software.package.platformsoftware.package.platform
Use a string value to filter results by the platform on which the software package is deployed.
Supported Values: Windows, Linux
Example:
Show results for packages deployed on Windows.
software.package.platform:"Windows"
Use a Boolean query to express your query using AND logic.
Example
Show software package created by John with status approved
software.package.createdBy.username:John and software.package.status:APPROVED
Use a Boolean query to express your query using NOT logic.
Example
Show software packages not created by John
not software.package.createdBy.username:John
Use a Boolean query to express your query using OR logic.
Example
Show results for one of the following
software.package.createdBy.username:John or software.package.status:APPROVED