← BACK TO TOOLSTOOL / JSON SCHEMA GENERATOR

JSON SCHEMA GENERATOR

Generate a starter JSON Schema from sample JSON. Useful as a first draft, not a substitute for reviewing the actual data contract.

INPUT / SAMPLE JSON75 CHARS
OUTPUT / SCHEMAREADY
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "active": {
      "type": "boolean"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "id",
    "name",
    "active",
    "tags"
  ]
}