Created
December 6, 2017 03:00
-
-
Save thefln/753d165dd25b50c3b8ad26bc8040ffdd to your computer and use it in GitHub Desktop.
products-schema.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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