_validators
root_validate_dict_keys(cls, object)
¶
For each dictionary in object.values()
,
checks that that dictionary has only keys of type str.
Source code in fractal_server/app/schemas/_validators.py
89 90 91 92 93 94 95 96 97 |
|
val_absolute_path(attribute, accept_none=False)
¶
Check that a string attribute is an absolute path
Source code in fractal_server/app/schemas/_validators.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
|
valstr(attribute, accept_none=False)
¶
Check that a string attribute is not an empty string, and remove the leading and trailing whitespace characters.
If accept_none
, the validator also accepts None
.
Source code in fractal_server/app/schemas/_validators.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|