-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1 added mermaid support plus content for concept and use case
- Loading branch information
Showing
9 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
site/ | ||
.DS_Store | ||
.texpadtmp | ||
*.aux | ||
*.bbl | ||
*.bcf | ||
*.blg | ||
*.fls | ||
*.glo | ||
*.glg | ||
*.gls | ||
*.glsdefs | ||
*.idx | ||
*.ilg | ||
*.ind | ||
*.ist | ||
*.labelTags | ||
*.lof | ||
*.log | ||
*.out | ||
*.run.xml | ||
*.synctex* | ||
*.tdo | ||
*.sta | ||
*.gz | ||
*.toc | ||
*.acn | ||
*.acr | ||
*.alg | ||
*.dvi | ||
*.lot | ||
*.maf | ||
*.mtc | ||
*.mtc1 | ||
.fdb_latexmk | ||
!images/*.pdf | ||
!images/*.pdf_tex | ||
images/svg-inkscape/ | ||
svg-inkscape/ | ||
ekg-mm/images/svg-inkscape/ | ||
out/ | ||
/.project | ||
.uuid | ||
*.tlg | ||
*.olg | ||
*.tld | ||
*.old | ||
*.tdn | ||
*.odn | ||
*.pandoc.docx | ||
.idea | ||
*.fdb_latexmk | ||
*.xdy |
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Concept | ||
|
||
For every given Use Case we want to start with capturing the concepts and | ||
terms that the user or "the business" uses or wants to use. | ||
|
||
Most of these concepts and their terms will be pre-defined in all kinds of | ||
vocabularies but for brand-new use cases in a new domain concepts and their | ||
terms will have to be created. | ||
|
||
```mermaid | ||
classDiagram | ||
direction RL | ||
class Concept { | ||
- type : ConceptType | ||
} | ||
class UseCase { | ||
- vocabulary: Vocabulary | ||
- stories: Story[] | ||
} | ||
link UseCase "http://localhost:8000/concept/use-case/" | ||
UseCase --> UseCase : requires | ||
Vocabulary "*" --> "*" Concept | ||
Vocabulary "*" --> "*" Term | ||
Story --> "*" Concept : input | ||
Story --> "*" Concept : output | ||
Term --> "1..*" Concept | ||
%% Concept --> OntologyAxiom | ||
Vocabulary <--> Concept | ||
UseCase --> "1..*" Story | ||
Persona --|> Concept | ||
Concept --> Concept : broader | ||
Concept --> Term : preferred | ||
UseCase --> "1" Vocabulary : use case vocabulary | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Input Concept | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Concept | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Use Case |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Input Concept | ||
|
||
|
Empty file.
Empty file.