Skip to content

Commit e10e7c9

Browse files
Update README.md
1 parent 4a18fba commit e10e7c9

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -138,28 +138,27 @@ sequenceDiagram
138138
participant MongoDB
139139
140140
User ->> API: POST /model
141-
API ->> MongoDB: Persist API Model
141+
API ->> MongoDB: Persist API Model as a document
142142
MongoDB -->> API: Model ID
143-
API -->> User: Model ID
143+
API -->> User: ModelCreated View
144144
145145
User ->> API: GET /model/:id
146-
API ->> MongoDB: Retrieve API Model
147-
MongoDB -->> API: Rocketpy Model
148-
API -->> User: Rocketpy Model
146+
API ->> MongoDB: Read API Model document
147+
MongoDB -->> API: API Model document
148+
API -->> User: API ModelView
149149
150150
User ->> API: PUT /model/:id
151-
API ->> MongoDB: Update API Model
152-
MongoDB -->> API: Updated Model
153-
API -->> User: Updated Model
151+
API ->> MongoDB: Update API Model document
152+
API -->> User: ModelUpdated View
154153
155154
User ->> API: DELETE /model/:id
156-
API ->> MongoDB: Delete API Model
155+
API ->> MongoDB: Delete API Model document
157156
MongoDB -->> API: Deletion Confirmation
158-
API -->> User: Deletion Confirmation
157+
API -->> User: ModelDeleted View
159158
160159
```
161160

162-
### Simulating and extracting RocketPY native class
161+
### Simulating and extracting RocketPY native classes
163162
```mermaid
164163
sequenceDiagram
165164
participant User

0 commit comments

Comments
 (0)