@twin.org/standards-w3c-odrl 0.0.2-next.5 → 0.0.2-next.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/cjs/index.cjs +335 -613
  2. package/dist/esm/index.mjs +336 -613
  3. package/dist/types/index.d.ts +0 -2
  4. package/dist/types/models/IOdrlAction.d.ts +3 -2
  5. package/dist/types/models/IOdrlAgreement.d.ts +1 -0
  6. package/dist/types/models/IOdrlAsset.d.ts +1 -0
  7. package/dist/types/models/IOdrlAssetCollection.d.ts +1 -0
  8. package/dist/types/models/IOdrlConstraint.d.ts +1 -0
  9. package/dist/types/models/IOdrlDuty.d.ts +1 -0
  10. package/dist/types/models/IOdrlLogicalConstraint.d.ts +1 -0
  11. package/dist/types/models/IOdrlOffer.d.ts +1 -0
  12. package/dist/types/models/IOdrlParty.d.ts +1 -0
  13. package/dist/types/models/IOdrlPartyCollection.d.ts +1 -0
  14. package/dist/types/models/IOdrlPermission.d.ts +1 -0
  15. package/dist/types/models/IOdrlPolicy.d.ts +2 -1
  16. package/dist/types/models/IOdrlProhibition.d.ts +1 -0
  17. package/dist/types/models/IOdrlRule.d.ts +2 -1
  18. package/dist/types/models/IOdrlSet.d.ts +1 -0
  19. package/dist/types/models/types/actionType.d.ts +116 -97
  20. package/dist/types/models/types/odrlTypes.d.ts +0 -4
  21. package/docs/changelog.md +30 -0
  22. package/docs/reference/index.md +0 -3
  23. package/docs/reference/interfaces/IOdrlAction.md +3 -2
  24. package/docs/reference/interfaces/IOdrlAgreement.md +2 -1
  25. package/docs/reference/interfaces/IOdrlAsset.md +1 -0
  26. package/docs/reference/interfaces/IOdrlAssetCollection.md +1 -0
  27. package/docs/reference/interfaces/IOdrlConstraint.md +1 -0
  28. package/docs/reference/interfaces/IOdrlDuty.md +2 -1
  29. package/docs/reference/interfaces/IOdrlLogicalConstraint.md +1 -0
  30. package/docs/reference/interfaces/IOdrlOffer.md +2 -1
  31. package/docs/reference/interfaces/IOdrlParty.md +1 -0
  32. package/docs/reference/interfaces/IOdrlPartyCollection.md +1 -0
  33. package/docs/reference/interfaces/IOdrlPermission.md +2 -1
  34. package/docs/reference/interfaces/IOdrlPolicy.md +2 -1
  35. package/docs/reference/interfaces/IOdrlProhibition.md +2 -1
  36. package/docs/reference/interfaces/IOdrlRule.md +2 -1
  37. package/docs/reference/interfaces/IOdrlSet.md +2 -1
  38. package/docs/reference/variables/ActionType.md +168 -141
  39. package/docs/reference/variables/OdrlTypes.md +0 -6
  40. package/package.json +3 -3
  41. package/dist/types/models/IOdrlPolicyMetadata.d.ts +0 -58
  42. package/dist/types/models/types/uriActionType.d.ts +0 -215
  43. package/docs/reference/interfaces/IOdrlPolicyMetadata.md +0 -86
  44. package/docs/reference/type-aliases/UriActionType.md +0 -6
  45. package/docs/reference/variables/UriActionType.md +0 -314
@@ -3,6 +3,7 @@
3
3
  Interface for ODRL Asset Collections.
4
4
  An AssetCollection is a single resource representing a set of member resources,
5
5
  where all members of the set will be the subject of the Rule.
6
+ https://www.w3.org/TR/odrl-model/#asset
6
7
 
7
8
  ## Extends
8
9
 
@@ -1,6 +1,7 @@
1
1
  # Interface: IOdrlConstraint
2
2
 
3
3
  Interface for ODRL Constraints.
4
+ https://www.w3.org/TR/odrl-model/#constraint
4
5
 
5
6
  ## Extends
6
7
 
@@ -3,6 +3,7 @@
3
3
  Interface for Duty Rules.
4
4
  A Duty is the obligation to exercise an action, with all refinements satisfied.
5
5
  A Duty is fulfilled if all constraints are satisfied and if its action has been exercised.
