Created
October 30, 2022 02:58
-
-
Save rheajt/2cc9033b40c0ce39517acda7b2dcb98d to your computer and use it in GitHub Desktop.
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"properties": { | |
"entries": { | |
"type": "array", | |
"items": [ | |
{ | |
"type": "object", | |
"properties": { | |
"entry": { | |
"type": "string" | |
}, | |
"filename": { | |
"type": "string" | |
}, | |
"title": { | |
"type": "string" | |
}, | |
"template": { | |
"type": "string" | |
} | |
}, | |
"required": [ | |
"entry", | |
"filename", | |
"title", | |
"template" | |
] | |
} | |
] | |
} | |
}, | |
"required": [ | |
"entries" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment