Skip to content

Commit

Permalink
Add relations between Resource Request and Evaluation outcome and Dec…
Browse files Browse the repository at this point in the history
…ision (#26)
  • Loading branch information
chenejac committed Jun 3, 2024
1 parent f99b209 commit 3a6a507
Show file tree
Hide file tree
Showing 3 changed files with 12 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 @@ -568,7 +568,7 @@
!endsub

!startsub Evaluation_Outcome
"Application" "0..1" -- "0..*" "Evaluation_Outcome" : of <
"Resource_Request" "0..1" -- "0..*" "Evaluation_Outcome" : of <
!endsub

!startsub Call_for_Applications
Expand All @@ -580,7 +580,7 @@
!endsub

!startsub Decision
"Application" -r- "0..1" "Decision" : on <
"Resource_Request" -r- "0..1" "Decision" : on <
!endsub

!startsub Decision
Expand Down
6 changes: 0 additions & 6 deletions entities/Application.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ A formal request to be considered for a position or to be allowed to do or have
## Usage notes
Applications reference an explicit [Call for Applications](../entities/Call_for_Applications.md) (e.g. a funding call or call for nominations for an award).

Applications, when submitted, typically enter some kind of process which results in an [Evaluation Outcome](../entities/Evaluation_Outcome.md).
Based on one or more such outcomes, a [Decision](../entities/Decision.md) is made.

This entity represents the act of applying rather than the application [Document](../entities/Document.md).

Subclasses specify the nature of the application as well the details.
An application typically contains the request (what is proposed to happen) and its justification (what benefits it would bring).

Expand All @@ -24,7 +19,6 @@ Those of [Resource Request](../entities/Resource_Request.md).

<a name="rel__in-response-to">in-response-to</a> / [has-application](../entities/Call_for_Applications.md#user-content-rel__has-application) : An Application can optionally reference the [Call for Applications](../entities/Call_for_Applications.md) it responds to.


---

## References
Expand Down
10 changes: 10 additions & 0 deletions entities/Resource_Request.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ Examples include job applications, grant proposals (i.e. requests for funding),

Some resource requests might be more formal representing formal applications referencing an explicit [Call for Applications](../entities/Call_for_Applications.md) (e.g. a funding call or call for nominations for an award), while other resource request are based on an implicit invitation (e.g. a manuscript submitted to a journal).

Resource requests, when submitted, typically enter some kind of process which results in an [Evaluation Outcome](../entities/Evaluation_Outcome.md).
Based on one or more such outcomes, a [Decision](../entities/Decision.md) is made.

This entity represents the act of applying rather than the application [Document](../entities/Document.md).


## Attributes
request date: [Date](../datatypes/Date.md)

Expand All @@ -23,3 +29,7 @@ request date: [Date](../datatypes/Date.md)
<a name="rel__is-described-by">is-described-by</a> / [describes-resource-request](../entities/Document.md#user-content-rel__describes-resource-request) : A Resource Request can optionally reference its contents, the [Document](../entities/Document.md) that details the resource request.

<a name="rel__revises">revises</a> : A Resource Request can revise the another [Resource Request](../entities/Document.md) that wasn't successful in the previous round.

<a name="rel__has-evaluation-outcome">has-evaluation-outcome</a> / [is-an-evaluation-outcome-of](../entities/Evaluation_Outcome.md#user-content-rel__is-an-evaluation-outcome-of) : A Resource Request can have some kind of process which results in an [Evaluation Outcome](../entities/Evaluation_Outcome.md).

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

0 comments on commit 3a6a507

Please sign in to comment.