Skip to content

Instantly share code, notes, and snippets.

@dwinston
Last active February 6, 2023 17:30
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 dwinston/fc18c5b7fb372aa9d516e0f5be7f3680 to your computer and use it in GitHub Desktop.
Save dwinston/fc18c5b7fb372aa9d516e0f5be7f3680 to your computer and use it in GitHub Desktop.
IBIS Lite
%%{ 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"]

    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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment