Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alternative search syntax #241

Merged
merged 10 commits into from
May 29, 2024
7 changes: 6 additions & 1 deletion vocabularies/Org.OData.Capabilities.V1.json
Original file line number Diff line number Diff line change
Expand Up @@ -743,12 +743,17 @@
"Searchable": {
"$Type": "Edm.Boolean",
"$DefaultValue": true,
"@Core.Description": "$search is supported"
"@Core.Description": "$search is supported with the standard syntax [OData-URL, section 5.1.8.1](https://docs.oasis-open.org/odata/odata/v4.02/odata-v4.02-part2-url-conventions.html#SearchExpressions)"
},
"UnsupportedExpressions": {
"$Type": "Capabilities.SearchExpressions",
"$DefaultValue": "none",
"@Core.Description": "Expressions not supported in $search"
},
"AlternativeSearchSyntax": {
"$Nullable": true,
"@Core.IsURL": true,
"@Core.Description": "URL of the alternative $search syntax supported by the service"
}
},
"SearchExpressions": {
Expand Down
Loading