document_type added
This commit is contained in:
@@ -6,6 +6,10 @@
|
||||
{{ JSON.stringify($('getTags').all().map(i => ({ id: i.json.paperless_id, name: i.json.name }))) }}
|
||||
[Tags End]
|
||||
|
||||
[Documents Start]
|
||||
{{ JSON.stringify($('getDocuments').all().map(i => ({ id: i.json.paperless_id, name: i.json.name }))) }}
|
||||
[Documents End]
|
||||
|
||||
[Dokument Inhalt Start]
|
||||
{{ $('documentObject').item.json.document[0].content.substring(1,1000) }}
|
||||
[Dokument Inhalt Ende]
|
||||
@@ -3,23 +3,25 @@ Versuche erst einen passenden Korrespondent und Tag aus meiner Liste was ich anh
|
||||
|
||||
Stelle sicher das ausschließlich mit purem JSON. Nutze keine Markdown-Formatierung wie ` ` `json. Beginne direkt mit der öffnenden geschweiften Klammer {.
|
||||
|
||||
Beispielantwort 1 wenn eine Korrespondent ID und Tags vorhanden sind
|
||||
Beispielantwort 1 wenn eine Korrespondent ID, Document_type und Tags vorhanden sind
|
||||
|
||||
{
|
||||
"Title": "SLK Klinik Beinoperation",
|
||||
"Korrespondent-ID": 1,
|
||||
"Korrespondent": "SLK Klinik",
|
||||
"Tags-ID":[6,8]
|
||||
"Tags:["Arztbriefe", "Medikamente"]
|
||||
"Dokumenttyp": "Arztbrief"
|
||||
"Tags-ID":[6,8],
|
||||
"Tags:["Arztbriefe", "Medikamente"],
|
||||
"Document_type_id": 8,
|
||||
"Document_typ": "Information"
|
||||
}
|
||||
|
||||
Beispielantwort 2 wenn eine Korrespondent ID und Tags nicht vorhanden sind
|
||||
Beispielantwort 2 wenn eine Korrespondent ID, Document_type und Tags nicht vorhanden sind
|
||||
{
|
||||
"Title": "SLK Klinik Beinoperation",
|
||||
"Korrespondent-ID": null,
|
||||
"Korrespondent": "SLK Klinik",
|
||||
"Tags-ID":[null]
|
||||
"Tags:["Operation", "Varatharajan"]
|
||||
"Tags-ID":[null],
|
||||
"Tags:["Operation", "Varatharajan"],
|
||||
"Document_type_id": null,
|
||||
"Dokumenttyp": "Arztbrief"
|
||||
}
|
||||
Reference in New Issue
Block a user