Skip to content

Instantly share code, notes, and snippets.

@jmas
Created December 22, 2015 11:29
Show Gist options
  • Save jmas/2c2cc1d4027052a00474 to your computer and use it in GitHub Desktop.
Save jmas/2c2cc1d4027052a00474 to your computer and use it in GitHub Desktop.
[
{
"name": "users",
"label": "Users",
"fields": [
{
"name": "name",
"label": "User Name",
"type": "text",
"required": true
},
{
"name": "photo",
"label": "User Photo",
"type": "image",
"required": false
}
]
},
{
"name": "posts",
"label": "Blog Posts",
"fields": [
{
"name": "title",
"label": "Post Title",
"type": "text",
"required": true
},
{
"name": "content",
"label": "Post Content",
"type": "richText",
"required": true
},
{
"name": "main-image",
"label": "Post Main Image",
"type": "image",
"required": false
},
{
"name": "author",
"label": "Post Author",
"type": "entry",
"collection": "users"
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment