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