{
  "$schema": "http://json-schema.org/draft-06/schema#",
  "title": "Drinks",
  "description": "Drinks!",
  "type": "object",
  "properties": {
    "code": {
      "type": "string"
    },
    "label": {
      "title": "Customer-facing label",
      "type": "string"
    },
    "fizzy": {
      "title": "Is it fizzy?",
      "type": "boolean"
    },
    "alcoholic": {
      "title": "Is it alcoholic?",
      "type": "boolean"
    },
    "gluten-free": {
      "title": "Suitable for celiacs?",
      "type": "boolean"
    }
  },
  "required": [
    "code",
    "label"
  ],
  "primaryKey": [
    "code"
  ]
}
