website-sanity/schemas/article.js
2021-01-06 00:22:00 -05:00

56 lines
791 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: "author",
title: "Author",
type: "string"
},
{
name: "content",
title: "Content",
type: "array",
of: [
{
type: "block"
},
{
type: 'image',
fields: [
{
type: 'text',
name: 'alt',
title: 'Alternative text',
description: 'Description',
options: {
isHighlighted: true
}
}
]
}
]
},
{
name: "summary",
title: "Short summary",
type: "text"
}
]
};