From 1381db6db30ce0ca4e207b1876cd3bdb330c5a31 Mon Sep 17 00:00:00 2001 From: Lars Date: Wed, 3 Sep 2025 07:40:37 +0200 Subject: [PATCH] schemas/note.schema.json aktualisiert --- schemas/note.schema.json | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/schemas/note.schema.json b/schemas/note.schema.json index 0611cdd..5f3c940 100644 --- a/schemas/note.schema.json +++ b/schemas/note.schema.json @@ -1,6 +1,3 @@ -cd ~/mindnet -mkdir -p schemas -cat > schemas/note.schema.json << 'JSON' { "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "mindnet_note", @@ -13,21 +10,38 @@ cat > schemas/note.schema.json << 'JSON' "status": { "type": "string" }, "created": { "type": "string" }, "updated": { "type": "string" }, - "tags": { "type": "array", "items": { "type": "string" } }, + "tags": { + "type": "array", + "items": { "type": "string" } + }, "area": { "type": "string" }, "project": { "type": "string" }, "priority": { "type": "number" }, "effort_min": { "type": "number" }, "due": { "type": "string" }, - "people": { "type": "array", "items": { "type": "string" } }, - "aliases": { "type": "array", "items": { "type": "string" } }, - "references": { "type": "array", "items": { "type": "string" } }, - "depends_on": { "type": "array", "items": { "type": "string" } }, - "assigned_to":{ "type": "array", "items": { "type": "string" } }, + "people": { + "type": "array", + "items": { "type": "string" } + }, + "aliases": { + "type": "array", + "items": { "type": "string" } + }, + "references": { + "type": "array", + "items": { "type": "string" } + }, + "depends_on": { + "type": "array", + "items": { "type": "string" } + }, + "assigned_to": { + "type": "array", + "items": { "type": "string" } + }, "lang": { "type": "string" }, "path": { "type": "string" }, "hash_fulltext": { "type": "string" } }, "additionalProperties": true } -JSON