Skip to content

Instantly share code, notes, and snippets.

@rheajt
Created October 30, 2022 02:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rheajt/2cc9033b40c0ce39517acda7b2dcb98d to your computer and use it in GitHub Desktop.
Save rheajt/2cc9033b40c0ce39517acda7b2dcb98d to your computer and use it in GitHub Desktop.
{
"$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