6
+ https://www.w3.org/TR/odrl-model/#duty
6
7
 
7
8
  ## Extends
8
9
 
@@ -73,7 +74,7 @@ Optional unique identifier for the rule.
73
74
 
74
75
  ### action?
75
76
 
76
- > `optional` **action**: [`ActionType`](../type-aliases/ActionType.md) \| [`IOdrlAction`](IOdrlAction.md) \| ActionType \| IOdrlAction[]
77
+ > `optional` **action**: `string` \| [`IOdrlAction`](IOdrlAction.md) \| (`string` \| [`IOdrlAction`](IOdrlAction.md))[]
77
78
 
78
79
  The action associated with the rule.
79
80
 
@@ -3,6 +3,7 @@
3
3
  Interface for ODRL Logical Constraints.
4
4
  A Logical Constraint compares two or more existing Constraints by one logical operator.
5
5
  If the comparison returns a logical match, then the Logical Constraint is satisfied.
6
+ https://www.w3.org/TR/odrl-model/#constraint-logical
6
7
 
7
8
  ## Extends
8
9
 
@@ -2,6 +2,7 @@
2
2
 
3
3
  Interface representing an ODRL Offer.
4
4
  An Offer requires an assigner (the party making the offer).
5
+ https://www.w3.org/TR/odrl-model/#policy-offer
5
6
 
6
7
  ## Extends
7
8
 
@@ -104,7 +105,7 @@ The target asset for the rule.
104
105
 
105
106
  ### action?
106
107
 
107
- > `optional` **action**: [`ActionType`](../type-aliases/ActionType.md) \| [`IOdrlAction`](IOdrlAction.md) \| ActionType \| IOdrlAction[]
108
+ > `optional` **action**: `string` \| [`IOdrlAction`](IOdrlAction.md) \| (`string` \| [`IOdrlAction`](IOdrlAction.md))[]
108
109
 
109
110
  The action associated with the rule.
110
111
 
@@ -1,6 +1,7 @@
1
1
  # Interface: IOdrlParty
2
2
 
3
3
  Interface for ODRL Parties.
4
+ https://www.w3.org/TR/odrl-model/#party
4
5
 
5
6
  ## Extends
6
7
 
@@ -2,6 +2,7 @@
2
2
 
3
3
  Interface for ODRL Party Collections.
4
4
  A PartyCollection identifies a collection of entities and is a subclass of Party.
5
+ https://www.w3.org/TR/odrl-model/#party
5
6
 
6
7
  ## Extends
7
8
 
@@ -3,6 +3,7 @@
3
3
  Interface for Permission Rules.
4
4
  A Permission allows an action to be exercised on an Asset
5
5
  if all constraints are satisfied and if all duties are fulfilled.
6
+ https://www.w3.org/TR/odrl-model/#permission
6
7
 
7
8
  ## Extends
8
9
 
@@ -37,7 +38,7 @@ Optional unique identifier for the rule.
37
38
 
38
39
  ### action?
39
40
 
40
- > `optional` **action**: [`ActionType`](../type-aliases/ActionType.md) \| [`IOdrlAction`](IOdrlAction.md) \| ActionType \| IOdrlAction[]
41
+ > `optional` **action**: `string` \| [`IOdrlAction`](IOdrlAction.md) \| (`string` \| [`IOdrlAction`](IOdrlAction.md))[]
41
42
 
42
43
  The action associated with the rule.
43
44
 
@@ -1,6 +1,7 @@
1
1
  # Interface: IOdrlPolicy
2
2
 
3
3
  Interface representing an ODRL Policy.
4
+ https://www.w3.org/TR/odrl-model/#policy
4
5
 
5
6
  ## Extends
6
7
 
@@ -90,7 +91,7 @@ The target asset for the rule.
90
91
 
91
92
  ### action?
92
93
 
93
- > `optional` **action**: [`ActionType`](../type-aliases/ActionType.md) \| [`IOdrlAction`](IOdrlAction.md) \| ActionType \| IOdrlAction[]
94
+ > `optional` **action**: `string` \| [`IOdrlAction`](IOdrlAction.md) \| (`string` \| [`IOdrlAction`](IOdrlAction.md))[]
94
95
 
95
96
  The action associated with the rule.
96
97
 
@@ -1,6 +1,7 @@
1
1
  # Interface: IOdrlProhibition
