1
0
mirror of synced 2025-12-22 03:16:52 -05:00
Files
docs/lib/site-tree-schema.js
Vanessa Yuen 3df90fc9b8 Hello git history spelunker!
Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
2020-09-27 14:10:11 +02:00

67 lines
920 B
JavaScript

const product = {
properties: {
href: {
type: 'string',
required: true
},
title: {
type: 'string',
required: true
},
categories: {
type: 'object'
}
}
}
const category = {
properties: {
href: {
type: 'string',
required: true
},
title: {
type: 'string',
required: true
},
maptopics: {
type: 'object'
}
}
}
const maptopic = {
properties: {
href: {
type: 'string',
required: true
},
title: {
type: 'string',
required: true
},
articles: {
type: 'object'
}
}
}
const article = {
properties: {
href: {
type: 'string',
required: true
},
title: {
type: 'string',
required: true
},
linkTag: {
type: 'string',
required: true
}
}
}
module.exports = { product, category, maptopic, article }