Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions eiffel-vocabulary/EiffelActivityTriggeredEvent.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ __Type:__ String
__Required:__ Yes
__Description:__ The name of the activity. Uniqueness is not required or checked, but is useful.

### data.category
__Type:__ String
### data.categories
__Type:__ String[]
__Required:__ No
__Description:__ The category of the activity. This can be used to group multiple similar activities for analysis and visualization purposes. Example usage is to label the similar but unique build activities of all the components of system X as "System X Component Build" (whereas the name would be e.g. "System X Component Y Build").
__Description:__ Any categorization of the activity. This can be used to group multiple similar activities for analysis and visualization purposes. Example usage is to label the similar but unique build activities of all the components of system X as "System X Component Build" (whereas the name would be e.g. "System X Component Y Build").

### data.triggers
__Type:__ Object[]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
},
"data": {
"name": "Component X Build",
"category": "Component Build",
"categories": [
"Component Build"
],
"triggers": [
{
"type": "MANUAL",
Expand Down
4 changes: 3 additions & 1 deletion examples/events/EiffelActivityTriggeredEvent/simple.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
},
"data": {
"name": "Component X Build",
"category": "Component Build",
"categories": [
"Component Build"
],
"triggers": [
{
"type": "MANUAL",
Expand Down
7 changes: 5 additions & 2 deletions schemas/EiffelActivityTriggeredEvent.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,11 @@
"name": {
"type": "string"
},
"category": {
"type": "string"
"categories": {
"type": "array",
"items": {
"type": "string"
}
},
"triggers": {
"type": "array",
Expand Down