2
2
 
3
3
  Interface for Prohibition Rules.
4
+ https://www.w3.org/TR/odrl-model/#prohibition
4
5
 
5
6
  ## Extends
6
7
 
@@ -34,7 +35,7 @@ Optional unique identifier for the rule.
34
35
 
35
36
  ### action?
36
37
 
37
- > `optional` **action**: [`ActionType`](../type-aliases/ActionType.md) \| [`IOdrlAction`](IOdrlAction.md) \| ActionType \| IOdrlAction[]
38
+ > `optional` **action**: `string` \| [`IOdrlAction`](IOdrlAction.md) \| (`string` \| [`IOdrlAction`](IOdrlAction.md))[]
38
39
 
39
40
  The action associated with the rule.
40
41
 
@@ -1,6 +1,7 @@
1
1
  # Interface: IOdrlRule
2
2
 
3
3
  Base interface for ODRL Rules.
4
+ https://www.w3.org/TR/odrl-model/#rule
4
5
 
5
6
  ## Extends
6
7
 
@@ -28,7 +29,7 @@ Optional unique identifier for the rule.
28
29
 
29
30
  ### action?
30
31
 
31
- > `optional` **action**: [`ActionType`](../type-aliases/ActionType.md) \| [`IOdrlAction`](IOdrlAction.md) \| ActionType \| IOdrlAction[]
32
+ > `optional` **action**: `string` \| [`IOdrlAction`](IOdrlAction.md) \| (`string` \| [`IOdrlAction`](IOdrlAction.md))[]
32
33
 
33
34
  The action associated with the rule.
34
35
 
@@ -2,6 +2,7 @@
2
2
 
3
3
  Interface representing an ODRL Set.
4
4
  A Set is a basic policy type with no specific party requirements.
5
+ https://www.w3.org/TR/odrl-model/#policy-set
5
6
 
6
7
  ## Extends
7
8
 
@@ -92,7 +93,7 @@ The target asset for the rule.
92
93
 
93
94
  ### action?
94
95
 
95
- > `optional` **action**: [`ActionType`](../type-aliases/ActionType.md) \| [`IOdrlAction`](IOdrlAction.md) \| ActionType \| IOdrlAction[]
96
+ > `optional` **action**: `string` \| [`IOdrlAction`](IOdrlAction.md) \| (`string` \| [`IOdrlAction`](IOdrlAction.md))[]
96
97
 
97
98
  The action associated with the rule.
98
99
 
@@ -11,304 +11,331 @@ Simple action types (for direct string usage)
11
11
 
12
12
  > `readonly` **Use**: `"use"` = `"use"`
13
13
 
14
- To use the Asset - actions that involve general usage by parties.
14
+ The act of using an asset, covering any general usage where ownership does not change.
15
+ This is the parent term for most permissions and prohibitions.
15
16
 
16
17
  ### Transfer
17
18
 
18
19
  > `readonly` **Transfer**: `"transfer"` = `"transfer"`
19
20
 
20
- To transfer the ownership to third parties.
21
-
22
- ### AcceptTracking
23
-
24
- > `readonly` **AcceptTracking**: `"acceptTracking"` = `"acceptTracking"`
25
-
26
- To accept that the use of the Asset may be tracked.
21
+ The act of transferring the ownership of an asset in perpetuity to a third party.
27
22
 
28
23
  ### Aggregate
29
24
 
30
25
  > `readonly` **Aggregate**: `"aggregate"` = `"aggregate"`
31
26
 
32
- To use the Asset or parts of it as part of a composite collection.
27
+ The act of using an asset (or parts of it) as part of a composite collection.
33
28
 
34
29
  ### Annotate
35
30
 
36
31
  > `readonly` **Annotate**: `"annotate"` = `"annotate"`
37
32
 
38
- To add explanatory notations/commentaries to the Asset without modifying the Asset in any other way.
33
+ The act of adding explanatory notations/commentaries to the asset.
39
34
 
40
35
  ### Anonymize
41
36
 
42
37
  > `readonly` **Anonymize**: `"anonymize"` = `"anonymize"`
43
38
 
44
- To anonymize all or parts of the Asset.
39
+ The act of anonymising all or parts of the asset, for example, to remove identifying particulars.
45
40
 
46
41
  ### Archive
47
42
 
48
43
  > `readonly` **Archive**: `"archive"` = `"archive"`
