Skip to content

Instantly share code, notes, and snippets.

@tmpvar
Created January 10, 2010 07:35
Show Gist options
  • Save tmpvar/273365 to your computer and use it in GitHub Desktop.
Save tmpvar/273365 to your computer and use it in GitHub Desktop.
{
"title": "Blog Entry",
"name" : "blog.entry",
"id" : "ASDF123-ADSF-123-1AAA",
"desc" : "Blog entry is a title and body",
"isa" : [
"blerby://core/entity/type"
],
"components" : [
{
"title" : "title",
"isa" : [
"blerby://core/entity/fields/input/text"
],
"validation" : [
{
"isa" : [
"blerby://core/entity/validators/length"
],
"maxlength" : 100,
"minlength" : 0
},
{
"isa" : [
"blerby://core/entity/validators/required"
],
"required" : true
}
],
"multiline" : false
},
{
"title" : "body",
"isa" : [
"blerby://core/entity/fields/input/text"
],
"validation" : [
{
"isa" : [
"blerby://core/entity/validators/required"
],
"required" : true
}
],
"multiline" : true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment