Created
September 1, 2021 04:53
-
-
Save viebel/9b89822b78c0a5fde30bf002a89bbd56 to your computer and use it in GitHub Desktop.
author-schema.json
This file contains hidden or 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
{ | |
"type": "object", | |
"required": ["firstName", "lastName"], | |
"properties": { | |
"firstName": {"type": "string"}, | |
"lastName": {"type": "string"}, | |
"bookList": {"type": "array", | |
"items": { | |
"type": "object", | |
"properties": { | |
"title": {"type": "string"}, | |
"publicationYear": {"type": "integer"} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment