{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://readium.org/guided-navigation/schema/document.schema.json",
  "title": "Readium Guided Navigation Document",
  "type": "object",
  "properties": {
    "links": {
      "type": "array",
      "items": {
        "$ref": "https://readium.org/webpub-manifest/schema/link.schema.json"
      },
    },
    "guided": {
      "type": "array",
      "items": {
        "$ref": "object.schema.json"
      },
      "minItems": 1
    }
  },
  "required": [
    "guided"
  ]
}