Reference
Type-specific keywords
The type
keyword is fundamental to JSON Schema. It specifies the data
type for a schema.
At its core, JSON Schema defines the following basic types:
These types have analogs in most programming languages, though they may go by different names.
The following table maps from the names of JSON types to their analogous types in Python:
JSON | Python |
---|---|
string | string *1 |
number | int/float *2 |
object | dict |
array | list |
boolean | bool |
null | None |
Footnotes
[#1] Since JSON strings always support unicode, they are
analogous to unicode
on Python 2.x and str
on
Python 3.x.
[#2] JSON does not have separate types for integer and floating-point.
The type
keyword may either be a string or an array:
- If it's a string, it is the name of one of the basic types above.
- If it is an array, it must be an array of strings, where each string is the name of one of the basic types, and each element is unique. In this case, the JSON snippet is valid if it matches any of the given types.
Here is a simple example of using the type
keyword:
In the following example, we accept strings and numbers, but not structured data types:
For each of these types, there are keywords that only apply to those types. For example, numeric types have a way of specifying a numeric range, that would not be applicable to other types. In this reference, these validation keywords are described along with each of their corresponding types in the following chapters.
Need Help?
Did you find these docs helpful?
Help us make our docs great!
At JSON Schema, we value docs contributions as much as every other type of contribution!
Still Need Help?
Learning JSON Schema is often confusing, but don't worry, we are here to help!.