{
  "$schema": "http://json-schema.org/draft-06/schema#",
  "title": "Pizza",
  "description": "A pizza",
  "type": "object",
  "properties": {
    "code": {
      "typeHint": "text",
      "type": "string",
      "title": "Code"
    },
    "label": {
      "typeHint": "text",
      "type": "string",
      "title": "Customer-facing label",
      "description": "For display on menus, etc"
    },
    "popularitySeq": {
      "typeHint": "integer",
      "type": "integer",
      "title": "Popularity seq"
    },
    "vegetarian": {
      "typeHint": "boolean",
      "type": "boolean",
      "title": "Vegetarian"
    }
  },
  "required": [
    "code",
    "label"
  ],
  "primaryKey": [
    "code"
  ]
}
