Skip to content

Commit 237fcf4

Browse files
authored
Revert change from wrong branch
1 parent d1194c3 commit 237fcf4

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

documentation/IDTA-01004/modules/ROOT/partials/bnf/access-rules.bnf

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -167,19 +167,19 @@
167167

168168
<DateTimeLiteral> ::= <datetime> <ws>
169169
<TimeLiteral> ::= <time> <ws>
170-
<datetime> ::= <date> ( "T" | "" ) <time> ( <timezone> )?
171-
<date> ::= <year> "-" <month> "-" <day>
172-
<year> ::= <digit> <digit> <digit> <digit>
173-
<month> ::= <digit> <digit>
174-
<day> ::= <digit> <digit>
175-
<time> ::= <hour> ":" <minute> ( ":" <second> )? ( "." <fraction> )?
176-
<timezone> ::= ( "Z" | ( "+" | "-" ) <hour> ":" <minute> )
177-
<hour> ::= <digit> <digit>
178-
<minute> ::= <digit> <digit>
179-
<second> ::= <digit> <digit>
180-
<fraction> ::= <digit>+
181-
182-
<digit> ::= [0-9]
170+
<datetime> ::= <date> <ws> ( "T" | " " ) <ws> <time> <ws> ( <timezone> <ws> )?
171+
<date> ::= <year> <ws> "-" <ws> <month> <ws> "-" <ws> <day> <ws>
172+
<year> ::= <digit> <ws> <digit> <ws> <digit> <ws> <digit> <ws>
173+
<month> ::= <digit> <ws> <digit> <ws>
174+
<day> ::= <digit> <ws> <digit> <ws>
175+
<time> ::= <hour> <ws> ":" <ws> <minute> <ws> ( ":" <ws> <second> <ws> )? ( "." <ws> <fraction> <ws> )?
176+
<timezone> ::= ( "Z" | ( "+" | "-" ) <ws> <hour> <ws> ":" <ws> <minute> <ws> )
177+
<hour> ::= <digit> <ws> <digit> <ws>
178+
<minute> ::= <digit> <ws> <digit> <ws>
179+
<second> ::= <digit> <ws> <digit> <ws>
180+
<fraction> ::= <digit>+ <ws>
181+
182+
<digit> ::= [0-9] <ws>
183183
<StringLiteral> ::= "\"" ( [A-Z] | [a-z] | [0-9] | "/" | "*" | "[" | "]" | "(" | ")" | " " | "_" | "@" | "#" | "\\" | "+" | "-" | "." | "," | ":" | "$" | "^" )+ "\""
184184
<ClaimLiteral> ::= <StringLiteral>
185185
<ReferenceLiteral> ::= <StringLiteral>
@@ -205,7 +205,7 @@
205205
<ReferenceClause> ::= ( "type" | "keys" ( "[" ( [0-9]* ) "]" ) ( ".type" | ".value" ) )
206206
<SemanticIdClause> ::= ( "semanticId" | "semanticId." <ReferenceClause> )
207207
<SpecificAssetIdsClause> ::= ( "specificAssetIds" ( "[" ( [0-9]* ) "]" ) ( ".name" | ".value" | ".externalSubjectId" | ".externalSubjectId." <ReferenceClause> ) )
208-
<idShortPath> ::= ( <idShort> ("[" ( [0-9]* ) "]" )* ( "." <idShortPath> )* )
208+
<idShortPath> ::= ( <idShort> ("[" ( [0-9]* ) "]" ) ( "." <idShortPath> )* )
209209
<idShort> ::= ( ( [a-z] | [A-Z] ) ( [a-z] | [A-Z] | [0-9] | "_" )* )
210210

211-
<ws> ::= ( " " | "\t" | "\r" | "\n" )*
211+
<ws> ::= ( " " | "\t" | "\r" | "\n" )+

0 commit comments

Comments
 (0)