Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@theopendle
Last active August 25, 2019 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theopendle/881abc5e32205f79e91b1666c146edeb to your computer and use it in GitHub Desktop.
Save theopendle/881abc5e32205f79e91b1666c146edeb to your computer and use it in GitHub Desktop.
ACM API JSON flow
@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