Skip to content

Instantly share code, notes, and snippets.

@bollwyvl
Created January 23, 2013 17:46
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 bollwyvl/4610905 to your computer and use it in GitHub Desktop.
Save bollwyvl/4610905 to your computer and use it in GitHub Desktop.
TodoMVC JSON Schema
{
"type":"object",
"$schema": "http://json-schema.org/draft-03/schema",
"id": "#",
"required":false,
"properties":{
"completed": {
"type":"boolean",
"id": "completed",
"required":false
},
"title": {
"type":"string",
"id": "title",
"required":false
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment