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

23 lines
319 B
JavaScript

export default {
name: "initiative",
title: "Initiative",
type: "document",
fields: [
{
name: "name",
title: "Name",
type: "string"
},
{
name: "thumbnail",
title: "Thumbnail",
type: "image"
},
{
name: "content",
title: "Content",
type: "array",
of: [{type: "block"}]
}
]
}