@twin.org/standards-w3c-odrl 0.0.1 → 0.0.2-next.10

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 (55) hide show
  1. package/dist/cjs/index.cjs +448 -726
  2. package/dist/esm/index.mjs +449 -726
  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/odrlContexts.d.ts +4 -4
  20. package/dist/types/models/types/actionType.d.ts +116 -97
  21. package/dist/types/models/types/odrlTypes.d.ts +0 -4
  22. package/docs/changelog.md +160 -0
  23. package/docs/reference/index.md +0 -3
  24. package/docs/reference/interfaces/IOdrlAction.md +4 -3
  25. package/docs/reference/interfaces/IOdrlAgreement.md +3 -2
  26. package/docs/reference/interfaces/IOdrlAsset.md +2 -1
  27. package/docs/reference/interfaces/IOdrlAssetCollection.md +2 -1
  28. package/docs/reference/interfaces/IOdrlConstraint.md +2 -1
  29. package/docs/reference/interfaces/IOdrlDuty.md +3 -2
  30. package/docs/reference/interfaces/IOdrlLogicalConstraint.md +2 -1
  31. package/docs/reference/interfaces/IOdrlOffer.md +3 -2
  32. package/docs/reference/interfaces/IOdrlParty.md +2 -1
  33. package/docs/reference/interfaces/IOdrlPartyCollection.md +2 -1
  34. package/docs/reference/interfaces/IOdrlPermission.md +3 -2
  35. package/docs/reference/interfaces/IOdrlPolicy.md +3 -2
  36. package/docs/reference/interfaces/IOdrlProhibition.md +3 -2
  37. package/docs/reference/interfaces/IOdrlRule.md +3 -2
  38. package/docs/reference/interfaces/IOdrlSet.md +3 -2
  39. package/docs/reference/variables/ActionType.md +169 -142
  40. package/docs/reference/variables/ConflictStrategyType.md +1 -1
  41. package/docs/reference/variables/LeftOperandType.md +1 -1
  42. package/docs/reference/variables/LogicalConstraintType.md +1 -1
  43. package/docs/reference/variables/OdrlContexts.md +7 -7
  44. package/docs/reference/variables/OdrlTypes.md +1 -7
  45. package/docs/reference/variables/OperatorType.md +1 -1
  46. package/docs/reference/variables/PolicyType.md +1 -1
  47. package/docs/reference/variables/RightOperandType.md +1 -1
  48. package/docs/reference/variables/RuleType.md +1 -1
  49. package/docs/reference/variables/StatusType.md +1 -1
  50. package/package.json +7 -7
  51. package/dist/types/models/IOdrlPolicyMetadata.d.ts +0 -58
  52. package/dist/types/models/types/uriActionType.d.ts +0 -215
  53. package/docs/reference/interfaces/IOdrlPolicyMetadata.md +0 -86
  54. package/docs/reference/type-aliases/UriActionType.md +0 -6
  55. package/docs/reference/variables/UriActionType.md +0 -314