49
44
 
50
- To store the Asset (in a non-transient form).
51
-
52
- ### Attribute
53
-
54
- > `readonly` **Attribute**: `"attribute"` = `"attribute"`
55
-
56
- To attribute the use of the Asset.
57
-
58
- ### Attribution
59
-
60
- > `readonly` **Attribution**: `"attribution"` = `"attribution"`
61
-
62
- Credit be given to copyright holder and/or author.
63
-
64
- ### CommercialUse
65
-
66
- > `readonly` **CommercialUse**: `"commercialUse"` = `"commercialUse"`
67
-
68
- Exercising rights for commercial purposes.
69
-
70
- ### Compensate
71
-
72
- > `readonly` **Compensate**: `"compensate"` = `"compensate"`
73
-
74
- To compensate by transfer of some amount of value for using or selling the Asset.
45
+ The act of persistently storing the asset in a non-transient form.
75
46
 
76
47
  ### ConcurrentUse
77
48
 
78
49
  > `readonly` **ConcurrentUse**: `"concurrentUse"` = `"concurrentUse"`
79
50
 
80
- To create multiple copies of the Asset that are being concurrently used.
51
+ The act of multiple concurrent use of the asset.
81
52
 
82
- ### Delete
53
+ ### Commercialize
83
54
 
84
- > `readonly` **Delete**: `"delete"` = `"delete"`
55
+ > `readonly` **Commercialize**: `"commercialize"` = `"commercialize"`
85
56
 
86
- To permanently remove all copies of the Asset after it has been used.
57
+ The act of using the asset in a business environment where it may be traded for profit.
87
58
 
88
- ### Derive
59
+ ### Copy
89
60
 
90
- > `readonly` **Derive**: `"derive"` = `"derive"`
61
+ > `readonly` **Copy**: `"copy"` = `"copy"`
91
62
 
92
- To create a new derivative Asset from this Asset and to edit or modify the derivative.
63
+ The act of making an exact reproduction of the asset. Also identified as `reproduce`.
93
64
 
94
- ### DerivativeWorks
65
+ ### Derive
95
66
 
96
- > `readonly` **DerivativeWorks**: `"derivativeWorks"` = `"derivativeWorks"`
67
+ > `readonly` **Derive**: `"derive"` = `"derive"`
97
68
 
98
- Distribution of derivative works.
69
+ The act of creating a new derivative asset from the original and editing or modifying it.
99
70
 
100
71
  ### Digitize
101
72
 
102
73
  > `readonly` **Digitize**: `"digitize"` = `"digitize"`
103
74
 
104
- To produce a digital copy of (or otherwise digitize) the Asset from its analogue form.
75
+ The act of producing a digital copy of an asset from its analogue form.
105
76
 
106
77
  ### Display
107
78
 
108
79
  > `readonly` **Display**: `"display"` = `"display"`
109
80
 
110
- To create a static and transient rendition of an Asset.
81
+ The act of making a transient visible rendering of the asset, such as displaying an image on a screen.
82
+ Also identified as `present` in earlier versions.
111
83
 
112
84
  ### Distribute
113
85
 
114
86
  > `readonly` **Distribute**: `"distribute"` = `"distribute"`
115
87
 
116
- To supply the Asset to third-parties.
117
-
118
- ### Distribution
119
-
120
- > `readonly` **Distribution**: `"distribution"` = `"distribution"`
121
-
122
- Distribution, public display, and publicly performance.
123
-
124
- ### EnsureExclusivity
125
-
126
- > `readonly` **EnsureExclusivity**: `"ensureExclusivity"` = `"ensureExclusivity"`
127
-
128
- To ensure that the Rule on the Asset is exclusive.
88
+ The act of publicly distributing, displaying, or performing the asset.
129
89
 
130
90
  ### Execute
131
91
 
132
92
  > `readonly` **Execute**: `"execute"` = `"execute"`
133
93
 
134
- To run the computer program Asset.
94
+ The act of executing the asset, such as running a program or application.
135
95
 
136
96
  ### Extract
137
97
 
138
98
  > `readonly` **Extract**: `"extract"` = `"extract"`
139
99
 
140
- To extract parts of the Asset and to use it as a new Asset.
100
+ The act of extracting (replicating) unchanged parts of the asset for reuse.
141
101
 
142
- ### Give
102
+ ### ExtractChar
143
103
 
