Skip to content

Instantly share code, notes, and snippets.

@aborruso
Created April 4, 2010 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aborruso/355566 to your computer and use it in GitHub Desktop.
Save aborruso/355566 to your computer and use it in GitHub Desktop.
{
types: {
"Person": {
pluralLabel: "People"
}
},
properties: {
"age": {
valueType: "number"
},
"parentOf": {
label: "parent of",
reverseLabel: "child of",
valueType: "item"
}
},
items: [
{ label: "John Doe",
type: "Person",
parentOf: "Jane Smith"
},
{ label: "Jane Smith",
type: "Person"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment