@@ -126,7 +126,7 @@ fn make_options(
126
126
draft : Option < u8 > ,
127
127
formats : Option < & Bound < ' _ , PyDict > > ,
128
128
) -> PyResult < jsonschema:: CompilationOptions > {
129
- let mut options = jsonschema:: JSONSchema :: options ( ) ;
129
+ let mut options = jsonschema:: options ( ) ;
130
130
if let Some ( raw_draft_version) = draft {
131
131
options. with_draft ( get_draft ( raw_draft_version) ?) ;
132
132
}
@@ -166,14 +166,14 @@ fn make_options(
166
166
167
167
fn iter_on_error (
168
168
py : Python < ' _ > ,
169
- compiled : & jsonschema:: JSONSchema ,
169
+ validator : & jsonschema:: JSONSchema ,
170
170
instance : & Bound < ' _ , PyAny > ,
171
171
) -> PyResult < ValidationErrorIter > {
172
172
let instance = ser:: to_value ( instance) ?;
173
173
let mut pyerrors = vec ! [ ] ;
174
174
175
175
panic:: catch_unwind ( AssertUnwindSafe ( || {
176
- if let Err ( errors) = compiled . validate ( & instance) {
176
+ if let Err ( errors) = validator . validate ( & instance) {
177
177
for error in errors {
178
178
pyerrors. push ( into_py_err ( py, error) ?) ;
179
179
}
@@ -188,11 +188,11 @@ fn iter_on_error(
188
188
189
189
fn raise_on_error (
190
190
py : Python < ' _ > ,
191
- compiled : & jsonschema:: JSONSchema ,
191
+ validator : & jsonschema:: JSONSchema ,
192
192
instance : & Bound < ' _ , PyAny > ,
193
193
) -> PyResult < ( ) > {
194
194
let instance = ser:: to_value ( instance) ?;
195
- let result = panic:: catch_unwind ( AssertUnwindSafe ( || compiled . validate ( & instance) ) )
195
+ let result = panic:: catch_unwind ( AssertUnwindSafe ( || validator . validate ( & instance) ) )
196
196
. map_err ( handle_format_checked_panic) ?;
197
197
let error = result
198
198
. err ( )
@@ -277,9 +277,9 @@ fn is_valid(
277
277
let options = make_options ( draft, formats) ?;
278
278
let schema = ser:: to_value ( schema) ?;
279
279
match options. compile ( & schema) {
280
- Ok ( compiled ) => {
280
+ Ok ( validator ) => {
281
281
let instance = ser:: to_value ( instance) ?;
282
- panic:: catch_unwind ( AssertUnwindSafe ( || Ok ( compiled . is_valid ( & instance) ) ) )
282
+ panic:: catch_unwind ( AssertUnwindSafe ( || Ok ( validator . is_valid ( & instance) ) ) )
283
283
. map_err ( handle_format_checked_panic) ?
284
284
}
285
285
Err ( error) => Err ( into_py_err ( py, error) ?) ,
@@ -311,7 +311,7 @@ fn validate(
311
311
let options = make_options ( draft, formats) ?;
312
312
let schema = ser:: to_value ( schema) ?;
313
313
match options. compile ( & schema) {
314
- Ok ( compiled ) => raise_on_error ( py, & compiled , instance) ,
314
+ Ok ( validator ) => raise_on_error ( py, & validator , instance) ,
315
315
Err ( error) => Err ( into_py_err ( py, error) ?) ,
316
316
}
317
317
}
@@ -340,17 +340,17 @@ fn iter_errors(
340
340
let options = make_options ( draft, formats) ?;
341
341
let schema = ser:: to_value ( schema) ?;
342
342
match options. compile ( & schema) {
343
- Ok ( compiled ) => iter_on_error ( py, & compiled , instance) ,
343
+ Ok ( validator ) => iter_on_error ( py, & validator , instance) ,
344
344
Err ( error) => Err ( into_py_err ( py, error) ?) ,
345
345
}
346
346
}
347
347
348
348
/// JSONSchema(schema, draft=None, with_meta_schemas=False)
349
349
///
350
- /// JSON Schema compiled into a validation tree .
350
+ /// A JSON Schema validator .
351
351
///
352
- /// >>> compiled = JSONSchema({"minimum": 5})
353
- /// >>> compiled .is_valid(3)
352
+ /// >>> validator = JSONSchema({"minimum": 5})
353
+ /// >>> validator .is_valid(3)
354
354
/// False
355
355
///
356
356
/// By default Draft 7 will be used for compilation.
@@ -409,7 +409,7 @@ impl JSONSchema {
409
409
///
410
410
/// Create `JSONSchema` from a serialized JSON string.
411
411
///
412
- /// >>> compiled = JSONSchema.from_str('{"minimum": 5}')
412
+ /// >>> validator = JSONSchema.from_str('{"minimum": 5}')
413
413
///
414
414
/// Use it if you have your schema as a string and want to utilize Rust JSON parsing.
415
415
#[ classmethod]
@@ -451,10 +451,10 @@ impl JSONSchema {
451
451
452
452
/// is_valid(instance)
453
453
///
454
- /// Perform fast validation against the compiled schema.
454
+ /// Perform fast validation against the schema.
455
455
///
456
- /// >>> compiled = JSONSchema({"minimum": 5})
457
- /// >>> compiled .is_valid(3)
456
+ /// >>> validator = JSONSchema({"minimum": 5})
457
+ /// >>> validator .is_valid(3)
458
458
/// False
459
459
///
460
460
/// The output is a boolean value, that indicates whether the instance is valid or not.
@@ -469,8 +469,8 @@ impl JSONSchema {
469
469
///
470
470
/// Validate the input instance and raise `ValidationError` in the error case
471
471
///
472
- /// >>> compiled = JSONSchema({"minimum": 5})
473
- /// >>> compiled .validate(3)
472
+ /// >>> validator = JSONSchema({"minimum": 5})
473
+ /// >>> validator .validate(3)
474
474
/// ...
475
475
/// ValidationError: 3 is less than the minimum of 5
476
476
///
@@ -484,8 +484,8 @@ impl JSONSchema {
484
484
///
485
485
/// Iterate the validation errors of the input instance
486
486
///
487
- /// >>> compiled = JSONSchema({"minimum": 5})
488
- /// >>> next(compiled .iter_errors(3))
487
+ /// >>> validator = JSONSchema({"minimum": 5})
488
+ /// >>> next(validator .iter_errors(3))
489
489
/// ...
490
490
/// ValidationError: 3 is less than the minimum of 5
491
491
#[ pyo3( text_signature = "(instance)" ) ]
0 commit comments