2023-10-02 19:51:36 +00:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"title": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"path": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
2023-10-12 02:22:24 +00:00
|
|
|
"redirects": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
2023-10-02 19:51:36 +00:00
|
|
|
"tags": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"authors": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"date": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "date"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["title", "path", "tags", "authors"],
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|
|
|
|
}
|