Publication Build: This will be filled in by the publication tooling
sequenceDiagram
autonumber
participant S as FHIR Server
participant C as Client
participant E as Endpoint
S->S:
Note over S: Implement Subscription<br/>Core Functionality
S->S:
Note over S: Implement one or more<br/>SubscriptionTopics
C->>S: GET Subscription/$topic-list
S-->>C: Parameters listing supported<br/>SubscriptionTopics
C->E: Create/Configure/Initialize<br/>Endpoint
C->>S: Create Subscription
alt
S-->>C: OK: status = requested/active
else
S-->>C: Rejected
end
opt
S->>E: Handshake
E-->>S: OK
end