144
- > `readonly` **Give**: `"give"` = `"give"`
104
+ > `readonly` **ExtractChar**: `"extractChar"` = `"extractChar"`
145
105
 
146
- To transfer the ownership without compensation and while deleting the original asset.
106
+ The act of extracting unchanged character(s) from the asset.
147
107
 
148
- ### GrantUse
108
+ ### ExtractWord
149
109
 
150
- > `readonly` **GrantUse**: `"grantUse"` = `"grantUse"`
110
+ > `readonly` **ExtractWord**: `"extractWord"` = `"extractWord"`
151
111
 
152
- To grant the use of the Asset to third parties.
112
+ The act of extracting unchanged word(s) from the asset.
153
113
 
154
- ### Include
114
+ ### ExtractPage
155
115
 
156
- > `readonly` **Include**: `"include"` = `"include"`
116
+ > `readonly` **ExtractPage**: `"extractPage"` = `"extractPage"`
157
117
 
158
- To include other related assets in the Asset.
118
+ The act of extracting unchanged page(s) from the asset.
159
119
 
160
120
  ### Index
161
121
 
162
122
  > `readonly` **Index**: `"index"` = `"index"`
163
123
 
164
- To record the Asset in an index.
165
-
166
- ### Inform
167
-
168
- > `readonly` **Inform**: `"inform"` = `"inform"`
169
-
170
- To inform that an action has been performed on or in relation to the Asset.
124
+ The act of recording the asset in an index, for example, a search engine database.
171
125
 
172
126
  ### Install
173
127
 
174
128
  > `readonly` **Install**: `"install"` = `"install"`
175
129
 
176
- To load the computer program Asset onto a storage device.
130
+ The act of loading the asset onto a storage device ready for operation.
177
131
 
178
- ### Modify
132
+ ### License
179
133
 
180
- > `readonly` **Modify**: `"modify"` = `"modify"`
134
+ > `readonly` **License**: `"license"` = `"license"`
181
135
 
182
- To change existing content of the Asset without creating a new asset.
136
+ The act of granting the use of the asset to third parties. Also identified as `sublicense` in earlier versions.
183
137
 
184
- ### Move
138
+ ### Lease
185
139
 
186
- > `readonly` **Move**: `"move"` = `"move"`
140
+ > `readonly` **Lease**: `"lease"` = `"lease"`
187
141
 
188
- To move the Asset from one digital location to another including deleting the original copy.
142
+ The act of making the asset available to a third-party for a fixed period with exchange of value.
189
143
 
190
- ### NextPolicy
144
+ ### Lend
191
145
 
192
- > `readonly` **NextPolicy**: `"nextPolicy"` = `"nextPolicy"`
146
+ > `readonly` **Lend**: `"lend"` = `"lend"`
193
147
 
194
- To grant the specified Policy to a third party for their use of the Asset.
148
+ The act of making the asset available to a third-party for a fixed period without exchange of value.
195
149
 
196
- ### Notice
150
+ ### Modify
197
151
 
198
- > `readonly` **Notice**: `"notice"` = `"notice"`
152
+ > `readonly` **Modify**: `"modify"` = `"modify"`
199
153
 
200
- Copyright and license notices be kept intact.
154
+ The act of updating existing content of the asset without creating a new one.
201
155
 
202
- ### ObtainConsent
156
+ ### Move
203
157
 
204
- > `readonly` **ObtainConsent**: `"obtainConsent"` = `"obtainConsent"`
158
+ > `readonly` **Move**: `"move"` = `"move"`
205
159
 
206
- To obtain verifiable consent to perform the requested action.
160
+ The act of moving the asset from one digital location to another and deleting the original.
207
161
 
208
162
  ### Play
209
163
 
210
164
  > `readonly` **Play**: `"play"` = `"play"`
211
165
 
212
- To create a sequential and transient rendition of an Asset.
166
+ The act of rendering the asset into audio and/or video form.
213
167
 
214
- ### Present
168
+ ### Preview
215
169
 
216
- > `readonly` **Present**: `"present"` = `"present"`
170
+ > `readonly` **Preview**: `"preview"` = `"preview"`
217
171
 
218
- To publicly perform the Asset.
172
+ The act of providing a short preview of the asset.
219
173
 
220
174
  ### Print
221
175
 
222
176
  > `readonly` **Print**: `"print"` = `"print"`
223
177
 
