GitHub Action commited on
Commit ·
d9d21b4
1
Parent(s): 0644ade
Sync from GitHub with Git LFS
Browse files- docs/HMP-0005.md +18 -16
docs/HMP-0005.md
CHANGED
|
@@ -2937,27 +2937,29 @@ forming a bidirectional logical graph that can be visualized or reconstructed by
|
|
| 2937 |
|
| 2938 |
Example of `graph_mermaid` content (sequence diagram):
|
| 2939 |
|
| 2940 |
-
```
|
| 2941 |
-
|
| 2942 |
-
|
| 2943 |
-
|
| 2944 |
-
|
| 2945 |
-
|
|
|
|
| 2946 |
|
| 2947 |
-
|
| 2948 |
-
|
| 2949 |
|
| 2950 |
-
|
| 2951 |
-
|
| 2952 |
|
| 2953 |
-
|
| 2954 |
-
|
| 2955 |
|
| 2956 |
-
|
| 2957 |
-
|
| 2958 |
|
| 2959 |
-
|
| 2960 |
-
|
|
|
|
| 2961 |
```
|
| 2962 |
|
| 2963 |
This representation explicitly defines **bidirectional links** between containers,
|
|
|
|
| 2937 |
|
| 2938 |
Example of `graph_mermaid` content (sequence diagram):
|
| 2939 |
|
| 2940 |
+
```
|
| 2941 |
+
```mermaid
|
| 2942 |
+
sequenceDiagram
|
| 2943 |
+
participant req-001 as did:hmp:container:req-001
|
| 2944 |
+
participant res-101 as did:hmp:container:res-101
|
| 2945 |
+
participant res-102 as did:hmp:container:res-102
|
| 2946 |
+
participant summary-001 as did:hmp:container:summary-001
|
| 2947 |
|
| 2948 |
+
res-101-)+req-001: related.in_reply_to
|
| 2949 |
+
req-001-->>res-101: referenced-by
|
| 2950 |
|
| 2951 |
+
res-102-)+req-001: related.in_reply_to
|
| 2952 |
+
req-001-->>res-102: referenced-by
|
| 2953 |
|
| 2954 |
+
res-102-)+res-101: related.contradicts
|
| 2955 |
+
res-101-->>res-102: referenced-by
|
| 2956 |
|
| 2957 |
+
summary-001-)+res-101: related.depends_on
|
| 2958 |
+
res-101-->>summary-001: referenced-by
|
| 2959 |
|
| 2960 |
+
summary-001-)+res-102: related.depends_on
|
| 2961 |
+
res-102-->>summary-001: referenced-by
|
| 2962 |
+
```
|
| 2963 |
```
|
| 2964 |
|
| 2965 |
This representation explicitly defines **bidirectional links** between containers,
|