Skip to content

Commit a6cc6c7

Browse files
committed
make FILTER optional
1 parent 16355b9 commit a6cc6c7

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

documentation/IDTA-01002-3/modules/ROOT/pages/json-grammar.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
| "," <ws> "\"USEOBJECTS\":" <ws> <string_array> )
130130
( "," <ws> "\"FORMULA\":" <ws> <logical_expression>
131131
| "," <ws> "\"USEFORMULA\":" <ws> <StringLiteral> )
132-
"," <ws> "\"FILTER\":" <ws> <security_query_filter>
132+
( "," <ws> "\"FILTER\":" <ws> <security_query_filter> )?
133133
( "," <ws> "\"FILTERLIST\":" <ws> <security_query_filter_array> )?
134134
<ws> "}"
135135

documentation/IDTA-01002-3/modules/ROOT/pages/schema.adoc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -694,9 +694,6 @@
694694
}
695695
}
696696
},
697-
"required": [
698-
"FILTER"
699-
],
700697
"allOf": [
701698
{
702699
"oneOf": [

documentation/IDTA-01002-3/modules/ROOT/partials/bnf/grammar.bnf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
( <SingleObject> <ws> )*
102102
( <UseObjectGroup> <ws> )*
103103
( ( "FORMULA:" <ws> <Condition> ) | ("USEFORMULA" <ws> <StringLiteral>) <ws> ) <ws>
104-
( <Filter> <ws> )
104+
( <Filter> <ws> )?
105105
( <FilterList> <ws> )?
106106

107107
<Filter> ::=

0 commit comments

Comments
 (0)