summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2022-08-30 12:25:50 +0300
committerJulian Berman <Julian@GrayVines.com>2022-08-30 12:28:44 +0300
commitca967604f66958be783015f48b1155c26b006ff8 (patch)
tree62aa33f2998ba1fb2bc5ca3aa0ba0c23a84b41ad /docs
parent57b604ec99b3817b4c645d18278836d465342bba (diff)
downloadjsonschema-ca967604f66958be783015f48b1155c26b006ff8.tar.gz
Make the link to Understanding JSON Schema more prominent.
(And remove some ancient language from when it was a twinkle in someone's eye).
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py1
-rw-r--r--docs/validate.rst11
2 files changed, 7 insertions, 5 deletions
diff --git a/docs/conf.py b/docs/conf.py
index b821453..af57de0 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -89,6 +89,7 @@ from jsonschema import *
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
+ "ujs": ("https://json-schema.org/understanding-json-schema/", None),
}
diff --git a/docs/validate.rst b/docs/validate.rst
index 50580bd..d59d634 100644
--- a/docs/validate.rst
+++ b/docs/validate.rst
@@ -5,6 +5,12 @@ Schema Validation
.. currentmodule:: jsonschema
+.. tip::
+
+ Most of the documentation for this package assumes you're familiar with the fundamentals of writing JSON schemas themselves, and focuses on how this library helps you validate with them in Python.
+
+ If you aren't already comfortable with writing schemas and need an introduction which teaches about JSON Schema the specification, you may find `Understanding JSON Schema <ujs:basics>` to be a good read!
+
The Basics
----------
@@ -15,11 +21,6 @@ The simplest way to validate an instance under a given schema is to use the
.. autofunction:: validate
:noindex:
-.. [#] For information on creating JSON schemas to validate
- your data, there is a good introduction to JSON Schema
- fundamentals underway at `Understanding JSON Schema
- <https://json-schema.org/understanding-json-schema/>`_
-
.. _validator-protocol:
The Validator Protocol