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.

24 lines
544 B
JSON

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