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 920 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
  1. const product = {
  2. properties: {
  3. href: {
  4. type: 'string',
  5. required: true
  6. },
  7. title: {
  8. type: 'string',
  9. required: true
  10. },
  11. categories: {
  12. type: 'object'
  13. }
  14. }
  15. }
  16. const category = {
  17. properties: {
  18. href: {
  19. type: 'string',
  20. required: true
  21. },
  22. title: {
  23. type: 'string',
  24. required: true
  25. },
  26. maptopics: {
  27. type: 'object'
  28. }
  29. }
  30. }
  31. const maptopic = {
  32. properties: {
  33. href: {
  34. type: 'string',
  35. required: true
  36. },
  37. title: {
  38. type: 'string',
  39. required: true
  40. },
  41. articles: {
  42. type: 'object'
  43. }
  44. }
  45. }
  46. const article = {
  47. properties: {
  48. href: {
  49. type: 'string',
  50. required: true
  51. },
  52. title: {
  53. type: 'string',
  54. required: true
  55. },
  56. linkTag: {
  57. type: 'string',
  58. required: true
  59. }
  60. }
  61. }
  62. module.exports = { product, category, maptopic, article }
Tip!

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

Comments

Loading...