Add video tutorial module and Jackson annotation code

This commit is contained in:
Alex Theedom
2017-01-23 16:56:52 +00:00
parent 7a4d666521
commit 9220584528
90 changed files with 4341 additions and 4 deletions
@@ -0,0 +1,37 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Author",
"description": "An author",
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object"
}
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"id": {
"type": "string"
},
"zIndex": {
"type": "string"
},
"alphaIndex": {
"type": "string"
}
},
"required": [
"items",
"firstName",
"lastName",
"id",
"alphaIndex",
"zIndex"
]
}