Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ Accept wildcard characters: False
> Applicable: SharePoint Online

Specifies the script block of the server-side filter to apply. The type must be a valid filter name and value must be in the form `{ PropertyName <operator> "filterValue"}`. Valid operators are as follows: -eq, -ne, -like, -notlike.
Currently, you can filter by these properties: Owner, Template (can be used to filter if it is the only property present in the filter), LockState, Url.
Currently, you can filter by these properties: Owner, Template (can be used to filter if it is the only property present in the filter), LockState, Url, IsAuthoritative (It only supports comparision operators -eq and -ne. For eg: `{IsAuthoritative -eq true}`).
Using the -or operator to include an additional filter is not supported.

Note: The operator values are case-sensitive.
Expand Down Expand Up @@ -311,6 +311,24 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -IsAuthoritative

> Applicable: SharePoint Online

Displays sites which are have true value for IsAuthoritative site property when value is set to $true. The 'IsAuthoritaive' site property signals to Microsoft Search, Copilot(BizChat), and other AI agents that the site's content is official, trusted, and verified. This designation enhances content discoverability and increases user confidence in AI-generated responses.

```yaml
Type: Boolean
Parameter Sets: ParamSet1
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Limit

> Applicable: SharePoint Online
Expand Down