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

MultiValueOrSearchExpression #283

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 5 additions & 2 deletions vocabularies/Org.OData.Capabilities.V1.json
Original file line number Diff line number Diff line change
Expand Up @@ -631,10 +631,13 @@
"Value": "SearchExpression",
"@Core.Description": "String property can be used as first operand in `startswith`, `endswith`, and `contains` clauses"
},
{
"Value": "MultiValueOrSearchExpression",
"@Core.Description": "String property can be used like in `MultiValue` and like in `SearchExpression`, combined with `or`"
},
{
"Value": "MultiRangeOrSearchExpression",
"@Core.Description": "Property can be compared to a union of zero or more closed, half-open, or open intervals plus zero or more simple string patterns",
"@Core.LongDescription": "The filter expression for this property consists of one or more interval expressions or string comparison functions combined by `or`. See MultiRange for a definition of an interval expression. See SearchExpression for the allowed string comparison functions."
"@Core.Description": "String property can be used like in `MultiRange` and like in `SearchExpression`, combined with `or`"
}
]
},
Expand Down
Loading