Tools, FAQ, Tutorials:
JSON Schema Syntax
What is the JSON Schema syntax? I heard that it is very simple.
✍: FYIcenter.com
JSON Schema syntax is very simple. Here are some basic JSON Schema syntax rules:
1. A JSON schema must be a valid JSON Object.
2. A JSON schema may contain zero, one or more validation properties (also called keywords). Each validation keyword represents a validation rule. A JSON value is considered to be valid against a JSON schema, it must pass all validation rules listed in the JSON schema.
For example, the following JSON schema has no validation rules given with any validation keywords, so any JSON value is considered as valid against this JSON schema:
{}
3. "type" is the most frequently used validation keyword, which represent a validation rule that requires the JSON value to match the given JSON type: "null", "boolean", "object", "array", "number", "string" or "integer".
For example, the following JSON schema requires the JSON value to be a JSON Number:
{
"type": "number"
}
3. "items" is a validation keyword that provides a child JSON schema or an array of child JSON schema to validate the array elements if the JSON value is a JSON array.
For example, the following JSON schema defines a JSON schema for a JSON Array of JSON Strings:
{
"type": "array",
"items": {
"type": "string"
}
}
4. "properties" is a validation keyword that provides an object with properties expected in the JSON Object value and child JSON schema for each property value.
For example, the following JSON schema defines a JSON schema for a JSON object with two properties "name" and "age". Both of them should be JSON String values.
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"age": {
"type": "integer"
}
}
}
5. "not" is a validation keyword that reverse the meaning of a child JSON schema.
For example, the following JSON schema makes any JSON value invalid, because {} is a schema that makes any JSON value valid.
{
"not": {}
}
2018-02-01, ∼2550🔥, 0💬
Popular Posts:
How to enter & sign in '@(...)' expressions? & signs can be entered in '@(...)' expr...
How to use the "set-backend-service" Policy Statement for an Azure API service operation? The "set-b...
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows y...
How to add request URL Template Parameters to my Azure API operation to make it more user friendly? ...
How to use "link" command tool to link objet files? If you have object files previously compiled by ...