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

Auth48 #515

Draft
wants to merge 27 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0c5fbdb
Auth48: Note c&p error; date
cabo Feb 12, 2024
0ac20fe
Add 2024-02-07 RPC version of XML and extracted files; initial check
cabo Feb 12, 2024
b9e27e9
First round of abnf spacing changes
cabo Feb 12, 2024
fe62a78
Put "; skip surrogate code points" on its own line
cabo Feb 12, 2024
e49cfa1
Fix some weird blank-space inconsistencies in ABNF
cabo Feb 12, 2024
756b304
Use and reference "I-Regexp" term from RFC 9485
cabo Feb 12, 2024
b6060cb
Search and "at least one" substring
cabo Feb 12, 2024
3ea201e
Add DIGIT to name-first at the end
cabo Feb 12, 2024
ac6f4dc
(G27) Better Section Name "Function Extensions Subregistry"
cabo Feb 13, 2024
1894d53
(G26) Use § 2.4.3 in both places for "well-typed" cross-reference
cabo Feb 13, 2024
6c104f2
(G25) Remove incorrect cross-reference in 2.3.1.1
cabo Feb 13, 2024
d4ffb90
(G21): Appendix B: Use JSONPath terminology for JSONPath
cabo Feb 13, 2024
cbfdb2a
(G18): Delete unnecessary text
cabo Feb 13, 2024
91099d9
(G10): Make sentence easier to understand
cabo Feb 13, 2024
ec1d5d2
(G6): There is only one root identifier example
cabo Feb 13, 2024
a2c0f6e
(G5): emphasize loneness by saying "containing a single node"
cabo Feb 13, 2024
fdd18c2
(G2): Remove remnant from when the definition was for "argument"
cabo Feb 13, 2024
30b1579
(G1): Remove unfortunate double use of the term "structure"
cabo Feb 13, 2024
52d12f6
(C3): Avoid <referencegroup XML that is still at risk.
cabo Feb 13, 2024
5c10c5a
RPC changes communicated at 2024-02-13 23:22Z
cabo Feb 14, 2024
c8dfc85
(C4) Complete fix for placement of "at most".
cabo Feb 14, 2024
8076529
(C5): Remove overzealous duplicate redundant superfluous citation
cabo Feb 14, 2024
440d44a
(C6) simplify editorial memento for ES4
cabo Feb 14, 2024
33b6c01
(C1) 3 more word-joiners to avoid confusing line breaks
cabo Feb 14, 2024
5b6ac37
(C7) use past tense for IANA registration that has happened
cabo Feb 14, 2024
904cefb
(C8) Avoid superfluous "strict" in table 11, twice
cabo Feb 14, 2024
9ad9249
(C9) We now distinguish empty nodelists from Nothing
cabo Feb 14, 2024
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
4 changes: 2 additions & 2 deletions draft-ietf-jsonpath-base.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ abbrev: JSONPath
area: ART
wg: JSONPath WG
kw: JSON
date: 2023
date: 2024

author:
-
Expand Down Expand Up @@ -449,7 +449,7 @@ $.store.book[[email protected] < 10].title
| `..name` | shorthand for `..['name']` |
| `..*` | shorthand for `..[*]` |
| `'name'` | [name selector](#name-selector): selects a named child of an object |
| `*` | [wildcard selector](#name-selector): selects all children of a node |
| `*` | [wildcard selector](#wildcard-selector): selects all children of a node |
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cabo Good catch!

| `3` | [index selector](#index-selector): selects an indexed child of an array (from 0) |
| `0:100:5` | [array slice selector](#slice): start:end:step for arrays |
| `?<logical-expr>` | [filter selector](#filter-selector): selects particular children using a logical expression |
Expand Down