Skip to content

Instantly share code, notes, and snippets.

@awendland
Created April 2, 2016 19:49
Show Gist options
  • Save awendland/bb27d0e64e5ea2500e6f9f612642f5a5 to your computer and use it in GitHub Desktop.
Save awendland/bb27d0e64e5ea2500e6f9f612642f5a5 to your computer and use it in GitHub Desktop.
Json schema for today I learned entry
{
"id": "http://some.site.somewhere/entry-schema#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "schema for today I learned entry",
"type": "object",
"required": [ "title" ],
"properties": {
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"tags": {
"type": "array",
"": ""
},
"date": {
"type": "string"
}
},
"definitions": {
"diskDevice": {},
"diskUUID": {},
"nfs": {},
"tmpfs": {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment