You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
obsidian-pipeline/schemas/blog.json

24 lines
496 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://ndumas.com/schemas/post.json",
"title":"post",
"description":"properties all notes must have",
"type":"object",
"properties": {
"title": {
"$ref":"https://ndumas.com/schemas/note.json"
},
"date": {
"type":"date"
},
"series": {
"type": "array",
"items": {
"type":"string",
"uniqueItems": true
}
}
},
"required": ["title","aliases"]
}