V
Vel·ToolKit
Simple · Fast · Ready to use
EN

JSON Schema

Infer JSON Schema from sample

Draft
Required policy
Input
JSON Schema
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "email": { "type": "string", "format": "email" }, "active": { "type": "boolean" }, "createdAt": { "type": "string", "format": "date-time" }, "tags": { "type": "array", "items": { "type": "string" } }, "meta": { "type": "object", "properties": { "score": { "type": "number" } }, "required": [ "score" ] } }, "required": [ "id", "name", "email", "active", "createdAt", "tags" ] } }
Draft draft-07chars 876