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.

37 lines
862 B
JSON

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