Skip to content

Commit

Permalink
Add relations in Decision.md (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenejac committed Jun 3, 2024
1 parent 3a6a507 commit 8f2b8e5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
4 changes: 2 additions & 2 deletions diagrams/core.puml
Original file line number Diff line number Diff line change
Expand Up @@ -592,11 +592,11 @@
!endsub

!startsub Decision
"Decision" -u-> "0..*" "Agent" : make <
"Decision" -u-> "0..*" "Agent" : made <
!endsub

!startsub Evaluation_Outcome
"Evaluation_Outcome" -d-> "0..1" "Decision" : form the basis for >
"Evaluation_Outcome" -d-> "0..1" "Decision" : provides basis for >
!endsub

!startsub Contribution_to_Evaluation_Outcome
Expand Down
3 changes: 3 additions & 0 deletions entities/Agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ contacts : List<[Contact_Information](../datatypes/Contact_Information.md)>

<a name="rel__is-author-of">is-author-of</a> / [has-author](../entities/Textual_Document.md#user-content-rel__has-author) : An Agent can be the author of any number of [Textual Documents](../entities/Textual_Document.md).

<a name="rel__made">made</a> / [made-by](../entities/Decision.md#user-content-rel__made-by) : An Agent can make a [Decision](../entities/Decision.md) on Resource Request based or not on Evaluation Outcomes.


## Illustrative Diagram
![The Agent diagram](../diagrams/agent.svg)

Expand Down
17 changes: 11 additions & 6 deletions entities/Decision.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
# Evaluation Outcome
# Decision

## Definition

The conclusions from considering an Application.
The conclusions from considering a [Resource Request](../entities/Resource_Request.md).

## Usage notes

When some resource is requested, a Decision should be made. That decision might be documented by a [Document](../entities/Document.md) and can be based on some kind of process which results in an [Evaluation Outcome](../entities/Evaluation_Outcome.md).

## Attributes

date : [Date](../datatypes/Date.md)

## Relationships

<a name="rel__is-expressed-by">is-expressed-by</a> / [presents-decision](../entities/Document.md#user-content-rel__presents-decision) : A Decision can be expressed in a [Document](../entities/Document.md).
<a name="rel__is-expressed-in">is-expressed-in</a> / [presents-decision](../entities/Document.md#user-content-rel__presents-decision) : A Decision can be expressed in a [Document](../entities/Document.md).

<a name="rel__based-on">based-on</a> / [provides-basis-for](../entities/Evaluation_Outcome.md#user-content-rel__provides-basis-for) : A Decision can be based on any number of [Evaluation Outcomes](../entities/Evaluation_Outcome.md).

---
## Matches
<a name="rel__is-a-decision-on">is-a-decision-on</a> / [has-decision](../entities/Resource_Request.md#user-content-rel__has-decision) : A Resource Request can have a [Decision](../entities/Decision.md) about accepting or refusing request made by addressee.

## References
<a name="rel__made-by">made-by</a> / [made](../entities/Agent.md#user-content-rel__made) : A Decision about accepting or refusing request can be made by any number of [Agents](../entities/Agent.md).

0 comments on commit 8f2b8e5

Please sign in to comment.