224
- To create a tangible and permanent rendition of an Asset.
178
+ The act of rendering the asset onto paper or hard copy form.
225
179
 
226
180
  ### Read
227
181
 
228
182
  > `readonly` **Read**: `"read"` = `"read"`
229
183
 
230
- To obtain data from the Asset.
184
+ The act of obtaining data from the asset, such as a database record.
231
185
 
232
- ### Reproduce
186
+ ### SecondaryUse
233
187
 
234
- > `readonly` **Reproduce**: `"reproduce"` = `"reproduce"`
188
+ > `readonly` **SecondaryUse**: `"secondaryUse"` = `"secondaryUse"`
235
189
 
236
- To make duplicate copies of the Asset in any material form.
190
+ The act of using the asset for a purpose other than its intended purpose.
237
191
 
238
- ### Reproduction
192
+ ### Share
239
193
 
240
- > `readonly` **Reproduction**: `"reproduction"` = `"reproduction"`
194
+ > `readonly` **Share**: `"share"` = `"share"`
241
195
 
242
- Making multiple copies.
196
+ The act of non-commercial reproduction and distribution of the asset to third-parties.
243
197
 
244
- ### ReviewPolicy
198
+ ### AdhocShare
245
199
 
246
- > `readonly` **ReviewPolicy**: `"reviewPolicy"` = `"reviewPolicy"`
200
+ > `readonly` **AdhocShare**: `"adhocShare"` = `"adhocShare"`
201
+
202
+ The act of sharing the asset to parties in close proximity to the owner.
203
+
204
+ ### ShareAlike
205
+
206
+ > `readonly` **ShareAlike**: `"shareAlike"` = `"shareAlike"`
207
+
208
+ The act of distributing any derivative asset under the same terms as the original.
209
+
210
+ ### TextToSpeech
211
+
212
+ > `readonly` **TextToSpeech**: `"textToSpeech"` = `"textToSpeech"`
213
+
214
+ The act of a system reading the text of the asset out loud.
215
+
216
+ ### Translate
217
+
218
+ > `readonly` **Translate**: `"translate"` = `"translate"`
219
+
220
+ The act of translating the asset's original language into another, creating a new derivative asset.
221
+
222
+ ### Transform
223
+
224
+ > `readonly` **Transform**: `"transform"` = `"transform"`
225
+
226
+ The act of transforming the asset into a different digital format.
227
+
228
+ ### Uninstall
229
+
230
+ > `readonly` **Uninstall**: `"uninstall"` = `"uninstall"`
231
+
232
+ The act of unloading the asset from a storage device, making it no longer accessible.
233
+
234
+ ### Watermark
235
+
236
+ > `readonly` **Watermark**: `"watermark"` = `"watermark"`
247
237
 
248
- To review the Policy applicable to the Asset.
238
+ The act of applying a watermark to the asset.
239
+
240
+ ### Write
241
+
242
+ > `readonly` **Write**: `"write"` = `"write"`
243
+
244
+ The act of writing to or modifying the asset.
245
+
246
+ ### Append
247
+
248
+ > `readonly` **Append**: `"append"` = `"append"`
249
+
250
+ The act of adding to the end of an asset, for example, a database record.
251
+ Also identified as `appendTo`.
252
+
253
+ ### Give
254
+
255
+ > `readonly` **Give**: `"give"` = `"give"`
256
+
257
+ The act of giving away the asset in perpetuity without exchange of value, requiring the original to be deleted.
249
258
 
250
259
  ### Sell
251
260
 
252
261
  > `readonly` **Sell**: `"sell"` = `"sell"`
253
262
 
254
- To transfer the ownership with compensation and while deleting the original asset.
263
+ The act of trading the asset in exchange for compensation, requiring the original to be deleted.
255
264
 
256
- ### ShareAlike
265
+ ### AcceptTracking
257
266
 
258
- > `readonly` **ShareAlike**: `"shareAlike"` = `"shareAlike"`
267
+ > `readonly` **AcceptTracking**: `"acceptTracking"` = `"acceptTracking"`
268
+
269
+ The act of accepting that the use of the asset may be tracked by a specified party.
270
+
271
+ ### AttachPolicy
259
272
 
260
- Derivative works be licensed under the same terms or compatible terms.
273
+ > `readonly` **AttachPolicy**: `"attachPolicy"` = `"attachPolicy"`
261
274
 
