You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/index.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
An implementation-agnostic implementation of JSON reference resolution.
2
2
3
-
In other words, a way for e.g. JSON Schema tooling to resolve the ``$ref`` keyword across all drafts without needing to implement support themselves.
3
+
In other words, a way for e.g. JSON Schema tooling to resolve the :kw:`$ref` keywords across all drafts without needing to implement support themselves.
4
4
5
5
This library is meant for use both by implementers of JSON referencing-related tooling -- like JSON Schema implementations supporting the :kw:`$ref` keyword -- as well as by end-users using said implementations who wish to then configure sets of resources (like schemas) for use at runtime.
Copy file name to clipboardExpand all lines: docs/intro.rst
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,8 +61,8 @@ There are a few different methods you can use to populate registries with resour
61
61
Which one you want to use depends on things like:
62
62
63
63
* do you already have an instance of `referencing.Resource`, or are you creating one out of some loaded JSON?
64
-
If not, does the JSON have some sort of identifier that can be used to determine which specification it belongs to (e.g. the JSON Schema ``$schema`` keyword)?
65
-
* does your resource have an internal ID (e.g. the JSON Schema ``$id`` keyword)?
64
+
If not, does the JSON have some sort of identifier that can be used to determine which specification it belongs to (e.g. the JSON Schema :kw:`$schema` keyword)?
65
+
* does your resource have an internal ID (e.g. the JSON Schema :kw:`$id` keyword)?
66
66
* do you have additional (external) URIs you want to refer to the same resource as well?
67
67
* do you have one resource to add or many?
68
68
@@ -114,7 +114,7 @@ Let's check by using `Registry.contents`, which takes a URI and should show us t
0 commit comments