Created
April 2, 2016 19:49
-
-
Save awendland/bb27d0e64e5ea2500e6f9f612642f5a5 to your computer and use it in GitHub Desktop.
Json schema for today I learned entry
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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