Skip to content

Commit

Permalink
📚 docs: update README.md #4
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Jan 11, 2025
1 parent 17ae944 commit 2976b8d
Showing 1 changed file with 8 additions and 16 deletions.
24 changes: 8 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,20 +105,12 @@ In addition to the `.` symbol, several other characters hold special significanc
In most situations, you'll simply need to access values using the object name or array index.

```shell
id
# "http://subs/base-sample-schema.json"
properties.alias.description
# "An unique identifier in a submission."
properties.alias.minLength
# 1
required
# ["alias", "taxonId", "releaseDate"]
required.0
# "alias"
required.1
# "taxonId"
oneOf.0.required
# ["alias", "team"]
oneOf.0.required.1
# "team"
> id # "http://subs/base-sample-schema.json"
> properties.alias.description # "An unique identifier in a submission."
> properties.alias.minLength # 1
> required # ["alias", "taxonId", "releaseDate"]
> required.0 # "alias"
> required.1 # "taxonId"
> oneOf.0.required # ["alias", "team"]
> oneOf.0.required.1 # "team"
```

0 comments on commit 2976b8d

Please sign in to comment.