Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

site-tree-schema.js 514 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  1. const childPage = {
  2. type: 'object',
  3. properties: {
  4. href: {
  5. type: 'string',
  6. required: true
  7. },
  8. page: {
  9. type: 'object',
  10. required: true,
  11. properties: {
  12. title: {
  13. type: 'string',
  14. required: true
  15. },
  16. relativePath: {
  17. type: 'string',
  18. required: true
  19. },
  20. permalinks: {
  21. type: 'array',
  22. required: true,
  23. minItems: 1
  24. }
  25. }
  26. }
  27. }
  28. }
  29. module.exports = { childPage }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...