Skip to content

Instantly share code, notes, and snippets.

@thefln
Created December 6, 2017 03:00
Show Gist options
  • Select an option

  • Save thefln/753d165dd25b50c3b8ad26bc8040ffdd to your computer and use it in GitHub Desktop.

Select an option

Save thefln/753d165dd25b50c3b8ad26bc8040ffdd to your computer and use it in GitHub Desktop.
products-schema.js
export default {
title: 'Product',
name: 'product',
type: 'document',
fields: [
{
title: 'Name',
name: 'name',
type: 'string'
},
{
title: 'Description',
name: 'description',
type: 'string'
},
{
title: 'Price',
name: 'price',
type: 'number'
},
{
title: 'Image',
name: 'image',
type: 'image'
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment