website-sanity/schemas/article.js
2020-11-25 10:33:19 -05:00

28 lines
397 B
JavaScript

export default {
name: "article",
title: "News Article",
type: "document",
fields: [
{
name: "title",
title: "Title",
type: "string"
},
{
name: "thumbnail",
title: "Thumbnail",
type: "image"
},
{
name: "publish_date",
title: "Publish date",
type: "date"
},
{
name: "content",
title: "Content",
type: "array",
of: [{type: "block"}]
}
]
};