Search Tokens for Scan Schedules

You can use the search tokens available in the Schedules tab under Scans tab and refine your search results. Click each token to learn more about it.

Generic

andand

Use a boolean query to express your query using AND logic.

Example

Find scan schedules with DISCOVERY scan type and Active status

scan.schedule.type: "DISCOVERY" AND scan.schedule.status: "True"

notnot

Use a boolean query to express your query using NOT logic.

Example

Find scan schedules that don't have type DISCOVERY

NOT scan.schedule.type: "DISCOVERY"

oror

Use a boolean query to express your query using OR logic.

Example

Find scan schedules with DISCOVERY scan type OR Active status

scan.schedule.type: "DISCOVERY" OR scan.schedule.status: "True"

Scan Schedules Tokens

Use these search tokens to find scan schedules.

asset.idasset.id

Use an integer value to find the scan schedule associated to asset with given ID.

Example

Find the scan schedule associated with the given asset ID

asset.id:123456

scan.schedule.idscan.schedule.id

Use an integer value to find the scan schedule with the specified ID.

Example

Find the scan schedule with the given ID

scan.schedule.id:9725

scan.schedule.namescan.schedule.name

Use values within quotes or backticks to find scan schedule with the specified scan schedule name.

Examples

Find scan schedules that contain a part of the given name

scan.schedule.name: "schedule scan name"

Find the scan schedule with the given name

scan.schedule.name:`schedule scan name`

scan.schedule.typescan.schedule.type

Select the type to find scan schedules with the selected scan schedules type: AUTHENTICATION_TEST, DISCOVERY, COMPLIANCE, VULNERABILITY.

Example

Find scan schedules with the specified scan type

scan.schedule.type:"DISCOVERY"

scan.schedule.statusscan.schedule.status

Select schedule status to find scan schedules that are active or inactive.

Examples

Find scan schedules that are active

scan.schedule.status:"ACTIVE"

Find scan schedules that are inactive

scan.schedule.status:"INACTIVE"

scan.schedule.scanStatusscan.schedule.scanStatus

Select the status to find scan schedules with the selected last scan status: SUBMITTED, RUNNING, FINISHED, NO_HOST_ALIVE, NO_WEB_SERVICE, SERVICE_ERROR, TIME_LIMIT_REACHED, TIME_LIMIT_EXCEEDED, CANCELED, ERROR.

Example

Find scan schedules with the scan status as SUBMITTED

scan.schedule.scanStatus:"SUBMITTED"

scan.schedule.quickFiltersscan.schedule.quickFilters

Select the quick filter to find scan schedules with specified value - MY_SCHEDULES, NOT_LAUNCHED, INVALID.

Example

Find scan schedules with the given quick filter

scan.schedule.quickFilters:"MY_SCHEDULES"

scan.schedule.lastScanDatescan.schedule.lastScanDate

Use the date range or specific date values to find the scan schedules with the last scan date.

Example

Find scan schedules that were updated in scans on a specified date.

scan.schedule.lastScanDate"2025-04-08"

Find scan schedules that were updated after a specified date.

scan.schedule.lastScanDate"2025-04-07"

Find scan schedules that were last used in scans between January 2025 to April 2025.

scan.schedule.lastScanDate:[2025-01-01..2025-04-30]

scan.schedule.nextDatescan.schedule.nextDate

Use the date range or specific date values to find the scan schedules with the next scan date.

Example

Find scan schedules with specific next scan date.

scan.schedule.nextDate:"2025-04-10"

Find scan schedules with next scan date after a specified date.

scan.schedule.nextDate> "2025-04-09"

Find scan schedules with next scan date between March 2025 to April 2025.

scan.schedule.nextDate: [2025-03-01 .. 2025-04-31]

scan.schedule.createdscan.schedule.created

Use the date range or specific date values to find the scan schedules created in the speficied date range.

Examples

Find scan schedules created on a specified date.

scan.schedule.created:"2025-04-10"

Find scan schedules which were created in past six months.

scan.schedule.created> [now-6M .. now]

Find scan schedules which were created after a specified date.

scan.schedule.created> 2020-03-20

Find scan schdeules created between March 2020 to July 2021

scan.schedule.created: [2020-03-01 .. 2021-7-31]

scan.schedule.updatedscan.schedule.updated

Use the date range or specific date values to find the scan schedules updated in the speficied date range.

Examples

Find scan schedules updated on a specified date.

scan.schedule.updated:"2025-04-10"

Find scan schedules which were updated in past six months.

scan.schedule.updated> [now-6M .. now]

Find scan schedules which were updated after a specified date.

scan.schedule.updated> 2020-03-20

Find scan schdeules updated between March 2020 to July 2021

scan.schedule.updated: [2020-03-01 .. 2021-7-31]

scan.schedule.included.tags.namescan.schedule.included.tags.name

Use values within quotes or backticks to find scan schedule with the specified tag included in the scan target.

Examples

Find scan schedules with the scan target includes the tags WebApp

scan.schedule.included.tags.name: "WebApp"

scan.schedule.excluded.tags.namescan.schedule.excluded.tags.name

Use values within quotes or backticks to find scan schedule with the specified tag excluded in the scan target.

Examples

Find scan schedules with the scan target excludes the tags WebApp

scan.schedule.excluded.tags.name: "WebApp"

asset.nameasset.name

Use values within quotes or backticks to find scan schedule associated with the specified asset.

Examples

Find scan schedules associated with the asset that contain a part of the given name.

asset.name: "TestApp"

Find the scan schedule associated with the given asset name.

asset.name:`TestApp`

scan.schedule.multiscan.schedule.multi

Use the values true | false to find scan schedules associated with the multiple or single applications.

Examples

Find scan schedules associated with multiple applications.

scan.schedule.multi: true

Find the scan schedule associated with a single application.

scan.schedule.multi:false

scan.schedule.invalidscan.schedule.invalid

Use the values true | false to find scan schedules that are invalid, that is, the scan schedules for which the target or option profile has been deleted. .

Examples

Find scan schedules that are invalid, that is, the scan schedules for which the target or option profile has been deleted.

scan.schedule.invalid: true

Find the valid scan schedules.

scan.schedule.invalid:false

scan.schedule.retestscan.schedule.retest

Use the values true | false to find scan schedules created for retest web application scans.

Examples

Find scan schedules that are created for the retest web application scans.

scan.schedule.retest: true

Find scan schedules that are created for discovery, vulnerability, compliance or authentication test scans.

scan.schedule.retest:false