File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ How do I configure a base URI for $ref resolution using local files?
104
104
105
105
`jsonschema ` supports loading schemas from the filesystem.
106
106
107
- The most common mistake when configuring a :class: ` ~ jsonschema.RefResolver `
107
+ The most common mistake when configuring a ` jsonschema.validators .RefResolver `
108
108
to retrieve schemas from the local filesystem is to give it a base URI
109
109
which points to a directory, but forget to add a trailing slash.
110
110
@@ -212,8 +212,8 @@ be valid under the schema.)
212
212
213
213
See the above-linked document for more info on how this works,
214
214
but basically, it just extends the :kw: `properties ` keyword on a
215
- `jsonschema.Draft202012Validator ` to then go ahead and update all the
216
- defaults.
215
+ `jsonschema.validators. Draft202012Validator ` to then go ahead and update
216
+ all the defaults.
217
217
218
218
.. note ::
219
219
Original file line number Diff line number Diff line change 4
4
The main functionality is provided by the validator classes for each of the
5
5
supported JSON Schema versions.
6
6
7
- Most commonly, `validate` is the quickest way to simply validate a given
8
- instance under a schema, and will create a validator for you.
7
+ Most commonly, `jsonschema.validators.validate` is the quickest way to simply
8
+ validate a given instance under a schema, and will create a validator
9
+ for you.
9
10
"""
10
11
import warnings
11
12
You can’t perform that action at this time.
0 commit comments