262
- ### Sharing
275
+ The act of keeping a policy notice attached to the asset.
263
276
 
264
- > `readonly` **Sharing**: `"sharing"` = `"sharing"`
277
+ ### AttachSource
265
278
 
266
- Permits commercial derivatives, but only non-commercial distribution.
279
+ > `readonly` **AttachSource**: `"attachSource"` = `"attachSource"`
267
280
 
268
- ### SourceCode
281
+ The act of attaching the source of the asset and its derivatives.
269
282
 
270
- > `readonly` **SourceCode**: `"sourceCode"` = `"sourceCode"`
283
+ ### Attribute
271
284
 
272
- Source code must be provided when exercising some rights.
285
+ > `readonly` **Attribute**: `"attribute"` = `"attribute"`
273
286
 
274
- ### Stream
287
+ The act of attributing the asset to a specified party.
275
288
 
276
- > `readonly` **Stream**: `"stream"` = `"stream"`
289
+ ### Compensate
277
290
 
278
- To deliver the Asset in real-time.
291
+ > `readonly` **Compensate**: `"compensate"` = `"compensate"`
279
292
 
280
- ### Synchronize
293
+ The act of compensating a specified party by some amount for use of the asset.
281
294
 
282
- > `readonly` **Synchronize**: `"synchronize"` = `"synchronize"`
295
+ ### Delete
283
296
 
284
- To use the Asset in timed relations with media elements of another Asset.
297
+ > `readonly` **Delete**: `"delete"` = `"delete"`
285
298
 
286
- ### TextToSpeech
299
+ The act of permanently removing all copies of the asset.
287
300
 
288
- > `readonly` **TextToSpeech**: `"textToSpeech"` = `"textToSpeech"`
301
+ ### EnsureExclusivity
289
302
 
290
- To have a text Asset read out loud.
303
+ > `readonly` **EnsureExclusivity**: `"ensureExclusivity"` = `"ensureExclusivity"`
291
304
 
292
- ### Transform
305
+ The act of requiring the assigner to ensure a permission is exclusive to the assignee.
293
306
 
294
- > `readonly` **Transform**: `"transform"` = `"transform"`
307
+ ### Include
295
308
 
296
- To convert the Asset into a different format.
309
+ > `readonly` **Include**: `"include"` = `"include"`
297
310
 
298
- ### Translate
311
+ The act of including other related assets to fulfil the function.
299
312
 
300
- > `readonly` **Translate**: `"translate"` = `"translate"`
313
+ ### Inform
301
314
 
302
- To translate the Asset into another natural language.
315
+ > `readonly` **Inform**: `"inform"` = `"inform"`
303
316
 
304
- ### Uninstall
317
+ The act of informing a party that an action has been performed on the asset.
305
318
 
306
- > `readonly` **Uninstall**: `"uninstall"` = `"uninstall"`
319
+ ### NextPolicy
307
320
 
308
- To unload and delete the computer program Asset.
321
+ > `readonly` **NextPolicy**: `"nextPolicy"` = `"nextPolicy"`
309
322
 
310
- ### Watermark
323
+ The act of specifying a policy for third-party use of the asset.
311
324
 
312
- > `readonly` **Watermark**: `"watermark"` = `"watermark"`
325
+ ### ObtainConsent
326
+
327
+ > `readonly` **ObtainConsent**: `"obtainConsent"` = `"obtainConsent"`
328
+
329
+ The act of requiring explicit consent from a party to perform an action.
330
+
331
+ ### Pay
332
+
333
+ > `readonly` **Pay**: `"pay"` = `"pay"`
334
+
335
+ The act of paying a financial amount to a party for use of the asset.
336
+
337
+ ### ReviewPolicy
338
+
339
+ > `readonly` **ReviewPolicy**: `"reviewPolicy"` = `"reviewPolicy"`
313
340
 
314
- To apply a watermark to the Asset.
341
+ The act of performing a manual review of the terms associated with the asset.
@@ -101,9 +101,3 @@ LogicalConstraint type.
101
101
  > `readonly` **ContextType**: `"ContextType"` = `"ContextType"`
102
102
 
103
103
  ContextType.
104
-
105
- ### PolicyMetadata
106
-
107
- > `readonly` **PolicyMetadata**: `"PolicyMetadata"` = `"PolicyMetadata"`
108
-
109
- PolicyMetadata type.