Last active
August 25, 2019 10:49
-
-
Save theopendle/881abc5e32205f79e91b1666c146edeb to your computer and use it in GitHub Desktop.
ACM API JSON flow
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
participant "Unknown Entity" as Unknown | |
participant ACM | |
participant API | |
database Database | |
Unknown->API: {..."street": "this is a <b>\\\"</b> test" ...} | |
return {..."street": "this is a <b>\"</b> test" ...} | |
API->Database: {..."street": "this is a <b>\"</b> test" ...} | |
ACM->API: getJSONResponseFromAPI(...) | |
return {..."street": "this is a <b>"</b> test" ...} | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment