{ "$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"] }