Skip to content
Snippets Groups Projects
example.schema.json 421 B
Newer Older
Klaus Fischer's avatar
Klaus Fischer committed
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Example Schema",
  "description": "An example schema to play around with",
  "type": "object",
  "required": [
    "name",
    "age",
    "email"
  ],
Klaus Fischer's avatar
Klaus Fischer committed
  "properties": {
Klaus Fischer's avatar
Klaus Fischer committed
      "type": "string"
    },
Klaus Fischer's avatar
Klaus Fischer committed
      "type": "integer",
      "minimum": 0
    },
    "email": {
      "type": "string",
      "format": "email"