JSON Schema

JSON Schema evaluates objects against a minimal schema parser.

Interpretation Methods

The inspector supports these interpretation methods:

  • data

Options

FieldTypeDescriptionRequired
schema[]objectthe schema that is applied to the data.

must have this format:
[{"key":"foo","type":"string"},{"key":"bar","type":"number"}]

types must be one of:
- string
- number (float, int)
- boolean (true, false)
- json
Yes