Last active
February 6, 2023 17:31
-
-
Save dwinston/42bcc184191595f845d7967f522c2eb7 to your computer and use it in GitHub Desktop.
Revisions
-
dwinston revised this gist
Feb 6, 2023 . 1 changed file with 0 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -48,7 +48,4 @@ flowchart LR Action-->|context|State Action-->|variant|Action Action-->|performer|Person ``` -
dwinston revised this gist
Feb 6, 2023 . 1 changed file with 0 additions and 31 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -5,37 +5,6 @@ flowchart LR Issue["ibis:Issue"] Agent["prov:Agent"] Position["ibis:Position"] State["pm:State"] Goal["pm:Goal"] -
dwinston revised this gist
Feb 6, 2023 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,11 +2,12 @@ %%{ init: { 'flowchart': { 'curve': 'monotoneX' } } }%% flowchart LR Concept["skos:Concept"] Issue["ibis:Issue"] Agent["prov:Agent"] Position["ibis:Position"] ConceptScheme["skos:ConceptScheme"] Argument["ibis:Argument"] Network["ibis:Network"] Invariant["ibis:Invariant"] -
dwinston created this gist
Feb 6, 2023 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,84 @@ ```mermaid %%{ init: { 'flowchart': { 'curve': 'monotoneX' } } }%% flowchart LR Concept["skos:Concept"] ConceptScheme["skos:ConceptScheme"] Issue["ibis:Issue"] Agent["prov:Agent"] Position["ibis:Position"] Argument["ibis:Argument"] Network["ibis:Network"] Invariant["ibis:Invariant"] Issue-.->|specializes|Concept Position-.->|specializes|Concept Argument-.->|specializes|Issue Position-->|responds to|Issue Argument-->|supports|Position Argument-->|opposes|Position Concept-->|replaces|Concept %%Agent-->|endorses|Concept Concept-->|endorsed by|Agent %%Concept-.->|generalizes|Invariant Invariant-.->|specializes|Concept %%ConceptScheme-.->|generalizes|Network Network-.->|specializes|ConceptScheme Concept-->|in scheme|ConceptScheme Issue-->|concerns|Concept %%Issue-->|questions|Concept %%questions subPropertyOf concerns %%Issue-->|suggested by|Concept %%suggestedBy subPropertyOf concerns Position x-.-x|disjoint with| Issue Position x-.-x|disjoint with| Argument State["pm:State"] Goal["pm:Goal"] Target["pm:Target"] Task["pm:Task"] Event["ev:Event"] Action["pm:Action"] Method["pm:Method"] Person["prov:Person"] DueDate["Due Date"] %%Concept-.->|generalizes|State %%State-.->|generalizes|Goal %%Goal-.->|generalizes|Target %%Issue-.->|generalizes|Goal State-.->|specializes|Concept Target-.->|specializes|Goal Goal-.->|specializes|Issue Goal-.->|specializes|State %%Position-.->|generalizes|Task Task-.->|specializes|Position Action-.->|specializes|Event Task-.->|specializes|Action Method-.->|specializes|Action Task-->|achieves|Goal Task-->|status|State Task-->|method|Method Task-->|recipient|Person Task-->|responsible|Person Task-->|subtask|Task Target-->|initiates|Task Target-->|anchors|Goal Target-->|due|DueDate Target-->|budget|Budget Agent-->|desires|Goal Person-->|specializes|Agent Action-->|dependency|State Action-->|outcome|State Action-->|context|State Action-->|variant|Action Action-->|performer|Person Method x-.-x|disjoint with| State Action x-.-x|disjoint with| State ```