@@ -1,58 +0,0 @@
1
- /**
2
- * Interface for ODRL Policy Metadata using Dublin Core terms.
3
- * While these aren't explicitly defined in the ODRL spec, they are valid and useful metadata properties that follow Dublin Core standards.
4
- */
5
- export interface IOdrlPolicyMetadata {
6
- /**
7
- * The individual, agent, or organisation that authored the Policy.
8
- * Note: String values may not be normalized and should not be used for direct comparison.
9
- */
10
- "dc:creator"?: string | string[];
11
- /**
12
- * A human-readable representation or summary of the Policy.
13
- * Note: String values may not be normalized and should not be used for direct comparison.
14
- */
15
- "dc:description"?: string | string[];
16
- /**
17
- * The date (and time) the Policy was first issued.
18
- * Note: String values may not be normalized and should not be used for direct comparison.
19
- */
20
- "dc:issued"?: string;
21
- /**
22
- * The date (and time) the Policy was updated.
23
- * Note: String values may not be normalized and should not be used for direct comparison.
24
- */
25
- "dc:modified"?: string;
26
- /**
27
- * The publisher of the Policy.
28
- * Note: String values may not be normalized and should not be used for direct comparison.
29
- */
30
- "dc:publisher"?: string;
31
- /**
32
- * The subject of the Policy.
33
- * Note: String values may not be normalized and should not be used for direct comparison.
34
- */
35
- "dc:subject"?: string | string[];
36
- /**
37
- * The jurisdiction under which the Policy is relevant.
38
- * Note: When using string values, they may not be normalized and should not be used for direct comparison.
39
- * Using "@id" references is preferred for comparison purposes.
40
- */
41
- "dc:coverage"?: string | {
42
- "@id": string;
43
- };
44
- /**
45
- * The identifier of a Policy that this Policy supersedes.
46
- * Using "@id" references is preferred for comparison purposes.
47
- */
48
- "dc:replaces"?: string | {
49
- "@id": string;
50
- };
51
- /**
52
- * The identifier of a Policy that supersedes this Policy.
53
- * Using "@id" references is preferred for comparison purposes.
54
- */
55
- "dc:isReplacedBy"?: string | {
56
- "@id": string;
57
- };
58
- }
@@ -1,215 +0,0 @@
1
- /**
2
- * The types for ODRL Actions.
3
- * URI action types (for use with rdf:value/@id)
4
- */
5
- export declare const UriActionType: {
6
- /**
7
- * To use the Asset - actions that involve general usage by parties.
8
- */
9
- readonly OdrlUse: "odrl:use";
10
- /**
11
- * To transfer the ownership to third parties.
12
- */
13
- readonly OdrlTransfer: "odrl:transfer";
14
- /**
15
- * To accept that the use of the Asset may be tracked.
16
- */
17
- readonly OdrlAcceptTracking: "odrl:acceptTracking";
18
- /**
19
- * To use the Asset or parts of it as part of a composite collection.
20
- */
21
- readonly OdrlAggregate: "odrl:aggregate";
22
- /**
23
- * To add explanatory notations/commentaries to the Asset without modifying the Asset in any other way.
24
- */
25
- readonly OdrlAnnotate: "odrl:annotate";
26
- /**
27
- * To anonymize all or parts of the Asset.
28
- */
29
- readonly OdrlAnonymize: "odrl:anonymize";
30
- /**
31
- * To store the Asset (in a non-transient form).
32
- */
33
- readonly OdrlArchive: "odrl:archive";
34
- /**
35
- * To attribute the use of the Asset.
36
- */
37
- readonly OdrlAttribute: "odrl:attribute";
38
- /**
39
- * Credit be given to copyright holder and/or author.
40
- */
41
- readonly OdrlAttribution: "odrl:attribution";
42
- /**
43
- * Exercising rights for commercial purposes.
44
- */
45
- readonly OdrlCommercialUse: "odrl:commercialUse";
46
- /**
47
- * To compensate by transfer of some amount of value for using or selling the Asset.
48
- */
49
- readonly OdrlCompensate: "odrl:compensate";
50
- /**
51
- * To create multiple copies of the Asset that are being concurrently used.
52
- */
53
- readonly OdrlConcurrentUse: "odrl:concurrentUse";
54
- /**
55
- * To permanently remove all copies of the Asset after it has been used.
56
- */
57
- readonly OdrlDelete: "odrl:delete";
58
- /**
59
- * To create a new derivative Asset from this Asset and to edit or modify the derivative.
60
- */
61
- readonly OdrlDerive: "odrl:derive";
62
- /**
63
- * Distribution of derivative works.
64
- */
65
- readonly OdrlDerivativeWorks: "odrl:derivativeWorks";
66
- /**
67
- * To produce a digital copy of (or otherwise digitize) the Asset from its analogue form.
68
- */
69
- readonly OdrlDigitize: "odrl:digitize";
70
- /**
71
- * To create a static and transient rendition of an Asset.
72
- */
73
- readonly OdrlDisplay: "odrl:display";
74
- /**
75
- * To supply the Asset to third-parties.
76
- */
77
- readonly OdrlDistribute: "odrl:distribute";
78
- /**
79
- * Distribution, public display, and publicly performance.
80
- */
81
- readonly OdrlDistribution: "odrl:distribution";
82
- /**
83
- * To ensure that the Rule on the Asset is exclusive.
84
- */
85
- readonly OdrlEnsureExclusivity: "odrl:ensureExclusivity";
86
- /**
87
- * To run the computer program Asset.
88
- */
89
- readonly OdrlExecute: "odrl:execute";
90
- /**
91
- * To extract parts of the Asset and to use it as a new Asset.
92
- */
93
- readonly OdrlExtract: "odrl:extract";
94
- /**
95
- * To transfer the ownership without compensation and while deleting the original asset.
96
- */
97
- readonly OdrlGive: "odrl:give";
98
- /**
99
- * To grant the use of the Asset to third parties.
100
- */
101
- readonly OdrlGrantUse: "odrl:grantUse";
102
- /**
103
- * To include other related assets in the Asset.
104
- */
105
- readonly OdrlInclude: "odrl:include";
106
- /**
107
- * To record the Asset in an index.
108
- */
109
- readonly OdrlIndex: "odrl:index";
110
- /**
111
- * To inform that an action has been performed on or in relation to the Asset.
112
- */
113
- readonly OdrlInform: "odrl:inform";
114
- /**
115
- * To load the computer program Asset onto a storage device.
116
- */
117
- readonly OdrlInstall: "odrl:install";
118
- /**
119
- * To change existing content of the Asset without creating a new asset.
120
- */
121
- readonly OdrlModify: "odrl:modify";
122
- /**
123
- * To move the Asset from one digital location to another including deleting the original copy.
124
- */
125
- readonly OdrlMove: "odrl:move";
126
- /**
127
- * To grant the specified Policy to a third party for their use of the Asset.
128
- */
129
- readonly OdrlNextPolicy: "odrl:nextPolicy";
130
- /**
131
- * Copyright and license notices be kept intact.
132
- */
133
- readonly OdrlNotice: "odrl:notice";
134
- /**
135
- * To obtain verifiable consent to perform the requested action.
136
- */
137
- readonly OdrlObtainConsent: "odrl:obtainConsent";
138
- /**
139
- * To create a sequential and transient rendition of an Asset.
140
- */
141
- readonly OdrlPlay: "odrl:play";
142
- /**
143
- * To publicly perform the Asset.
144
- */
145
- readonly OdrlPresent: "odrl:present";
146
- /**
147
- * To create a tangible and permanent rendition of an Asset.
148
- */
149
- readonly OdrlPrint: "odrl:print";
150
- /**
151
- * To obtain data from the Asset.
152
- */
153
- readonly OdrlRead: "odrl:read";
154
- /**
155
- * To make duplicate copies of the Asset in any material form.
156
- */
157
- readonly OdrlReproduce: "odrl:reproduce";
158
- /**
159
- * Making multiple copies.
160
- */
161
- readonly OdrlReproduction: "odrl:reproduction";
162
- /**
163
- * To review the Policy applicable to the Asset.
164
- */
165
- readonly OdrlReviewPolicy: "odrl:reviewPolicy";
166
- /**
167
- * To transfer the ownership with compensation and while deleting the original asset.
168
- */
169
- readonly OdrlSell: "odrl:sell";
170
- /**
171
- * Derivative works be licensed under the same terms or compatible terms.
172
- */
173
- readonly OdrlShareAlike: "odrl:shareAlike";
174
- /**
175
- * Permits commercial derivatives, but only non-commercial distribution.
176
- */
177
- readonly OdrlSharing: "odrl:sharing";
178
- /**
179
- * Source code must be provided when exercising some rights.
180
- */
181
- readonly OdrlSourceCode: "odrl:sourceCode";
182
- /**
183
- * To deliver the Asset in real-time.
184
- */
185
- readonly OdrlStream: "odrl:stream";
186
- /**
187
- * To use the Asset in timed relations with media elements of another Asset.
188
- */
189
- readonly OdrlSynchronize: "odrl:synchronize";
190
- /**
191
- * To have a text Asset read out loud.
192
- */
193
- readonly OdrlTextToSpeech: "odrl:textToSpeech";
194
- /**
195
- * To convert the Asset into a different format.
196
- */
197
- readonly OdrlTransform: "odrl:transform";
198
- /**
199
- * To translate the Asset into another natural language.
200
- */
201
- readonly OdrlTranslate: "odrl:translate";
202
- /**
203
- * To unload and delete the computer program Asset.
204
- */
205
- readonly OdrlUninstall: "odrl:uninstall";
206
- /**
207
- * To apply a watermark to the Asset.
208
- */
209
- readonly OdrlWatermark: "odrl:watermark";
210
- };
211
- /**
212
- * The types for ODRL Actions.
213
- * Simple action types (for direct string usage)
214
- */
215
- export type UriActionType = (typeof UriActionType)[keyof typeof UriActionType];
@@ -1,86 +0,0 @@
1
- # Interface: IOdrlPolicyMetadata
2
-
3
- Interface for ODRL Policy Metadata using Dublin Core terms.
4
- While these aren't explicitly defined in the ODRL spec, they are valid and useful metadata properties that follow Dublin Core standards.
5
-
6
- ## Properties
7
-
8
- ### dc:creator?
9
-
10
- > `optional` **dc:creator**: `string` \| `string`[]
11
-
12
- The individual, agent, or organisation that authored the Policy.
13
- Note: String values may not be normalized and should not be used for direct comparison.
14
-
15
- ***
16
-
17
- ### dc:description?
18
-
19
- > `optional` **dc:description**: `string` \| `string`[]
20
-
21
- A human-readable representation or summary of the Policy.
22
- Note: String values may not be normalized and should not be used for direct comparison.
23
-
24
- ***
25
-
26
- ### dc:issued?
27
-
28
- > `optional` **dc:issued**: `string`
29
-
30
- The date (and time) the Policy was first issued.
31
- Note: String values may not be normalized and should not be used for direct comparison.
32
-
33
- ***
34
-
35
- ### dc:modified?
36
-
37
- > `optional` **dc:modified**: `string`
38
-
39
- The date (and time) the Policy was updated.
40
- Note: String values may not be normalized and should not be used for direct comparison.
41
-
42
- ***
43
-
44
- ### dc:publisher?
45
-
46
- > `optional` **dc:publisher**: `string`
47
-
48
- The publisher of the Policy.
49
- Note: String values may not be normalized and should not be used for direct comparison.
50
-
51
- ***
52
-
53
- ### dc:subject?
54
-
55
- > `optional` **dc:subject**: `string` \| `string`[]
56
-
57
- The subject of the Policy.
58
- Note: String values may not be normalized and should not be used for direct comparison.
59
-
60
- ***
61
-
62
- ### dc:coverage?
63
-
64
- > `optional` **dc:coverage**: `string` \| \{ `@id`: `string`; \}
65
-
66
- The jurisdiction under which the Policy is relevant.
67
- Note: When using string values, they may not be normalized and should not be used for direct comparison.
68
- Using "@id" references is preferred for comparison purposes.
69
-
70
- ***
71
-
72
- ### dc:replaces?
73
-
74
- > `optional` **dc:replaces**: `string` \| \{ `@id`: `string`; \}
75
-
76
- The identifier of a Policy that this Policy supersedes.
77
- Using "@id" references is preferred for comparison purposes.
78
-
79
- ***
80
-
81
- ### dc:isReplacedBy?
82
-
83
- > `optional` **dc:isReplacedBy**: `string` \| \{ `@id`: `string`; \}
84
-
85
- The identifier of a Policy that supersedes this Policy.
86
- Using "@id" references is preferred for comparison purposes.
@@ -1,6 +0,0 @@
1
- # Type Alias: UriActionType
2
-
3
- > **UriActionType** = *typeof* [`UriActionType`](../variables/UriActionType.md)\[keyof *typeof* [`UriActionType`](../variables/UriActionType.md)\]
4
-
5
- The types for ODRL Actions.
6
- Simple action types (for direct string usage)
@@ -1,314 +0,0 @@
1
- # Variable: UriActionType
2
-
3
- > `const` **UriActionType**: `object`
4
-
5
- The types for ODRL Actions.
6
- URI action types (for use with rdf:value/@id)
7
-
8
- ## Type declaration
9
-
10
- ### OdrlUse
11
-
12
- > `readonly` **OdrlUse**: `"odrl:use"` = `"odrl:use"`
13
-
14
- To use the Asset - actions that involve general usage by parties.
15
-
16
- ### OdrlTransfer
17
-
18
- > `readonly` **OdrlTransfer**: `"odrl:transfer"` = `"odrl:transfer"`
19
-
20
- To transfer the ownership to third parties.
21
-
22
- ### OdrlAcceptTracking
23
-
24
- > `readonly` **OdrlAcceptTracking**: `"odrl:acceptTracking"` = `"odrl:acceptTracking"`
25
-
26
- To accept that the use of the Asset may be tracked.
27
-
28
- ### OdrlAggregate
29
-
30
- > `readonly` **OdrlAggregate**: `"odrl:aggregate"` = `"odrl:aggregate"`
31
-
32
- To use the Asset or parts of it as part of a composite collection.
33
-
34
- ### OdrlAnnotate
35
-
36
- > `readonly` **OdrlAnnotate**: `"odrl:annotate"` = `"odrl:annotate"`
37
-
38
- To add explanatory notations/commentaries to the Asset without modifying the Asset in any other way.
39
-
40
- ### OdrlAnonymize
41
-
42
- > `readonly` **OdrlAnonymize**: `"odrl:anonymize"` = `"odrl:anonymize"`
43
-
44
- To anonymize all or parts of the Asset.
45
-
46
- ### OdrlArchive
47
-
48
- > `readonly` **OdrlArchive**: `"odrl:archive"` = `"odrl:archive"`
49
-
50
- To store the Asset (in a non-transient form).
51
-
52
- ### OdrlAttribute
53
-
54
- > `readonly` **OdrlAttribute**: `"odrl:attribute"` = `"odrl:attribute"`
55
-
56
- To attribute the use of the Asset.
57
-
58
- ### OdrlAttribution
59
-
60
- > `readonly` **OdrlAttribution**: `"odrl:attribution"` = `"odrl:attribution"`
61
-
62
- Credit be given to copyright holder and/or author.
63
-
64
- ### OdrlCommercialUse
65
-
66
- > `readonly` **OdrlCommercialUse**: `"odrl:commercialUse"` = `"odrl:commercialUse"`
67
-
68
- Exercising rights for commercial purposes.
69
-
70
- ### OdrlCompensate
71
-
72
- > `readonly` **OdrlCompensate**: `"odrl:compensate"` = `"odrl:compensate"`
73
-
74
- To compensate by transfer of some amount of value for using or selling the Asset.
75
-
76
- ### OdrlConcurrentUse
77
-
78
- > `readonly` **OdrlConcurrentUse**: `"odrl:concurrentUse"` = `"odrl:concurrentUse"`
79
-
80
- To create multiple copies of the Asset that are being concurrently used.
81
-
82
- ### OdrlDelete
83
-
84
- > `readonly` **OdrlDelete**: `"odrl:delete"` = `"odrl:delete"`
85
-
86
- To permanently remove all copies of the Asset after it has been used.
87
-
88
- ### OdrlDerive
89
-
90
- > `readonly` **OdrlDerive**: `"odrl:derive"` = `"odrl:derive"`
91
-
92
- To create a new derivative Asset from this Asset and to edit or modify the derivative.
93
-
94
- ### OdrlDerivativeWorks
95
-
96
- > `readonly` **OdrlDerivativeWorks**: `"odrl:derivativeWorks"` = `"odrl:derivativeWorks"`
97
-
98
- Distribution of derivative works.
99
-
100
- ### OdrlDigitize
101
-
102
- > `readonly` **OdrlDigitize**: `"odrl:digitize"` = `"odrl:digitize"`
103
-
104
- To produce a digital copy of (or otherwise digitize) the Asset from its analogue form.
105
-
106
- ### OdrlDisplay
107
-
108
- > `readonly` **OdrlDisplay**: `"odrl:display"` = `"odrl:display"`
109
-
110
- To create a static and transient rendition of an Asset.
111
-
112
- ### OdrlDistribute
113
-
114
- > `readonly` **OdrlDistribute**: `"odrl:distribute"` = `"odrl:distribute"`
115
-
116
- To supply the Asset to third-parties.
117
-
118
- ### OdrlDistribution
119
-
120
- > `readonly` **OdrlDistribution**: `"odrl:distribution"` = `"odrl:distribution"`
121
-
122
- Distribution, public display, and publicly performance.
123
-
124
- ### OdrlEnsureExclusivity
125
-
126
- > `readonly` **OdrlEnsureExclusivity**: `"odrl:ensureExclusivity"` = `"odrl:ensureExclusivity"`
127
-
128
- To ensure that the Rule on the Asset is exclusive.
129
-
130
- ### OdrlExecute
131
-
132
- > `readonly` **OdrlExecute**: `"odrl:execute"` = `"odrl:execute"`
133
-
134
- To run the computer program Asset.
135
-
136
- ### OdrlExtract
137
-
138
- > `readonly` **OdrlExtract**: `"odrl:extract"` = `"odrl:extract"`
139
-
140
- To extract parts of the Asset and to use it as a new Asset.
141
-
142
- ### OdrlGive
143
-
144
- > `readonly` **OdrlGive**: `"odrl:give"` = `"odrl:give"`
145
-
146
- To transfer the ownership without compensation and while deleting the original asset.
147
-
148
- ### OdrlGrantUse
149
-
150
- > `readonly` **OdrlGrantUse**: `"odrl:grantUse"` = `"odrl:grantUse"`
151
-
152
- To grant the use of the Asset to third parties.
153
-
154
- ### OdrlInclude
155
-
156
- > `readonly` **OdrlInclude**: `"odrl:include"` = `"odrl:include"`
157
-
158
- To include other related assets in the Asset.
159
-
160
- ### OdrlIndex
161
-
162
- > `readonly` **OdrlIndex**: `"odrl:index"` = `"odrl:index"`
163
-
164
- To record the Asset in an index.
165
-
166
- ### OdrlInform
167
-
168
- > `readonly` **OdrlInform**: `"odrl:inform"` = `"odrl:inform"`
169
-
170
- To inform that an action has been performed on or in relation to the Asset.
171
-
172
- ### OdrlInstall
173
-
174
- > `readonly` **OdrlInstall**: `"odrl:install"` = `"odrl:install"`
175
-
176
- To load the computer program Asset onto a storage device.
177
-
178
- ### OdrlModify
179
-
180
- > `readonly` **OdrlModify**: `"odrl:modify"` = `"odrl:modify"`
181
-
182
- To change existing content of the Asset without creating a new asset.
183
-
184
- ### OdrlMove
185
-
186
- > `readonly` **OdrlMove**: `"odrl:move"` = `"odrl:move"`
187
-
188
- To move the Asset from one digital location to another including deleting the original copy.
189
-
190
- ### OdrlNextPolicy
191
-
192
- > `readonly` **OdrlNextPolicy**: `"odrl:nextPolicy"` = `"odrl:nextPolicy"`
193
-
194
- To grant the specified Policy to a third party for their use of the Asset.
195
-
196
- ### OdrlNotice
197
-
198
- > `readonly` **OdrlNotice**: `"odrl:notice"` = `"odrl:notice"`
199
-
200
- Copyright and license notices be kept intact.
201
-
202
- ### OdrlObtainConsent
203
-
204
- > `readonly` **OdrlObtainConsent**: `"odrl:obtainConsent"` = `"odrl:obtainConsent"`
205
-
206
- To obtain verifiable consent to perform the requested action.
207
-
208
- ### OdrlPlay
209
-
210
- > `readonly` **OdrlPlay**: `"odrl:play"` = `"odrl:play"`
211
-
212
- To create a sequential and transient rendition of an Asset.
213
-
214
- ### OdrlPresent
215
-
216
- > `readonly` **OdrlPresent**: `"odrl:present"` = `"odrl:present"`
217
-
218
- To publicly perform the Asset.
219
-
220
- ### OdrlPrint
221
-
222
- > `readonly` **OdrlPrint**: `"odrl:print"` = `"odrl:print"`
223
-
224
- To create a tangible and permanent rendition of an Asset.
225
-
226
- ### OdrlRead
227
-
228
- > `readonly` **OdrlRead**: `"odrl:read"` = `"odrl:read"`
229
-
230
- To obtain data from the Asset.
231
-
232
- ### OdrlReproduce
233
-
234
- > `readonly` **OdrlReproduce**: `"odrl:reproduce"` = `"odrl:reproduce"`
235
-
236
- To make duplicate copies of the Asset in any material form.
237
-
238
- ### OdrlReproduction
239
-
240
- > `readonly` **OdrlReproduction**: `"odrl:reproduction"` = `"odrl:reproduction"`
241
-
242
- Making multiple copies.
243
-
244
- ### OdrlReviewPolicy
245
-
246
- > `readonly` **OdrlReviewPolicy**: `"odrl:reviewPolicy"` = `"odrl:reviewPolicy"`
247
-
248
- To review the Policy applicable to the Asset.
249
-
250
- ### OdrlSell
251
-
252
- > `readonly` **OdrlSell**: `"odrl:sell"` = `"odrl:sell"`
253
-
254
- To transfer the ownership with compensation and while deleting the original asset.
255
-
256
- ### OdrlShareAlike
257
-
258
- > `readonly` **OdrlShareAlike**: `"odrl:shareAlike"` = `"odrl:shareAlike"`
259
-
260
- Derivative works be licensed under the same terms or compatible terms.
261
-
262
- ### OdrlSharing
263
-
264
- > `readonly` **OdrlSharing**: `"odrl:sharing"` = `"odrl:sharing"`
265
-
266
- Permits commercial derivatives, but only non-commercial distribution.
267
-
268
- ### OdrlSourceCode
269
-
270
- > `readonly` **OdrlSourceCode**: `"odrl:sourceCode"` = `"odrl:sourceCode"`
271
-
272
- Source code must be provided when exercising some rights.
273
-
274
- ### OdrlStream
275
-
276
- > `readonly` **OdrlStream**: `"odrl:stream"` = `"odrl:stream"`
277
-
278
- To deliver the Asset in real-time.
279
-
280
- ### OdrlSynchronize
281
-
282
- > `readonly` **OdrlSynchronize**: `"odrl:synchronize"` = `"odrl:synchronize"`
283
-
284
- To use the Asset in timed relations with media elements of another Asset.
285
-
286
- ### OdrlTextToSpeech
287
-
288
- > `readonly` **OdrlTextToSpeech**: `"odrl:textToSpeech"` = `"odrl:textToSpeech"`
289
-
290
- To have a text Asset read out loud.
291
-
292
- ### OdrlTransform
293
-
294
- > `readonly` **OdrlTransform**: `"odrl:transform"` = `"odrl:transform"`
295
-
296
- To convert the Asset into a different format.
297
-
298
- ### OdrlTranslate
299
-
300
- > `readonly` **OdrlTranslate**: `"odrl:translate"` = `"odrl:translate"`
301
-
302
- To translate the Asset into another natural language.
303
-
304
- ### OdrlUninstall
305
-
306
- > `readonly` **OdrlUninstall**: `"odrl:uninstall"` = `"odrl:uninstall"`
307
-
308
- To unload and delete the computer program Asset.
309
-
310
- ### OdrlWatermark
311
-
312
- > `readonly` **OdrlWatermark**: `"odrl:watermark"` = `"odrl:watermark"`
313
-
314
- To apply a watermark to the Asset.