From 9e6044906d3d7ce2ef5b5d8bcb76e986af1726d4 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Thu, 15 Nov 2018 16:16:48 -0600 Subject: [PATCH 01/15] create condition-create.md Propose condition-create hook --- docs/hooks/condition-create.md | 115 +++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 docs/hooks/condition-create.md diff --git a/docs/hooks/condition-create.md b/docs/hooks/condition-create.md new file mode 100644 index 00000000..01c17872 --- /dev/null +++ b/docs/hooks/condition-create.md @@ -0,0 +1,115 @@ +# `condition-create` + +| Metadata | Value +| ---- | ---- +| specificationVersion | 1.0 +| hookVersion | 0.1.0 + +## Workflow + +The `condition-create` hook fires when when a clinician adds one or more new problem to a patient's problem list. +This hook may fire with one or more newly added, active conditions or draft conditions that are not yet finalized. +The context of the hook includes these new conditions. + +## Context + +Field | Optionality | Prefetch Token | Type | Description +----- | -------- | ---- | ---- | ---- +`userId` | REQUIRED | Yes | *string* | The id of the current user.
For this hook, the user is expected to be of type [Practitioner](https://www.hl7.org/fhir/practitioner.html).
For example, `Practitioner/123` +`patientId` | REQUIRED | Yes | *string* | The FHIR `Patient.id` of the current patient in context +`encounterId` | OPTIONAL | Yes | *string* | The FHIR `Encounter.id` of the current encounter in context +`conditions` | REQUIRED | No | *object* | DSTU2 - FHIR Bundle of Condition
STU3 - FHIR Bundle of Condition + + +### Examples + +### Examples + ### Example (STU3) + ```json +{ + "context":{ + "userId":"Practitioner/123", + "patientId":"1288992", + "encounterId":"89284", + "conditions":{ + "resourceType":"Bundle", + "entry":[ + { + "resource":{ + "resourceType":"Condition", + "id":"3a14127f", + "clinicalStatus":"active", + "verificationStatus":"confirmed", + "code":{ + "coding":[ + { + "system":"http://snomed.info/sct", + "code":"16114001", + "display":"Fracture of ankle" + } + ], + "text":"Fracture of ankle" + }, + "subject":{ + "reference":"Patient/1288992" + }, + "context":{ + "reference":"Encounter/89284" + }, + "onsetDateTime":"2018-10-15T04:13:17-04:00", + "assertedDate":"2018-11-15" + } + } + ] + } + } +} +``` + + ### Example (DSTU2) + ```json +{ + "context":{ + "userId":"Practitioner/123", + "patientId":"1288992", + "encounterId":"89284", + "conditions":{ + "resourceType":"Bundle", + "entry":[ + { + "resource":{ + "resourceType":"Condition", + "id":"smart-Condition-548", + "text":{ + "status":"generated", + "div":"
Vitamin D deficiency
" + }, + "patient":{ + "reference":"Patient/1288992" + }, + "code":{ + "coding":[ + { + "system":"http://snomed.info/sct", + "code":"34713006", + "display":"Vitamin D deficiency" + } + ], + "text":"Vitamin D deficiency" + }, + "clinicalStatus":"active", + "verificationStatus":"confirmed", + "onsetDateTime":"2018-11-15" + } + } + ] + } + } +} +``` + +## Change Log + +Version | Description +---- | ---- +0.1.0 | Initial Release From 42dd70e4372222a7998fcb4a7488bb3ed95a5f3c Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Mon, 19 Nov 2018 16:37:51 -0600 Subject: [PATCH 02/15] add proposed condition-create hook to menu --- mkdocs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/mkdocs.yml b/mkdocs.yml index e00528bd..7e648bc4 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -19,6 +19,7 @@ nav: - 'patient-view' : 'hooks/patient-view.md' - 'medication-prescribe' : 'hooks/medication-prescribe.md' - 'order-review' : 'hooks/order-review.md' + - 'condition-create' : 'hooks/condition-create.md' - Quick Start: 'quickstart.md' - Examples: 'examples.md' - Community: 'community.md' From 6c0c87811ec26872075bfc36db557dee32cd3161 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Mon, 19 Nov 2018 16:39:34 -0600 Subject: [PATCH 03/15] formatting cleanup --- docs/hooks/condition-create.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/hooks/condition-create.md b/docs/hooks/condition-create.md index 01c17872..0b621fa2 100644 --- a/docs/hooks/condition-create.md +++ b/docs/hooks/condition-create.md @@ -21,11 +21,9 @@ Field | Optionality | Prefetch Token | Type | Description `conditions` | REQUIRED | No | *object* | DSTU2 - FHIR Bundle of Condition
STU3 - FHIR Bundle of Condition -### Examples +### Example (STU3) -### Examples - ### Example (STU3) - ```json +```json { "context":{ "userId":"Practitioner/123", @@ -66,8 +64,9 @@ Field | Optionality | Prefetch Token | Type | Description } ``` - ### Example (DSTU2) - ```json +### Example (DSTU2) + +```json { "context":{ "userId":"Practitioner/123", From da31d174f4f7e1d27d4d4d3df340690b40740d60 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Fri, 28 Jun 2019 12:35:32 -0500 Subject: [PATCH 04/15] restrict hook to problem rename hook, adjust examples --- docs/hooks/condition-create.md | 114 ------------------- docs/hooks/problem-list-create.md | 176 ++++++++++++++++++++++++++++++ 2 files changed, 176 insertions(+), 114 deletions(-) delete mode 100644 docs/hooks/condition-create.md create mode 100644 docs/hooks/problem-list-create.md diff --git a/docs/hooks/condition-create.md b/docs/hooks/condition-create.md deleted file mode 100644 index 0b621fa2..00000000 --- a/docs/hooks/condition-create.md +++ /dev/null @@ -1,114 +0,0 @@ -# `condition-create` - -| Metadata | Value -| ---- | ---- -| specificationVersion | 1.0 -| hookVersion | 0.1.0 - -## Workflow - -The `condition-create` hook fires when when a clinician adds one or more new problem to a patient's problem list. -This hook may fire with one or more newly added, active conditions or draft conditions that are not yet finalized. -The context of the hook includes these new conditions. - -## Context - -Field | Optionality | Prefetch Token | Type | Description ------ | -------- | ---- | ---- | ---- -`userId` | REQUIRED | Yes | *string* | The id of the current user.
For this hook, the user is expected to be of type [Practitioner](https://www.hl7.org/fhir/practitioner.html).
For example, `Practitioner/123` -`patientId` | REQUIRED | Yes | *string* | The FHIR `Patient.id` of the current patient in context -`encounterId` | OPTIONAL | Yes | *string* | The FHIR `Encounter.id` of the current encounter in context -`conditions` | REQUIRED | No | *object* | DSTU2 - FHIR Bundle of Condition
STU3 - FHIR Bundle of Condition - - -### Example (STU3) - -```json -{ - "context":{ - "userId":"Practitioner/123", - "patientId":"1288992", - "encounterId":"89284", - "conditions":{ - "resourceType":"Bundle", - "entry":[ - { - "resource":{ - "resourceType":"Condition", - "id":"3a14127f", - "clinicalStatus":"active", - "verificationStatus":"confirmed", - "code":{ - "coding":[ - { - "system":"http://snomed.info/sct", - "code":"16114001", - "display":"Fracture of ankle" - } - ], - "text":"Fracture of ankle" - }, - "subject":{ - "reference":"Patient/1288992" - }, - "context":{ - "reference":"Encounter/89284" - }, - "onsetDateTime":"2018-10-15T04:13:17-04:00", - "assertedDate":"2018-11-15" - } - } - ] - } - } -} -``` - -### Example (DSTU2) - -```json -{ - "context":{ - "userId":"Practitioner/123", - "patientId":"1288992", - "encounterId":"89284", - "conditions":{ - "resourceType":"Bundle", - "entry":[ - { - "resource":{ - "resourceType":"Condition", - "id":"smart-Condition-548", - "text":{ - "status":"generated", - "div":"
Vitamin D deficiency
" - }, - "patient":{ - "reference":"Patient/1288992" - }, - "code":{ - "coding":[ - { - "system":"http://snomed.info/sct", - "code":"34713006", - "display":"Vitamin D deficiency" - } - ], - "text":"Vitamin D deficiency" - }, - "clinicalStatus":"active", - "verificationStatus":"confirmed", - "onsetDateTime":"2018-11-15" - } - } - ] - } - } -} -``` - -## Change Log - -Version | Description ----- | ---- -0.1.0 | Initial Release diff --git a/docs/hooks/problem-list-create.md b/docs/hooks/problem-list-create.md new file mode 100644 index 00000000..e56ddda3 --- /dev/null +++ b/docs/hooks/problem-list-create.md @@ -0,0 +1,176 @@ +# `problem-list-create` + +| Metadata | Value +| ---- | ---- +| specificationVersion | 1.0 +| hookVersion | 0.1.0 + +## Workflow + +The `problem-list-create` hook fires when when a clinician adds one or more new problem to a patient's problem list. +This hook may fire with one or more newly added, active conditions or draft conditions of category `problem-list-item` that are not yet finalized. +The context of the hook includes these new conditions. + +## Context + +Field | Optionality | Prefetch Token | Type | Description +----- | -------- | ---- | ---- | ---- +`userId` | REQUIRED | Yes | *string* | The id of the current user.
For this hook, the user is expected to be of type [Practitioner](https://www.hl7.org/fhir/practitioner.html).
For example, `Practitioner/123` +`patientId` | REQUIRED | Yes | *string* | The FHIR `Patient.id` of the current patient in context +`encounterId` | OPTIONAL | Yes | *string* | The FHIR `Encounter.id` of the current encounter in context +`conditions` | REQUIRED | No | *object* | DSTU2 - FHIR Bundle of `problem-list-item` Conditions
STU3 - FHIR Bundle of `problem-list-item` Conditions
R4 - FHIR Bundle of `problem-list-item` Conditions + +### Example (R4) + +```json +{ + "context": { + "userId": "Practitioner/123", + "patientId": "1288992", + "encounterId": "89284", + "conditions": { + "resourceType": "Bundle", + "entry": [ + { + "resource": { + "resourceType": "Condition", + "id": "3a14127f", + "category": "problem-list-item", + "clinicalStatus": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/condition-clinical", + "code": "active" + } + ] + }, + "verificationStatus": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", + "code": "confirmed" + } + ] + }, + "code": { + "coding": [ + { + "system": "http://snomed.info/sct", + "code": "16114001", + "display": "Fracture of ankle" + } + ], + "text": "Fracture of ankle" + }, + "subject": { + "reference": "Patient/1288992" + }, + "onsetDateTime": "2018-10-15T04:13:17-04:00", + "assertedDate": "2018-11-15" + } + } + ] + } + } +} +``` + +### Example (STU3) + +```json +{ + "context":{ + "userId":"Practitioner/123", + "patientId":"1288992", + "encounterId":"89284", + "conditions":{ + "resourceType":"Bundle", + "entry":[ + { + "resource":{ + "resourceType":"Condition", + "id":"3a14127f", + "category":"problem-list-item", + "clinicalStatus":"active", + "verificationStatus":"confirmed", + "code":{ + "coding":[ + { + "system":"http://snomed.info/sct", + "code":"16114001", + "display":"Fracture of ankle" + } + ], + "text":"Fracture of ankle" + }, + "subject":{ + "reference":"Patient/1288992" + }, + "onsetDateTime":"2018-10-15T04:13:17-04:00", + "assertedDate":"2018-11-15" + } + } + ] + } + } +} +``` + +### Example (DSTU2) + +```json +{ + "context": { + "userId": "Practitioner/123", + "patientId": "1288992", + "encounterId": "89284", + "conditions": { + "resourceType": "Bundle", + "entry": [ + { + "resource": { + "resourceType": "Condition", + "id": "smart-Condition-548", + "category": { + "text": "Problem", + "coding": [ + { + "system": "http://argonautwiki.hl7.org/extension-codes", + "code": "problem", + "display": "Problem" + } + ] + }, + "text": { + "status": "generated", + "div": "
Vitamin D deficiency
" + }, + "patient": { + "reference": "Patient/1288992" + }, + "code": { + "coding": [ + { + "system": "http://snomed.info/sct", + "code": "34713006", + "display": "Vitamin D deficiency" + } + ], + "text": "Vitamin D deficiency" + }, + "clinicalStatus": "active", + "verificationStatus": "confirmed", + "onsetDateTime": "2018-11-15" + } + } + ] + } + } +} +``` + +## Change Log + +Version | Description +---- | ---- +0.1.0 | Initial Release From 28207e1481ed1e2acd1acb840e6a0b527f69a251 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Fri, 28 Jun 2019 12:37:01 -0500 Subject: [PATCH 05/15] rename hook condition-create -> problem-list-create --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 7e648bc4..d8cb314a 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -19,7 +19,7 @@ nav: - 'patient-view' : 'hooks/patient-view.md' - 'medication-prescribe' : 'hooks/medication-prescribe.md' - 'order-review' : 'hooks/order-review.md' - - 'condition-create' : 'hooks/condition-create.md' + - 'problem-list-create' : 'hooks/problem-list-create.md' - Quick Start: 'quickstart.md' - Examples: 'examples.md' - Community: 'community.md' From a7e740b66980264126b18cf5875fc970bf72a203 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Tue, 15 Dec 2020 13:48:32 -0600 Subject: [PATCH 06/15] rename to problem-create from problem-list-create --- docs/hooks/{problem-list-create.md => problem-create.md} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename docs/hooks/{problem-list-create.md => problem-create.md} (93%) diff --git a/docs/hooks/problem-list-create.md b/docs/hooks/problem-create.md similarity index 93% rename from docs/hooks/problem-list-create.md rename to docs/hooks/problem-create.md index e56ddda3..6a2bcc82 100644 --- a/docs/hooks/problem-list-create.md +++ b/docs/hooks/problem-create.md @@ -1,4 +1,4 @@ -# `problem-list-create` +# `problem-create` | Metadata | Value | ---- | ---- @@ -7,7 +7,7 @@ ## Workflow -The `problem-list-create` hook fires when when a clinician adds one or more new problem to a patient's problem list. +The `problem-create` hook fires when when a clinician adds one or more new problem to a patient's problem list. This hook may fire with one or more newly added, active conditions or draft conditions of category `problem-list-item` that are not yet finalized. The context of the hook includes these new conditions. @@ -18,7 +18,7 @@ Field | Optionality | Prefetch Token | Type | Description `userId` | REQUIRED | Yes | *string* | The id of the current user.
For this hook, the user is expected to be of type [Practitioner](https://www.hl7.org/fhir/practitioner.html).
For example, `Practitioner/123` `patientId` | REQUIRED | Yes | *string* | The FHIR `Patient.id` of the current patient in context `encounterId` | OPTIONAL | Yes | *string* | The FHIR `Encounter.id` of the current encounter in context -`conditions` | REQUIRED | No | *object* | DSTU2 - FHIR Bundle of `problem-list-item` Conditions
STU3 - FHIR Bundle of `problem-list-item` Conditions
R4 - FHIR Bundle of `problem-list-item` Conditions +`conditions` | REQUIRED | No | *object* | STU3 - FHIR Bundle of Conditions where `category` is `problem-list-item`
R4 - FHIR Bundle of Conditions where `category` is `problem-list-item` ### Example (R4) From 908de5442bd4bb845f1f7e2df6214d88705a3979 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Tue, 15 Dec 2020 13:49:09 -0600 Subject: [PATCH 07/15] change problem-create file and correct menu --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 01bec9b4..40a8589b 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -24,7 +24,7 @@ nav: - 'appointment-book 1' : 'hooks/appointment-book.md' - 'encounter-start 1' : 'hooks/encounter-start.md' - 'encounter-discharge 1' : 'hooks/encounter-discharge.md' - - 'problem-list-create 0' : 'hooks/problem-list-create.md' + - 'problem-create 0' : 'hooks/problem-create.md' - Quick Start: 'quickstart.md' - Best Practices: 'best-practices.md' - Examples: 'examples.md' From e1beaf018c457767d4fae6056c2fbe32c2d5ab11 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Wed, 31 May 2023 11:47:57 -0500 Subject: [PATCH 08/15] Update problem-create.md Rename to problem-list-item-create --- docs/hooks/problem-create.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/hooks/problem-create.md b/docs/hooks/problem-create.md index 6a2bcc82..2dac70bf 100644 --- a/docs/hooks/problem-create.md +++ b/docs/hooks/problem-create.md @@ -1,4 +1,4 @@ -# `problem-create` +# `problem-list-item-create` | Metadata | Value | ---- | ---- @@ -7,7 +7,7 @@ ## Workflow -The `problem-create` hook fires when when a clinician adds one or more new problem to a patient's problem list. +The `problem-list-item-create` hook fires when when a clinician adds one or more new problem to a patient's problem list. This hook may fire with one or more newly added, active conditions or draft conditions of category `problem-list-item` that are not yet finalized. The context of the hook includes these new conditions. From fd6c01025f34b15cc5913f16482d7138222d0415 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Wed, 31 May 2023 11:51:42 -0500 Subject: [PATCH 09/15] Update problem-create.md --- docs/hooks/problem-create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/hooks/problem-create.md b/docs/hooks/problem-create.md index 2dac70bf..4acbe752 100644 --- a/docs/hooks/problem-create.md +++ b/docs/hooks/problem-create.md @@ -8,7 +8,7 @@ ## Workflow The `problem-list-item-create` hook fires when when a clinician adds one or more new problem to a patient's problem list. -This hook may fire with one or more newly added, active conditions or draft conditions of category `problem-list-item` that are not yet finalized. +This hook may fire with one or more newly added conditions of category `problem-list-item` that are not yet finalized. The context of the hook includes these new conditions. ## Context From d97aa217d2cc8b55b9a360de31db29b1afc4b0fd Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Wed, 14 Jun 2023 10:55:15 -0500 Subject: [PATCH 10/15] Clarify per CDS WG feedback --- docs/hooks/problem-create.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/hooks/problem-create.md b/docs/hooks/problem-create.md index 4acbe752..fa47d456 100644 --- a/docs/hooks/problem-create.md +++ b/docs/hooks/problem-create.md @@ -7,18 +7,18 @@ ## Workflow -The `problem-list-item-create` hook fires when when a clinician adds one or more new problem to a patient's problem list. -This hook may fire with one or more newly added conditions of category `problem-list-item` that are not yet finalized. -The context of the hook includes these new conditions. +The `problem-list-item-create` hook fires once a clinician has added one or more new problems to a patient's problem list. +This hook may fire with one or more newly added conditions of category `problem-list-item` that are newly finalized. +The context of the hook includes these new conditions. Note that this hook occurs once the new problem(s) is finalized; thereby enabling the CDS Service to recommend actions related to the problem in lieu of suggesting modifications to the newly created problem. ## Context Field | Optionality | Prefetch Token | Type | Description ----- | -------- | ---- | ---- | ---- -`userId` | REQUIRED | Yes | *string* | The id of the current user.
For this hook, the user is expected to be of type [Practitioner](https://www.hl7.org/fhir/practitioner.html).
For example, `Practitioner/123` +`userId` | REQUIRED | Yes | *string* | The id of the current user.
For this hook, the user is expected to be of type [Practitioner](https://www.hl7.org/fhir/practitioner.html) or [PractitionerRole](https://www.hl7.org/fhir/practitioner.html).
For example, PractitionerRole/123 or Practitioner/abc. `patientId` | REQUIRED | Yes | *string* | The FHIR `Patient.id` of the current patient in context `encounterId` | OPTIONAL | Yes | *string* | The FHIR `Encounter.id` of the current encounter in context -`conditions` | REQUIRED | No | *object* | STU3 - FHIR Bundle of Conditions where `category` is `problem-list-item`
R4 - FHIR Bundle of Conditions where `category` is `problem-list-item` +`conditions` | REQUIRED | No | *object* | DSTU2 - FHIR Bundle of Conditions where `category` is `problem-list-item`
STU3 - FHIR Bundle of Conditions where `category` is `problem-list-item`
R4 - FHIR Bundle of Conditions where `category` is `problem-list-item` ### Example (R4) From ce63b04c66a11257bef038c9607bd5508588b305 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Wed, 14 Jun 2023 10:58:57 -0500 Subject: [PATCH 11/15] rename file to match renamed hook problem-list-item-create, not problem-create :| --- docs/hooks/{problem-create.md => problem-list-item-create.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/hooks/{problem-create.md => problem-list-item-create.md} (100%) diff --git a/docs/hooks/problem-create.md b/docs/hooks/problem-list-item-create.md similarity index 100% rename from docs/hooks/problem-create.md rename to docs/hooks/problem-list-item-create.md From 95500978951c4a69760933adebba1fca0016c7d8 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Wed, 14 Jun 2023 12:06:19 -0500 Subject: [PATCH 12/15] Add hookMaturity following vote from CDS WG to merge --- docs/hooks/problem-list-item-create.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/hooks/problem-list-item-create.md b/docs/hooks/problem-list-item-create.md index fa47d456..875de7d9 100644 --- a/docs/hooks/problem-list-item-create.md +++ b/docs/hooks/problem-list-item-create.md @@ -4,6 +4,7 @@ | ---- | ---- | specificationVersion | 1.0 | hookVersion | 0.1.0 +| hookMaturity | [1 - Submitted](../../specification/current/#hook-maturity-model) ## Workflow From 72fc5bdc953138c388cc58262aa325fb7c9df6c7 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Wed, 14 Jun 2023 12:07:07 -0500 Subject: [PATCH 13/15] Update mkdocs.yml for maturity of 1 --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index a30dad69..67702651 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -25,7 +25,7 @@ nav: - 'appointment-book 1' : 'hooks/appointment-book.md' - 'encounter-start 1' : 'hooks/encounter-start.md' - 'encounter-discharge 1' : 'hooks/encounter-discharge.md' - - 'problem-create 0' : 'hooks/problem-create.md' + - 'problem-create 1' : 'hooks/problem-create.md' - Quick Start: 'quickstart.md' - Cheat Sheet: 'cheat-sheet/Cheat Sheet - Sept 2019.pdf' - Best Practices: 'best-practices.md' From 87934c511bc929f0b41f21089cf03d30e9b6f8e2 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Fri, 2 Feb 2024 07:59:12 -0600 Subject: [PATCH 14/15] Update mkdocs.yml --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 252741e0..91d45982 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -27,7 +27,7 @@ nav: - 'appointment-book 3' : 'hooks/appointment-book.md' - 'encounter-start 1' : 'hooks/encounter-start.md' - 'encounter-discharge 3' : 'hooks/encounter-discharge.md' - - 'problem-create 1' : 'hooks/problem-create.md' + - 'problem-list-item-create 1' : 'hooks/problem-create.md' - Quick Start: 'quickstart.md' - Cheat Sheet: 'cheat-sheet/Cheat Sheet - Sept 2019.pdf' - Best Practices: 'best-practices.md' From ca91f64c94647c398d62ab166cabcdd18109b2c6 Mon Sep 17 00:00:00 2001 From: Isaac Vetter Date: Fri, 2 Feb 2024 07:59:35 -0600 Subject: [PATCH 15/15] Update mkdocs.yml --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 91d45982..3bc942fd 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -27,7 +27,7 @@ nav: - 'appointment-book 3' : 'hooks/appointment-book.md' - 'encounter-start 1' : 'hooks/encounter-start.md' - 'encounter-discharge 3' : 'hooks/encounter-discharge.md' - - 'problem-list-item-create 1' : 'hooks/problem-create.md' + - 'problem-list-item-create 1' : 'hooks/problem-list-item-create.md' - Quick Start: 'quickstart.md' - Cheat Sheet: 'cheat-sheet/Cheat Sheet - Sept 2019.pdf' - Best Practices: 'best-practices.md'