Skip to content

Commit

Permalink
required means required input
Browse files Browse the repository at this point in the history
  • Loading branch information
HeikoTheissen committed Sep 4, 2023
1 parent 780c62a commit b80c8e1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions vocabularies/Common.json
Original file line number Diff line number Diff line change
Expand Up @@ -1406,14 +1406,15 @@
},
"RecommendationsRoleType": {
"$Kind": "EnumType",
"$UnderlyingType": "Edm.Byte",
"$IsFlags": true,
"@Common.Experimental": true,
"Input": 1,
"[email protected]": "The property is input for some recommendation",
"Output": 2,
"[email protected]": "The property or parameter is the target of some recommendation",
"Required": 4,
"[email protected]": "The property is mandatory for recommendations to be requested"
"Required": 5,
"[email protected]": "The property is mandatory input for recommendations to be requested"
}
}
}
2 changes: 1 addition & 1 deletion vocabularies/Common.md
Original file line number Diff line number Diff line change
Expand Up @@ -509,4 +509,4 @@ Flag Member|Value|Description
:-----|----:|:----------
[Input](./Common.xml#L1562:~:text=<EnumType%20Name="-,RecommendationsRoleType,-")|1|The property is input for some recommendation
[Output](./Common.xml#L1565:~:text=<EnumType%20Name="-,RecommendationsRoleType,-")|2|The property or parameter is the target of some recommendation
[Required](./Common.xml#L1568:~:text=<EnumType%20Name="-,RecommendationsRoleType,-")|4|The property is mandatory for recommendations to be requested
[Required](./Common.xml#L1568:~:text=<EnumType%20Name="-,RecommendationsRoleType,-")|5|The property is mandatory input for recommendations to be requested
6 changes: 3 additions & 3 deletions vocabularies/Common.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1557,16 +1557,16 @@ The template function itself cannot be invoked.</String>
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Role of this property or parameter regarding AI-based recommendations" />
</Term>
<EnumType Name="RecommendationsRoleType" IsFlags="true">
<EnumType Name="RecommendationsRoleType" UnderlyingType="Edm.Byte" IsFlags="true">
<Annotation Term="Common.Experimental" />
<Member Name="Input" Value="1">
<Annotation Term="Core.Description" String="The property is input for some recommendation" />
</Member>
<Member Name="Output" Value="2">
<Annotation Term="Core.Description" String="The property or parameter is the target of some recommendation" />
</Member>
<Member Name="Required" Value="4">
<Annotation Term="Core.Description" String="The property is mandatory for recommendations to be requested" />
<Member Name="Required" Value="5">
<Annotation Term="Core.Description" String="The property is mandatory input for recommendations to be requested" />
</Member>
</EnumType>
</Schema>
Expand Down

0 comments on commit b80c8e1

Please sign in to comment.