2 | This is the {% if {{site.data.fhir.ig.status}} == 'draft' %} Continuous Integration Build {% else %} Version {{site.data.fhir.ig.version}} Release {% endif %} of the {{site.data.fhir.igName}} Implementation Guide, based on FHIR Version {{ site.data.fhir.version }}. See the Directory of published versions
3 |
4 | This Implementation Guide is published by the Argonaut Project. To submit formal requests for changes use Argonaut Scheduling GitHub repository Issues Tracker.
5 |
6 |
--------------------------------------------------------------------------------
/source/pages/_includes/create-patient-ex.md:
--------------------------------------------------------------------------------
1 | **Request**
2 |
3 | `POST [base]/Patient`
4 |
5 | **Request body**
6 |
7 | ~~~
8 | {
9 | "resourceType" : "Patient",
10 | "meta" : {
11 | "profile" : [
12 | "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"
13 | ]
14 | },
15 | ...snip...
16 | "active" : true,
17 | "name" : [
18 | {
19 | "family" : "Shaw",
20 | "given" : [
21 | "Amy",
22 | "V."
23 | ]
24 | }
25 | "gender" : "female",
26 | "birthDate" : "2007-02-20",
27 | ...snip...
28 | }
29 | ~~~
30 |
31 | **Response**
32 |
33 | ~~~
34 | HTTP/1.1 201 Created
35 | Location: [base]/Patient/server-id-123/_history/1
36 | [other headers]
37 | ~~~
38 |
--------------------------------------------------------------------------------
/source/pages/_includes/extension-status-reason-intro.md:
--------------------------------------------------------------------------------
1 | {{site.data.structuredefinitions.[page.id].description}}
2 |
3 | **Context of Use** {{site.data.structuredefinitions.[page.id].contexts[0].type}}
4 |
--------------------------------------------------------------------------------
/source/pages/_includes/extension-subscription-eventfocus-intro.md:
--------------------------------------------------------------------------------
1 | {{site.data.structuredefinitions.[page.id].description}}
2 |
3 | **Context of Use** {{site.data.structuredefinitions.[page.id].contexts[0].type}}
4 |
--------------------------------------------------------------------------------
/source/pages/_includes/extension-subscription-payloadprofile-intro.md:
--------------------------------------------------------------------------------
1 | {{site.data.structuredefinitions.[page.id].description}}
2 |
3 | **Context of Use** {{site.data.structuredefinitions.[page.id].contexts[0].type}}
4 |
--------------------------------------------------------------------------------
/source/pages/_includes/extension-subscription-triggerevent-intro.md:
--------------------------------------------------------------------------------
1 | {{site.data.structuredefinitions.[page.id].description}}
2 |
3 | A formal expression, or a reference to a named expression may also be inlined. If the expression is a [FHIRPath](http://hl7.org/fhirpath/) expression, use the [fhirPath Expression]({{site.data.fhir.path}}/cqif/extension-cqif-fhirpathexpression.html) extension.
4 |
5 | **Context of Use** {{site.data.structuredefinitions.[page.id].contexts[0].type}}
6 |
--------------------------------------------------------------------------------
/source/pages/_includes/logo.md:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/source/pages/_includes/notification-ex.md:
--------------------------------------------------------------------------------
1 | ##### Notification of schedule change:
2 | {:.no_toc}
3 |
4 | `POST https://feed-handler.com/notification`
5 |
6 | **Notification body**
7 |
8 | ~~~
9 | {
10 | "resourceType" : "Schedule",
11 | "id" : "example1",
12 | "actor" : [
13 | {
14 | "reference" : Practitioner/dr-y,
15 | "display" : "Crusher, Beverly"
16 | }
17 | ],
18 | "planningHorizon" : {
19 | "start" : "2018-02-13",
20 | "end" : "2018-02-13"
21 | }
22 | }
23 | ~~~
24 |
25 | ##### "Heartbeat" Notification:
26 | {:.no_toc}
27 | ~~~
28 | POST https://feed-handler.com/notification
29 |
30 | **** No notification body****
31 | ~~~
32 |
--------------------------------------------------------------------------------
/source/pages/_includes/patient-fetch-ex.md:
--------------------------------------------------------------------------------
1 | Search for all appointments for a patient with Resource ID 1234: `GET [base]/Appointment?patient=1234`
2 |
3 | Search for all booked appointments for this patient: `GET [base]/Appointment?patient=1234&status=booked`
4 |
5 | Fetch all completed appointments for this patient since January: `GET [base]/Appointment?patient=1234&status=fulfilled&date=ge2017-01-01`
6 |
7 | Fetch all completed appointments with Dr Y for this patient since January : `GET [base]/Appointment?patient=1234&status=fulfilled&date=ge2017-01-01&practitioner=Dr+Y`
8 |
--------------------------------------------------------------------------------
/source/pages/_includes/prefetch-slot-intro.md:
--------------------------------------------------------------------------------
1 | This profile sets the minimum expectations for the Slot resource to record, search and fetch basic information about an individual slot when prefetching slots. It identifies which core elements, extensions, vocabularies and value sets SHALL be present in the resource when using this profile.
2 |
3 | This profile is defined for:
4 |
5 | - Use in the Bundle resource as a result of the prefetch 'initial load' and polling update interactions.
6 |
7 | ### Mandatory Data Elements
8 |
9 | **Each Slot must have:**
10 |
11 | 1. an id
12 | 1. a status
13 | 1. a location or practitioner schedule
14 | 1. a start and end time
15 |
16 | **The system [Must Support]({{site.data.fhir.uscore}}guidance.html#must-support) if available:**
17 |
18 | 1. a visit type
19 | 1. comments to describe any extended information
20 |
21 | **Additional Profile specific implementation guidance:**
22 |
23 | - For additional implementation or site specific context os constraints (For example qualification on visit types such as age restrictions for well child visits.) use `Slot.comment`. The example below demonstrates is usage.
24 |
25 | #### Examples
26 |
27 | - [Slot Example 1](Slot-2017-09-07T154500-arg-s-6.html)
28 |
--------------------------------------------------------------------------------
/source/pages/_includes/prefetch-slot-search.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | Patient based Scheduling:
4 |
5 | - [Initial Load](patient-scheduling.html#initial-load)
6 | - [Poll for Updated Slots](patient-scheduling.html#smart-polling-for-updated-slots)
7 |
8 |
9 |
--------------------------------------------------------------------------------
/source/pages/_includes/provider-fetch-ex.md:
--------------------------------------------------------------------------------
1 | Fetch all of a practitioner's appointments (all statuses):
2 | `GET [base]\Appointment?practitioner=[id]`
3 |
4 | Fetch all open appointments:
5 | `GET [base]\Appointment?practitioner=[id]&status=free`
6 |
7 | Fetch all completed appointments since October:
8 | `GET [base]\Appointment?practitioner=[id]&status=fulfilled&date=ge2017-10-01`
9 |
10 | Fetch all completed appointments for a patient since October:
11 | `GET [base]\Appointment?practitioner=[id]&patient=[id]&status=fulfilled&date=ge2017-10-01`
12 |
--------------------------------------------------------------------------------
/source/pages/_includes/pub-publish-box.html:
--------------------------------------------------------------------------------
1 |
4 | This Implementation Guide is published by the Argonaut Project. To submit formal requests for changes use Argonaut Scheduling GitHub repository Issues Tracker.
5 |
6 |
--------------------------------------------------------------------------------
/source/pages/_includes/slot-bundle-intro.md:
--------------------------------------------------------------------------------
1 | The Slot Bundle profile sets the minimum expectations for the Bundle resource which is returned as a result of the prefetch ‘initial load’ and polling update interactions when prefetching slots.
2 |
3 | ### Mandatory Data Elements
4 |
5 | **Each Bundle must have:**
6 |
7 | 1. a bundle type
8 | 1. a total number of matches
9 |
10 | **The system [Must Support]({{site.data.fhir.uscore}}guidance.html#must-support) if available:**
11 |
12 | 1. Appointment entries
13 | 1. OperationOutcome entry
14 |
15 | **Additional Profile specific implementation guidance:**
16 |
17 | - None
18 |
19 | #### Examples
20 |
21 | - [Prefetch Slot Bundle Example](Bundle-slot-bundle-example.html)
22 |
--------------------------------------------------------------------------------
/source/pages/_includes/slot-bundle-search.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | Patient based Scheduling:
4 |
5 | - [Initial Load](patient-scheduling.html#initial-load)
6 | - [Poll for Updated Slots](patient-scheduling.html#smart-polling-for-updated-slots)
7 |
--------------------------------------------------------------------------------
/source/pages/_includes/slot-prefetch.md:
--------------------------------------------------------------------------------
1 | Using Both `GET` and `POST` Syntax the operation can be invoked as follows:
2 |
3 | `GET [base]/Slot/$prefetch?{parameters}`
4 |
5 | `POST [base]/Slot/$prefetch`
6 |
7 | #### Examples
8 | {:.no_toc}
9 |
10 | {% include slot-prefetch1.md %}
11 |
--------------------------------------------------------------------------------
/source/pages/_includes/smartpoll-ex.md:
--------------------------------------------------------------------------------
1 | {{page.uri}}
2 |
3 | **Request using`POST` syntax**
4 |
5 | `POST [base]/Slot/$prefetch`
6 |
7 | **Request body**
8 |
9 | ~~~
10 | {
11 | "resourceType": "Parameters",
12 | "parameter": [
13 | {
14 | "name": "practitioner",
15 | "valueDateTime" : "Practitioner/123"
16 | },
17 | {
18 | "name": "start",
19 | "valueDateTime" : "2017-07-15T00:00:00Z"
20 | },
21 | {
22 | "name": "end",
23 | "valueDateTime" : "2017-07-15T24:00:00Z"
24 | }
25 | ]}
26 | ~~~
27 |
28 | **Response**
29 |
30 | ~~~
31 | HTTP/1.1 200 OK
32 | [other headers]
33 | ~~~
34 |
35 | **Response body**
36 |
37 | ~~~
38 | {
39 | "resourceType": "Bundle",
40 | "id": "prefetch-1",
41 | "type": "searchset",
42 | "total": 8,
43 | "entry": [{
44 | "fullUrl": "http://server/path/Slot/20170715240000-123",
45 | "resource": {
46 | "resourceType": "Slot",
47 | "id": "20170715240000-123",
48 | .. snip ...
49 | "status":"free"
50 | .. snip ...
51 | }
52 | ]}
53 | ~~~
54 |
--------------------------------------------------------------------------------
/source/pages/_includes/subscribe-ex.md:
--------------------------------------------------------------------------------
1 | **Subscribe**
2 |
3 | `POST [base]/Subscription`
4 |
5 | **Request body**
6 |
7 | ~~~
8 | {
9 | "resourceType": "Subscription",
10 | "id": "example",
11 | "status": "active",
12 | "reason": "Notify subscriber of schedule changes to trigger the subscriber prefetch updated slots",
13 | "_criteria": {
14 | "extension": [
15 | {
16 | "url": "http://fhir.org/guides/argonaut-scheduling/StructureDefinition/extension-subscription-triggerevent",
17 | "valueString": "schedule where any slot that reference it has changed"
18 | },
19 | {
20 | "url": "http://fhir.org/guides/argonaut-scheduling/StructureDefinition/extension-subscription-eventfocus",
21 | "valueCode": "Schedule"
22 | }
23 | ]
24 | },
25 | "channel": {
26 | "extension": [
27 | {
28 | "url": "http://fhir.org/guides/argonaut-scheduling/StructureDefinition/extension-subscription-payloadprofile",
29 | "valueUri": "//fhir.org/guides/argonaut-scheduling/StructureDefinition/argo-sched-notif"
30 | }
31 | ],
32 | "type": "rest-hook",
33 | "endpoint": "https://feed-handler.com/notification",
34 | "payload": "application/fhir+json"
35 | }
36 | }
37 | ~~~
38 |
39 | **Response**
40 |
41 | ~~~
42 | HTTP/1.1 200 OK
43 | [other headers]
44 |
45 | ~~~
46 |
--------------------------------------------------------------------------------
/source/pages/assets/css/argo-sched.css:
--------------------------------------------------------------------------------
1 | /* Section numbering*/
2 |
3 | body{counter-reset: section}
4 | h2{counter-reset: sub-section}
5 | h3{counter-reset: composite}
6 | h4{counter-reset: detail}
7 | h5{counter-reset: more-detail}
8 |
9 | h2:before{
10 | counter-increment: section;
11 | content: counter(section) " ";
12 | }
13 | h3:before{
14 | counter-increment: sub-section;
15 | content: counter(section) "." counter(sub-section) " ";
16 | }
17 | h4:before{
18 | counter-increment: composite;
19 | content: counter(section) "." counter(sub-section) "." counter(composite) " ";
20 | }
21 | h5:before{
22 | counter-increment: detail;
23 | content: counter(section) "." counter(sub-section) "." counter(composite) "." counter(detail) " ";
24 | }
25 | h6:before{
26 | counter-increment: more-detail;
27 | content: counter(section) "." counter(sub-section) "." counter(composite) "." counter(detail) "." counter(more-detail)" ";
28 | }
29 |
--------------------------------------------------------------------------------
/source/pages/assets/images/ArgonautProject_logo_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/ArgonautProject_logo_black.png
--------------------------------------------------------------------------------
/source/pages/assets/images/appt-state.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/appt-state.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide01.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide02.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide03.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide04.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide05.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide06.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide06.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide07.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide07.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide08.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide08.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide09.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide09.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide10.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide11.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide12.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide13.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide14.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide15.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide16.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide17.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide17.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide18.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide18.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide19.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide19.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide20.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide21.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide22.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide23.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide23.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide24.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide25.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide25.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide26.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide26.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide27.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide27.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide28.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide28.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide29.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide30.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide31.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide32.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide33.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide33.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide34.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide34.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide35.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide35.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide36.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide37.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide37.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide38.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide38.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide39.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide39.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide40.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide41.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide41.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide42.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide43.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide43.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide44.png
--------------------------------------------------------------------------------
/source/pages/assets/images/diagrams/Slide45.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/diagrams/Slide45.png
--------------------------------------------------------------------------------
/source/pages/assets/images/usbanner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/pages/assets/images/usbanner.png
--------------------------------------------------------------------------------
/source/pages/capstatements.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: CapabilityStatements defined for this Guide
3 | layout: default
4 | active: capstatements
5 | ---
6 |
7 |
13 |
14 | {% include list-capabilitystatements.xhtml %}
15 |
16 |
--------------------------------------------------------------------------------
/source/pages/history.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Version History
3 | layout: default
4 | active: history
5 | ---
6 |
7 | The Argonaut Project is a joint project of major US EHR vendors to advance industry adoption of modern, open interoperability standards. For further information, see [About the Argonaut Project](http://argonautwiki.hl7.org/index.php?title=Main_Page). This Implementation Guide provides the specifications for a US Scheduling Services. See the [The full list of Argonaut Specifications](http://www.fhir.org/guides/argonaut/).
8 |
9 | This table provides a list of all the versions of FHIR versions of the {{site.data.fhir.igName}} Implementation Guide that are available. See [FHIR Releases and Versioning](http://build.fhir.org/versions.html#versions) for a description of how the versioning of this Implementation Guide is managed. As well, this guide follow the general definitions and guidelines outlined in [Rules for Inter-version change](http://build.fhir.org/versions.html#change):
10 |
11 | |Date|Version|Description|
12 | |---|---|---|
13 | |**Current Versions**|
14 | |[March 23, 2018](#)|1.0.0|Current Release (Release 1)|
15 | |[current](#)|(last commit)|Current Development build (may be incoherent and change rapidly)|
16 | |**Release 1 Sequence**|
17 | |[March 23, 2018](#)|1.0.0| Release 1 *(Permanent Home)*|
18 |
--------------------------------------------------------------------------------
/source/pages/operations.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: OperationDefinitions defined for this Guide
3 | layout: default
4 | active: operations
5 | ---
6 |
7 | The following OperationDefinitions have been defined for this implementation guide:
8 |
9 | {% include list-simple-operationdefinitions.xhtml %}
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/source/pages/profiles.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Profiles defined as part of this Guide
3 | layout: default
4 | active: profiles
5 | ---
6 | #### Profiles
7 |
8 | The following Profiles have been defined for this implementation guide.
9 |
10 | {% include list-profiles.xhtml %}
11 |
12 |
13 |
14 | #### Extensions:
15 |
16 | These extensions have been defined for this implementation guide.
17 |
18 | {% include list-extensions.xhtml %}
19 |
20 |
21 |
--------------------------------------------------------------------------------
/source/pages/terminology.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: ValueSets and CodeSystems defined as part of this Implementation Guide
3 | layout: default
4 | active: terminology
5 | ---
6 |
7 | #### Value Sets
8 |
9 | These value sets have been defined for this implementation guide.
10 | {% include list-simple-valuesets.xhtml %}
11 |
12 |
13 | #### Code Systems
14 |
15 | **Code systems published in this IG** - Includes US Core defined code systems and externally defined code systems
16 | {% include list-simple-codesystems.xhtml %}
17 |
18 | #### Concept Maps
19 |
20 | These concept mappings have been defined for this implementation guide.
21 | {% include list-simple-conceptmaps.xhtml %}
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/source/pages/todo.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Implemenation Guide Todo List
3 | layout: default
4 | active: todo
5 | ---
6 |
7 | ...todo...
8 |
--------------------------------------------------------------------------------
/source/resources/drafts/valueset-event-reason.textClipping:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/argonautproject/scheduling/b498744b7a2fb0184bd86185bb76bb809506967e/source/resources/drafts/valueset-event-reason.textClipping
--------------------------------------------------------------------------------
/source/resources/valueset-appt-type.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/source/resources/valueset-slot-bundle-type.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/source/resources/valueset-slot-status.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/source/resources/valueset-specialty.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/source/resources/valueset-status-reason.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------