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/base.json

22 lines
457 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "http://ndumas.com/schemas/myschema.json",
"title":"baseNote",
"description":"properties all notes must have",
"type":"object",
"properties": {
"title": {
"type": "string"
},
"aliases": {
"type": "array",
"items": {
"type":"string",
"uniqueItems": true,
"minItems": 1
}
}
},
"required": ["title","aliases"]
}