schemas/note.schema.json aktualisiert
Some checks failed
Deploy mindnet to llm-node / deploy (push) Failing after 2s
Some checks failed
Deploy mindnet to llm-node / deploy (push) Failing after 2s
This commit is contained in:
parent
62d8299480
commit
79e19c85eb
|
|
@ -2,46 +2,38 @@
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
"title": "mindnet_note",
|
"title": "mindnet_note",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
"description": "Note-Payload (Qdrant). Erweitert um fulltext/hash_raw_body für verlustfreien Export.",
|
||||||
|
|
||||||
"required": ["note_id", "title", "type", "status", "created", "path"],
|
"required": ["note_id", "title", "type", "status", "created", "path"],
|
||||||
|
|
||||||
"properties": {
|
"properties": {
|
||||||
"note_id": { "type": "string" },
|
"note_id": { "type": "string" },
|
||||||
"title": { "type": "string" },
|
"title": { "type": "string" },
|
||||||
"type": { "type": "string" },
|
"type": { "type": "string" },
|
||||||
"status": { "type": "string" },
|
"status": { "type": "string" },
|
||||||
"created": { "type": "string" },
|
"created": { "type": "string" },
|
||||||
"updated": { "type": "string" },
|
"updated": { "type": "string" },
|
||||||
"tags": {
|
|
||||||
"type": "array",
|
"tags": { "type": "array", "items": { "type": "string" } },
|
||||||
"items": { "type": "string" }
|
"area": { "type": "string" },
|
||||||
},
|
"project": { "type": "string" },
|
||||||
"area": { "type": "string" },
|
"priority": { "type": "number" },
|
||||||
"project": { "type": "string" },
|
"effort_min": { "type": "number" },
|
||||||
"priority": { "type": "number" },
|
"due": { "type": "string" },
|
||||||
"effort_min": { "type": "number" },
|
"people": { "type": "array", "items": { "type": "string" } },
|
||||||
"due": { "type": "string" },
|
"aliases": { "type": "array", "items": { "type": "string" } },
|
||||||
"people": {
|
"lang": { "type": "string" },
|
||||||
"type": "array",
|
|
||||||
"items": { "type": "string" }
|
"path": { "type": "string" },
|
||||||
},
|
|
||||||
"aliases": {
|
"references": { "type": "array", "items": { "type": "string" } },
|
||||||
"type": "array",
|
"depends_on": { "type": "array", "items": { "type": "string" } },
|
||||||
"items": { "type": "string" }
|
"assigned_to": { "type": "array", "items": { "type": "string" } },
|
||||||
},
|
|
||||||
"references": {
|
"hash_fulltext":{ "type": "string" },
|
||||||
"type": "array",
|
"hash_raw_body":{ "type": "string" },
|
||||||
"items": { "type": "string" }
|
"fulltext": { "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
|
"additionalProperties": true
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user