We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6b9839 commit 6dccc19Copy full SHA for 6dccc19
src/hypothesis_jsonschema/_from_schema.py
@@ -373,6 +373,8 @@ def relative_json_pointers() -> st.SearchStrategy[str]:
373
STRING_FORMATS = {
374
**{name: rfc3339(name) for name in RFC3339_FORMATS},
375
"color": st.from_regex(_WEBCOLOR_REGEX) | st.sampled_from(_CSS21_COLOR_NAMES),
376
+ "date": rfc3339("full-date"),
377
+ "time": rfc3339("full-time"),
378
"email": st.emails(),
379
"idn-email": st.emails(),
380
"hostname": prov.domains(),
0 commit comments