nav.json (929B)
1 { 2 "$schema": "https://json-schema.org/draft-07/schema", 3 "title": "Navigation tree", 4 "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav", 5 "type": "array", 6 "items": { 7 "oneOf": [ 8 { 9 "title": "Navigation item", 10 "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav", 11 "pattern": "\\.md$" 12 }, 13 { 14 "type": "object", 15 "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav", 16 "patternProperties": { 17 ".*": { 18 "oneOf": [ 19 { 20 "title": "Navigation item", 21 "markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav", 22 "pattern": "\\.md$" 23 }, 24 { 25 "$ref": "#" 26 } 27 ] 28 } 29 } 30 } 31 ] 32 }, 33 "additionalItems": false 34 }