@twin.org/standards-w3c-odrl 0.0.2-next.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.
- package/dist/cjs/index.cjs +335 -613
- package/dist/esm/index.mjs +336 -613
- package/dist/types/index.d.ts +0 -2
- package/dist/types/models/IOdrlAction.d.ts +3 -2
- package/dist/types/models/IOdrlAgreement.d.ts +1 -0
- package/dist/types/models/IOdrlAsset.d.ts +1 -0
- package/dist/types/models/IOdrlAssetCollection.d.ts +1 -0
- package/dist/types/models/IOdrlConstraint.d.ts +1 -0
- package/dist/types/models/IOdrlDuty.d.ts +1 -0
- package/dist/types/models/IOdrlLogicalConstraint.d.ts +1 -0
- package/dist/types/models/IOdrlOffer.d.ts +1 -0
- package/dist/types/models/IOdrlParty.d.ts +1 -0
- package/dist/types/models/IOdrlPartyCollection.d.ts +1 -0
- package/dist/types/models/IOdrlPermission.d.ts +1 -0
- package/dist/types/models/IOdrlPolicy.d.ts +2 -1
- package/dist/types/models/IOdrlProhibition.d.ts +1 -0
- package/dist/types/models/IOdrlRule.d.ts +2 -1
- package/dist/types/models/IOdrlSet.d.ts +1 -0
- package/dist/types/models/types/actionType.d.ts +116 -97
- package/dist/types/models/types/odrlTypes.d.ts +0 -4
- package/docs/changelog.md +135 -0
- package/docs/reference/index.md +0 -3
- package/docs/reference/interfaces/IOdrlAction.md +4 -3
- package/docs/reference/interfaces/IOdrlAgreement.md +3 -2
- package/docs/reference/interfaces/IOdrlAsset.md +2 -1
- package/docs/reference/interfaces/IOdrlAssetCollection.md +2 -1
- package/docs/reference/interfaces/IOdrlConstraint.md +2 -1
- package/docs/reference/interfaces/IOdrlDuty.md +3 -2
- package/docs/reference/interfaces/IOdrlLogicalConstraint.md +2 -1
- package/docs/reference/interfaces/IOdrlOffer.md +3 -2
- package/docs/reference/interfaces/IOdrlParty.md +2 -1
- package/docs/reference/interfaces/IOdrlPartyCollection.md +2 -1
- package/docs/reference/interfaces/IOdrlPermission.md +3 -2
- package/docs/reference/interfaces/IOdrlPolicy.md +3 -2
- package/docs/reference/interfaces/IOdrlProhibition.md +3 -2
- package/docs/reference/interfaces/IOdrlRule.md +3 -2
- package/docs/reference/interfaces/IOdrlSet.md +3 -2
- package/docs/reference/variables/ActionType.md +169 -142
- package/docs/reference/variables/ConflictStrategyType.md +1 -1
- package/docs/reference/variables/LeftOperandType.md +1 -1
- package/docs/reference/variables/LogicalConstraintType.md +1 -1
- package/docs/reference/variables/OdrlContexts.md +1 -1
- package/docs/reference/variables/OdrlTypes.md +1 -7
- package/docs/reference/variables/OperatorType.md +1 -1
- package/docs/reference/variables/PolicyType.md +1 -1
- package/docs/reference/variables/RightOperandType.md +1 -1
- package/docs/reference/variables/RuleType.md +1 -1
- package/docs/reference/variables/StatusType.md +1 -1
- package/package.json +3 -3
- package/dist/types/models/IOdrlPolicyMetadata.d.ts +0 -58
- package/dist/types/models/types/uriActionType.d.ts +0 -215
- package/docs/reference/interfaces/IOdrlPolicyMetadata.md +0 -86
- package/docs/reference/type-aliases/UriActionType.md +0 -6
- package/docs/reference/variables/UriActionType.md +0 -314
|
@@ -5,310 +5,337 @@
|
|
|
5
5
|
The types for ODRL Actions.
|
|
6
6
|
Simple action types (for direct string usage)
|
|
7
7
|
|
|
8
|
-
## Type
|
|
8
|
+
## Type Declaration
|
|
9
9
|
|
|
10
10
|
### Use
|
|
11
11
|
|
|
12
12
|
> `readonly` **Use**: `"use"` = `"use"`
|
|
13
13
|
|
|
14
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
51
|
+
The act of multiple concurrent use of the asset.
|
|
81
52
|
|
|
82
|
-
###
|
|
53
|
+
### Commercialize
|
|
83
54
|
|
|
84
|
-
> `readonly` **
|
|
55
|
+
> `readonly` **Commercialize**: `"commercialize"` = `"commercialize"`
|
|
85
56
|
|
|
86
|
-
|
|
57
|
+
The act of using the asset in a business environment where it may be traded for profit.
|
|
87
58
|
|
|
88
|
-
###
|
|
59
|
+
### Copy
|
|
89
60
|
|
|
90
|
-
> `readonly` **
|
|
61
|
+
> `readonly` **Copy**: `"copy"` = `"copy"`
|
|
91
62
|
|
|
92
|
-
|
|
63
|
+
The act of making an exact reproduction of the asset. Also identified as `reproduce`.
|
|
93
64
|
|
|
94
|
-
###
|
|
65
|
+
### Derive
|
|
95
66
|
|
|
96
|
-
> `readonly` **
|
|
67
|
+
> `readonly` **Derive**: `"derive"` = `"derive"`
|
|
97
68
|
|
|
98
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
100
|
+
The act of extracting (replicating) unchanged parts of the asset for reuse.
|
|
141
101
|
|
|
142
|
-
###
|
|
102
|
+
### ExtractChar
|
|
143
103
|
|
|
144
|
-
> `readonly` **
|
|
104
|
+
> `readonly` **ExtractChar**: `"extractChar"` = `"extractChar"`
|
|
145
105
|
|
|
146
|
-
|
|
106
|
+
The act of extracting unchanged character(s) from the asset.
|
|
147
107
|
|
|
148
|
-
###
|
|
108
|
+
### ExtractWord
|
|
149
109
|
|
|
150
|
-
> `readonly` **
|
|
110
|
+
> `readonly` **ExtractWord**: `"extractWord"` = `"extractWord"`
|
|
151
111
|
|
|
152
|
-
|
|
112
|
+
The act of extracting unchanged word(s) from the asset.
|
|
153
113
|
|
|
154
|
-
###
|
|
114
|
+
### ExtractPage
|
|
155
115
|
|
|
156
|
-
> `readonly` **
|
|
116
|
+
> `readonly` **ExtractPage**: `"extractPage"` = `"extractPage"`
|
|
157
117
|
|
|
158
|
-
|
|
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
|
-
|
|
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
|
-
|
|
130
|
+
The act of loading the asset onto a storage device ready for operation.
|
|
177
131
|
|
|
178
|
-
###
|
|
132
|
+
### License
|
|
179
133
|
|
|
180
|
-
> `readonly` **
|
|
134
|
+
> `readonly` **License**: `"license"` = `"license"`
|
|
181
135
|
|
|
182
|
-
|
|
136
|
+
The act of granting the use of the asset to third parties. Also identified as `sublicense` in earlier versions.
|
|
183
137
|
|
|
184
|
-
###
|
|
138
|
+
### Lease
|
|
185
139
|
|
|
186
|
-
> `readonly` **
|
|
140
|
+
> `readonly` **Lease**: `"lease"` = `"lease"`
|
|
187
141
|
|
|
188
|
-
|
|
142
|
+
The act of making the asset available to a third-party for a fixed period with exchange of value.
|
|
189
143
|
|
|
190
|
-
###
|
|
144
|
+
### Lend
|
|
191
145
|
|
|
192
|
-
> `readonly` **
|
|
146
|
+
> `readonly` **Lend**: `"lend"` = `"lend"`
|
|
193
147
|
|
|
194
|
-
|
|
148
|
+
The act of making the asset available to a third-party for a fixed period without exchange of value.
|
|
195
149
|
|
|
196
|
-
###
|
|
150
|
+
### Modify
|
|
197
151
|
|
|
198
|
-
> `readonly` **
|
|
152
|
+
> `readonly` **Modify**: `"modify"` = `"modify"`
|
|
199
153
|
|
|
200
|
-
|
|
154
|
+
The act of updating existing content of the asset without creating a new one.
|
|
201
155
|
|
|
202
|
-
###
|
|
156
|
+
### Move
|
|
203
157
|
|
|
204
|
-
> `readonly` **
|
|
158
|
+
> `readonly` **Move**: `"move"` = `"move"`
|
|
205
159
|
|
|
206
|
-
|
|
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
|
-
|
|
166
|
+
The act of rendering the asset into audio and/or video form.
|
|
213
167
|
|
|
214
|
-
###
|
|
168
|
+
### Preview
|
|
215
169
|
|
|
216
|
-
> `readonly` **
|
|
170
|
+
> `readonly` **Preview**: `"preview"` = `"preview"`
|
|
217
171
|
|
|
218
|
-
|
|
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
|
-
|
|
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
|
-
|
|
184
|
+
The act of obtaining data from the asset, such as a database record.
|
|
231
185
|
|
|
232
|
-
###
|
|
186
|
+
### SecondaryUse
|
|
233
187
|
|
|
234
|
-
> `readonly` **
|
|
188
|
+
> `readonly` **SecondaryUse**: `"secondaryUse"` = `"secondaryUse"`
|
|
235
189
|
|
|
236
|
-
|
|
190
|
+
The act of using the asset for a purpose other than its intended purpose.
|
|
237
191
|
|
|
238
|
-
###
|
|
192
|
+
### Share
|
|
239
193
|
|
|
240
|
-
> `readonly` **
|
|
194
|
+
> `readonly` **Share**: `"share"` = `"share"`
|
|
241
195
|
|
|
242
|
-
|
|
196
|
+
The act of non-commercial reproduction and distribution of the asset to third-parties.
|
|
243
197
|
|
|
244
|
-
###
|
|
198
|
+
### AdhocShare
|
|
245
199
|
|
|
246
|
-
> `readonly` **
|
|
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
|
-
|
|
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
|
-
|
|
263
|
+
The act of trading the asset in exchange for compensation, requiring the original to be deleted.
|
|
255
264
|
|
|
256
|
-
###
|
|
265
|
+
### AcceptTracking
|
|
257
266
|
|
|
258
|
-
> `readonly` **
|
|
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
|
-
|
|
273
|
+
> `readonly` **AttachPolicy**: `"attachPolicy"` = `"attachPolicy"`
|
|
261
274
|
|
|
262
|
-
|
|
275
|
+
The act of keeping a policy notice attached to the asset.
|
|
263
276
|
|
|
264
|
-
|
|
277
|
+
### AttachSource
|
|
265
278
|
|
|
266
|
-
|
|
279
|
+
> `readonly` **AttachSource**: `"attachSource"` = `"attachSource"`
|
|
267
280
|
|
|
268
|
-
|
|
281
|
+
The act of attaching the source of the asset and its derivatives.
|
|
269
282
|
|
|
270
|
-
|
|
283
|
+
### Attribute
|
|
271
284
|
|
|
272
|
-
|
|
285
|
+
> `readonly` **Attribute**: `"attribute"` = `"attribute"`
|
|
273
286
|
|
|
274
|
-
|
|
287
|
+
The act of attributing the asset to a specified party.
|
|
275
288
|
|
|
276
|
-
|
|
289
|
+
### Compensate
|
|
277
290
|
|
|
278
|
-
|
|
291
|
+
> `readonly` **Compensate**: `"compensate"` = `"compensate"`
|
|
279
292
|
|
|
280
|
-
|
|
293
|
+
The act of compensating a specified party by some amount for use of the asset.
|
|
281
294
|
|
|
282
|
-
|
|
295
|
+
### Delete
|
|
283
296
|
|
|
284
|
-
|
|
297
|
+
> `readonly` **Delete**: `"delete"` = `"delete"`
|
|
285
298
|
|
|
286
|
-
|
|
299
|
+
The act of permanently removing all copies of the asset.
|
|
287
300
|
|
|
288
|
-
|
|
301
|
+
### EnsureExclusivity
|
|
289
302
|
|
|
290
|
-
|
|
303
|
+
> `readonly` **EnsureExclusivity**: `"ensureExclusivity"` = `"ensureExclusivity"`
|
|
291
304
|
|
|
292
|
-
|
|
305
|
+
The act of requiring the assigner to ensure a permission is exclusive to the assignee.
|
|
293
306
|
|
|
294
|
-
|
|
307
|
+
### Include
|
|
295
308
|
|
|
296
|
-
|
|
309
|
+
> `readonly` **Include**: `"include"` = `"include"`
|
|
297
310
|
|
|
298
|
-
|
|
311
|
+
The act of including other related assets to fulfil the function.
|
|
299
312
|
|
|
300
|
-
|
|
313
|
+
### Inform
|
|
301
314
|
|
|
302
|
-
|
|
315
|
+
> `readonly` **Inform**: `"inform"` = `"inform"`
|
|
303
316
|
|
|
304
|
-
|
|
317
|
+
The act of informing a party that an action has been performed on the asset.
|
|
305
318
|
|
|
306
|
-
|
|
319
|
+
### NextPolicy
|
|
307
320
|
|
|
308
|
-
|
|
321
|
+
> `readonly` **NextPolicy**: `"nextPolicy"` = `"nextPolicy"`
|
|
309
322
|
|
|
310
|
-
|
|
323
|
+
The act of specifying a policy for third-party use of the asset.
|
|
311
324
|
|
|
312
|
-
|
|
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
|
-
|
|
341
|
+
The act of performing a manual review of the terms associated with the asset.
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
The types for ODRL.
|
|
6
6
|
|
|
7
|
-
## Type
|
|
7
|
+
## Type Declaration
|
|
8
8
|
|
|
9
9
|
### Policy
|
|
10
10
|
|
|
@@ -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.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/standards-w3c-odrl",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.10",
|
|
4
4
|
"description": "Models which define the structure of W3C ODRL Standard",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"@twin.org/core": "next",
|
|
18
18
|
"@twin.org/data-core": "next",
|
|
19
19
|
"@twin.org/data-json-ld": "next",
|
|
20
|
-
"@twin.org/standards-dublin-core": "0.0.2-next.
|
|
21
|
-
"@twin.org/standards-w3c-vcard": "0.0.2-next.
|
|
20
|
+
"@twin.org/standards-dublin-core": "0.0.2-next.10",
|
|
21
|
+
"@twin.org/standards-w3c-vcard": "0.0.2-next.10",
|
|
22
22
|
"@twin.org/web": "next"
|
|
23
23
|
},
|
|
24
24
|
"main": "./dist/cjs/index.cjs",
|