@twin.org/standards-w3c-odrl 0.0.1-next.21

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 (75) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +21 -0
  3. package/dist/cjs/index.cjs +911 -0
  4. package/dist/esm/index.mjs +897 -0
  5. package/dist/types/index.d.ts +26 -0
  6. package/dist/types/models/IOdrlAction.d.ts +33 -0
  7. package/dist/types/models/IOdrlAsset.d.ts +27 -0
  8. package/dist/types/models/IOdrlAssetCollection.d.ts +21 -0
  9. package/dist/types/models/IOdrlConstraint.d.ts +49 -0
  10. package/dist/types/models/IOdrlDuty.d.ts +33 -0
  11. package/dist/types/models/IOdrlLogicalConstraint.d.ts +45 -0
  12. package/dist/types/models/IOdrlParty.d.ts +35 -0
  13. package/dist/types/models/IOdrlPartyCollection.d.ts +18 -0
  14. package/dist/types/models/IOdrlPermission.d.ts +14 -0
  15. package/dist/types/models/IOdrlPolicy.d.ts +81 -0
  16. package/dist/types/models/IOdrlPolicyMetadata.d.ts +58 -0
  17. package/dist/types/models/IOdrlProhibition.d.ts +11 -0
  18. package/dist/types/models/IOdrlRule.d.ts +41 -0
  19. package/dist/types/models/odrlContexts.d.ts +29 -0
  20. package/dist/types/models/types/actionTypes.d.ts +214 -0
  21. package/dist/types/models/types/conflictStrategyTypes.d.ts +21 -0
  22. package/dist/types/models/types/dataTypes.d.ts +37 -0
  23. package/dist/types/models/types/leftOperandTypes.d.ts +137 -0
  24. package/dist/types/models/types/logicalConstraintType.d.ts +25 -0
  25. package/dist/types/models/types/odrlTypes.d.ts +69 -0
  26. package/dist/types/models/types/operatorTypes.d.ts +65 -0
  27. package/dist/types/models/types/policyTypes.d.ts +25 -0
  28. package/dist/types/models/types/rightOperandTypes.d.ts +13 -0
  29. package/dist/types/models/types/ruleTypes.d.ts +21 -0
  30. package/dist/types/models/types/statusTypes.d.ts +25 -0
  31. package/dist/types/models/types/uriActionTypes.d.ts +215 -0
  32. package/docs/changelog.md +5 -0
  33. package/docs/examples.md +1 -0
  34. package/docs/reference/index.md +49 -0
  35. package/docs/reference/interfaces/IOdrlAction.md +61 -0
  36. package/docs/reference/interfaces/IOdrlAsset.md +55 -0
  37. package/docs/reference/interfaces/IOdrlAssetCollection.md +85 -0
  38. package/docs/reference/interfaces/IOdrlConstraint.md +76 -0
  39. package/docs/reference/interfaces/IOdrlDuty.md +144 -0
  40. package/docs/reference/interfaces/IOdrlLogicalConstraint.md +70 -0
  41. package/docs/reference/interfaces/IOdrlParty.md +67 -0
  42. package/docs/reference/interfaces/IOdrlPartyCollection.md +98 -0
  43. package/docs/reference/interfaces/IOdrlPermission.md +108 -0
  44. package/docs/reference/interfaces/IOdrlPolicy.md +136 -0
  45. package/docs/reference/interfaces/IOdrlPolicyMetadata.md +86 -0
  46. package/docs/reference/interfaces/IOdrlProhibition.md +105 -0
  47. package/docs/reference/interfaces/IOdrlRule.md +75 -0
  48. package/docs/reference/type-aliases/ActionType.md +5 -0
  49. package/docs/reference/type-aliases/ConflictStrategyType.md +5 -0
  50. package/docs/reference/type-aliases/DataType.md +5 -0
  51. package/docs/reference/type-aliases/LeftOperandType.md +5 -0
  52. package/docs/reference/type-aliases/LogicalConstraintType.md +5 -0
  53. package/docs/reference/type-aliases/OdrlContexts.md +5 -0
  54. package/docs/reference/type-aliases/OdrlTypes.md +5 -0
  55. package/docs/reference/type-aliases/OperatorType.md +5 -0
  56. package/docs/reference/type-aliases/PolicyType.md +5 -0
  57. package/docs/reference/type-aliases/RightOperandType.md +5 -0
  58. package/docs/reference/type-aliases/RuleType.md +5 -0
  59. package/docs/reference/type-aliases/StatusType.md +5 -0
  60. package/docs/reference/type-aliases/UriActionType.md +6 -0
  61. package/docs/reference/variables/ActionTypes.md +314 -0
  62. package/docs/reference/variables/ConflictStrategyTypes.md +25 -0
  63. package/docs/reference/variables/DataType.md +49 -0
  64. package/docs/reference/variables/LeftOperandType.md +199 -0
  65. package/docs/reference/variables/LogicalConstraintType.md +31 -0
  66. package/docs/reference/variables/OdrlContexts.md +37 -0
  67. package/docs/reference/variables/OdrlTypes.md +97 -0
  68. package/docs/reference/variables/OperatorType.md +91 -0
  69. package/docs/reference/variables/PolicyType.md +31 -0
  70. package/docs/reference/variables/RightOperandTypes.md +13 -0
  71. package/docs/reference/variables/RuleType.md +25 -0
  72. package/docs/reference/variables/StatusType.md +31 -0
  73. package/docs/reference/variables/UriActionTypes.md +314 -0
  74. package/locales/en.json +1 -0
  75. package/package.json +40 -0
@@ -0,0 +1,75 @@
1
+ # Interface: IOdrlRule
2
+
3
+ Base interface for ODRL Rules.
4
+
5
+ ## Extends
6
+
7
+ - `IJsonLdNodeObject`
8
+
9
+ ## Extended by
10
+
11
+ - [`IOdrlPermission`](IOdrlPermission.md)
12
+ - [`IOdrlProhibition`](IOdrlProhibition.md)
13
+ - [`IOdrlDuty`](IOdrlDuty.md)
14
+
15
+ ## Indexable
16
+
17
+ \[`key`: `string`\]: `undefined` \| `null` \| `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdNodeObject` \| `IJsonLdContextDefinition` \| `IJsonLdContextDefinitionElement`[] \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdNodeObject`[] \| `IJsonLdGraphObject` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\}
18
+
19
+ ## Properties
20
+
21
+ ### uid?
22
+
23
+ > `optional` **uid**: `string`
24
+
25
+ Optional unique identifier for the rule.
26
+
27
+ ***
28
+
29
+ ### action?
30
+
31
+ > `optional` **action**: [`ActionType`](../type-aliases/ActionType.md) \| [`IOdrlAction`](IOdrlAction.md) \| ActionType \| IOdrlAction[]
32
+
33
+ The action associated with the rule.
34
+
35
+ ***
36
+
37
+ ### target?
38
+
39
+ > `optional` **target**: `string` \| [`IOdrlAsset`](IOdrlAsset.md) \| (`string` \| [`IOdrlAsset`](IOdrlAsset.md))[]
40
+
41
+ The target asset for the rule.
42
+
43
+ ***
44
+
45
+ ### assigner?
46
+
47
+ > `optional` **assigner**: `string` \| [`IOdrlParty`](IOdrlParty.md)
48
+
49
+ The assigner of the rule.
50
+
51
+ ***
52
+
53
+ ### assignee?
54
+
55
+ > `optional` **assignee**: `string` \| [`IOdrlParty`](IOdrlParty.md)
56
+
57
+ The assignee of the rule.
58
+
59
+ ***
60
+
61
+ ### constraint?
62
+
63
+ > `optional` **constraint**: [`IOdrlConstraint`](IOdrlConstraint.md)[]
64
+
65
+ Constraints applied to the rule.
66
+
67
+ ***
68
+
69
+ ### summary?
70
+
71
+ > `optional` **summary**: `string`
72
+
73
+ Additional relation sub-properties as defined in ODRL profiles.
74
+ For example, 'summary' in profile "http://example.com/odrl:profile:03"
75
+ indicates where the output should be stored.
@@ -0,0 +1,5 @@
1
+ # Type Alias: ActionType
2
+
3
+ > **ActionType**: *typeof* [`ActionTypes`](../variables/ActionTypes.md)\[keyof *typeof* [`ActionTypes`](../variables/ActionTypes.md)\]
4
+
5
+ The types for ODRL Actions.
@@ -0,0 +1,5 @@
1
+ # Type Alias: ConflictStrategyType
2
+
3
+ > **ConflictStrategyType**: *typeof* [`ConflictStrategyTypes`](../variables/ConflictStrategyTypes.md)\[keyof *typeof* [`ConflictStrategyTypes`](../variables/ConflictStrategyTypes.md)\]
4
+
5
+ The types for ODRL Conflict Resolution Strategies.
@@ -0,0 +1,5 @@
1
+ # Type Alias: DataType
2
+
3
+ > **DataType**: *typeof* [`DataType`](../variables/DataType.md)\[keyof *typeof* [`DataType`](../variables/DataType.md)\]
4
+
5
+ The types for ODRL Data Types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: LeftOperandType
2
+
3
+ > **LeftOperandType**: *typeof* [`LeftOperandType`](../variables/LeftOperandType.md)\[keyof *typeof* [`LeftOperandType`](../variables/LeftOperandType.md)\]
4
+
5
+ The types for ODRL Data Types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: LogicalConstraintType
2
+
3
+ > **LogicalConstraintType**: *typeof* [`LogicalConstraintType`](../variables/LogicalConstraintType.md)\[keyof *typeof* [`LogicalConstraintType`](../variables/LogicalConstraintType.md)\]
4
+
5
+ The types for ODRL Logical Constraints.
@@ -0,0 +1,5 @@
1
+ # Type Alias: OdrlContexts
2
+
3
+ > **OdrlContexts**: *typeof* [`OdrlContexts`](../variables/OdrlContexts.md)\[keyof *typeof* [`OdrlContexts`](../variables/OdrlContexts.md)\]
4
+
5
+ The contexts for ODRL.
@@ -0,0 +1,5 @@
1
+ # Type Alias: OdrlTypes
2
+
3
+ > **OdrlTypes**: *typeof* [`OdrlTypes`](../variables/OdrlTypes.md)\[keyof *typeof* [`OdrlTypes`](../variables/OdrlTypes.md)\]
4
+
5
+ The types for ODRL.
@@ -0,0 +1,5 @@
1
+ # Type Alias: OperatorType
2
+
3
+ > **OperatorType**: *typeof* [`OperatorType`](../variables/OperatorType.md)\[keyof *typeof* [`OperatorType`](../variables/OperatorType.md)\]
4
+
5
+ The types for ODRL Operators.
@@ -0,0 +1,5 @@
1
+ # Type Alias: PolicyType
2
+
3
+ > **PolicyType**: *typeof* [`PolicyType`](../variables/PolicyType.md)\[keyof *typeof* [`PolicyType`](../variables/PolicyType.md)\]
4
+
5
+ The types for ODRL Policies.
@@ -0,0 +1,5 @@
1
+ # Type Alias: RightOperandType
2
+
3
+ > **RightOperandType**: *typeof* [`RightOperandTypes`](../variables/RightOperandTypes.md)\[keyof *typeof* [`RightOperandTypes`](../variables/RightOperandTypes.md)\]
4
+
5
+ The types for ODRL Right Operand Types.
@@ -0,0 +1,5 @@
1
+ # Type Alias: RuleType
2
+
3
+ > **RuleType**: *typeof* [`RuleType`](../variables/RuleType.md)\[keyof *typeof* [`RuleType`](../variables/RuleType.md)\]
4
+
5
+ The types for ODRL Rules.
@@ -0,0 +1,5 @@
1
+ # Type Alias: StatusType
2
+
3
+ > **StatusType**: *typeof* [`StatusType`](../variables/StatusType.md)\[keyof *typeof* [`StatusType`](../variables/StatusType.md)\]
4
+
5
+ The types for ODRL Status.
@@ -0,0 +1,6 @@
1
+ # Type Alias: UriActionType
2
+
3
+ > **UriActionType**: *typeof* [`UriActionTypes`](../variables/UriActionTypes.md)\[keyof *typeof* [`UriActionTypes`](../variables/UriActionTypes.md)\]
4
+
5
+ The types for ODRL Actions.
6
+ Simple action types (for direct string usage)
@@ -0,0 +1,314 @@
1
+ # Variable: ActionTypes
2
+
3
+ > `const` **ActionTypes**: `object`
4
+
5
+ The types for ODRL Actions.
6
+ Simple action types (for direct string usage)
7
+
8
+ ## Type declaration
9
+
10
+ ### Use
11
+
12
+ > `readonly` **Use**: `"use"` = `"use"`
13
+
14
+ To use the Asset - actions that involve general usage by parties.
15
+
16
+ ### Transfer
17
+
18
+ > `readonly` **Transfer**: `"transfer"` = `"transfer"`
19
+
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.
27
+
28
+ ### Aggregate
29
+
30
+ > `readonly` **Aggregate**: `"aggregate"` = `"aggregate"`
31
+
32
+ To use the Asset or parts of it as part of a composite collection.
33
+
34
+ ### Annotate
35
+
36
+ > `readonly` **Annotate**: `"annotate"` = `"annotate"`
37
+
38
+ To add explanatory notations/commentaries to the Asset without modifying the Asset in any other way.
39
+
40
+ ### Anonymize
41
+
42
+ > `readonly` **Anonymize**: `"anonymize"` = `"anonymize"`
43
+
44
+ To anonymize all or parts of the Asset.
45
+
46
+ ### Archive
47
+
48
+ > `readonly` **Archive**: `"archive"` = `"archive"`
49
+
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.
75
+
76
+ ### ConcurrentUse
77
+
78
+ > `readonly` **ConcurrentUse**: `"concurrentUse"` = `"concurrentUse"`
79
+
80
+ To create multiple copies of the Asset that are being concurrently used.
81
+
82
+ ### Delete
83
+
84
+ > `readonly` **Delete**: `"delete"` = `"delete"`
85
+
86
+ To permanently remove all copies of the Asset after it has been used.
87
+
88
+ ### Derive
89
+
90
+ > `readonly` **Derive**: `"derive"` = `"derive"`
91
+
92
+ To create a new derivative Asset from this Asset and to edit or modify the derivative.
93
+
94
+ ### DerivativeWorks
95
+
96
+ > `readonly` **DerivativeWorks**: `"derivativeWorks"` = `"derivativeWorks"`
97
+
98
+ Distribution of derivative works.
99
+
100
+ ### Digitize
101
+
102
+ > `readonly` **Digitize**: `"digitize"` = `"digitize"`
103
+
104
+ To produce a digital copy of (or otherwise digitize) the Asset from its analogue form.
105
+
106
+ ### Display
107
+
108
+ > `readonly` **Display**: `"display"` = `"display"`
109
+
110
+ To create a static and transient rendition of an Asset.
111
+
112
+ ### Distribute
113
+
114
+ > `readonly` **Distribute**: `"distribute"` = `"distribute"`
115
+
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.
129
+
130
+ ### Execute
131
+
132
+ > `readonly` **Execute**: `"execute"` = `"execute"`
133
+
134
+ To run the computer program Asset.
135
+
136
+ ### Extract
137
+
138
+ > `readonly` **Extract**: `"extract"` = `"extract"`
139
+
140
+ To extract parts of the Asset and to use it as a new Asset.
141
+
142
+ ### Give
143
+
144
+ > `readonly` **Give**: `"give"` = `"give"`
145
+
146
+ To transfer the ownership without compensation and while deleting the original asset.
147
+
148
+ ### GrantUse
149
+
150
+ > `readonly` **GrantUse**: `"grantUse"` = `"grantUse"`
151
+
152
+ To grant the use of the Asset to third parties.
153
+
154
+ ### Include
155
+
156
+ > `readonly` **Include**: `"include"` = `"include"`
157
+
158
+ To include other related assets in the Asset.
159
+
160
+ ### Index
161
+
162
+ > `readonly` **Index**: `"index"` = `"index"`
163
+
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.
171
+
172
+ ### Install
173
+
174
+ > `readonly` **Install**: `"install"` = `"install"`
175
+
176
+ To load the computer program Asset onto a storage device.
177
+
178
+ ### Modify
179
+
180
+ > `readonly` **Modify**: `"modify"` = `"modify"`
181
+
182
+ To change existing content of the Asset without creating a new asset.
183
+
184
+ ### Move
185
+
186
+ > `readonly` **Move**: `"move"` = `"move"`
187
+
188
+ To move the Asset from one digital location to another including deleting the original copy.
189
+
190
+ ### NextPolicy
191
+
192
+ > `readonly` **NextPolicy**: `"nextPolicy"` = `"nextPolicy"`
193
+
194
+ To grant the specified Policy to a third party for their use of the Asset.
195
+
196
+ ### Notice
197
+
198
+ > `readonly` **Notice**: `"notice"` = `"notice"`
199
+
200
+ Copyright and license notices be kept intact.
201
+
202
+ ### ObtainConsent
203
+
204
+ > `readonly` **ObtainConsent**: `"obtainConsent"` = `"obtainConsent"`
205
+
206
+ To obtain verifiable consent to perform the requested action.
207
+
208
+ ### Play
209
+
210
+ > `readonly` **Play**: `"play"` = `"play"`
211
+
212
+ To create a sequential and transient rendition of an Asset.
213
+
214
+ ### Present
215
+
216
+ > `readonly` **Present**: `"present"` = `"present"`
217
+
218
+ To publicly perform the Asset.
219
+
220
+ ### Print
221
+
222
+ > `readonly` **Print**: `"print"` = `"print"`
223
+
224
+ To create a tangible and permanent rendition of an Asset.
225
+
226
+ ### Read
227
+
228
+ > `readonly` **Read**: `"read"` = `"read"`
229
+
230
+ To obtain data from the Asset.
231
+
232
+ ### Reproduce
233
+
234
+ > `readonly` **Reproduce**: `"reproduce"` = `"reproduce"`
235
+
236
+ To make duplicate copies of the Asset in any material form.
237
+
238
+ ### Reproduction
239
+
240
+ > `readonly` **Reproduction**: `"reproduction"` = `"reproduction"`
241
+
242
+ Making multiple copies.
243
+
244
+ ### ReviewPolicy
245
+
246
+ > `readonly` **ReviewPolicy**: `"reviewPolicy"` = `"reviewPolicy"`
247
+
248
+ To review the Policy applicable to the Asset.
249
+
250
+ ### Sell
251
+
252
+ > `readonly` **Sell**: `"sell"` = `"sell"`
253
+
254
+ To transfer the ownership with compensation and while deleting the original asset.
255
+
256
+ ### ShareAlike
257
+
258
+ > `readonly` **ShareAlike**: `"shareAlike"` = `"shareAlike"`
259
+
260
+ Derivative works be licensed under the same terms or compatible terms.
261
+
262
+ ### Sharing
263
+
264
+ > `readonly` **Sharing**: `"sharing"` = `"sharing"`
265
+
266
+ Permits commercial derivatives, but only non-commercial distribution.
267
+
268
+ ### SourceCode
269
+
270
+ > `readonly` **SourceCode**: `"sourceCode"` = `"sourceCode"`
271
+
272
+ Source code must be provided when exercising some rights.
273
+
274
+ ### Stream
275
+
276
+ > `readonly` **Stream**: `"stream"` = `"stream"`
277
+
278
+ To deliver the Asset in real-time.
279
+
280
+ ### Synchronize
281
+
282
+ > `readonly` **Synchronize**: `"synchronize"` = `"synchronize"`
283
+
284
+ To use the Asset in timed relations with media elements of another Asset.
285
+
286
+ ### TextToSpeech
287
+
288
+ > `readonly` **TextToSpeech**: `"textToSpeech"` = `"textToSpeech"`
289
+
290
+ To have a text Asset read out loud.
291
+
292
+ ### Transform
293
+
294
+ > `readonly` **Transform**: `"transform"` = `"transform"`
295
+
296
+ To convert the Asset into a different format.
297
+
298
+ ### Translate
299
+
300
+ > `readonly` **Translate**: `"translate"` = `"translate"`
301
+
302
+ To translate the Asset into another natural language.
303
+
304
+ ### Uninstall
305
+
306
+ > `readonly` **Uninstall**: `"uninstall"` = `"uninstall"`
307
+
308
+ To unload and delete the computer program Asset.
309
+
310
+ ### Watermark
311
+
312
+ > `readonly` **Watermark**: `"watermark"` = `"watermark"`
313
+
314
+ To apply a watermark to the Asset.
@@ -0,0 +1,25 @@
1
+ # Variable: ConflictStrategyTypes
2
+
3
+ > `const` **ConflictStrategyTypes**: `object`
4
+
5
+ The types for ODRL Conflict Resolution Strategies.
6
+
7
+ ## Type declaration
8
+
9
+ ### Perm
10
+
11
+ > `readonly` **Perm**: `"perm"` = `"perm"`
12
+
13
+ Permission type.
14
+
15
+ ### Prohibit
16
+
17
+ > `readonly` **Prohibit**: `"prohibit"` = `"prohibit"`
18
+
19
+ Prohibition type.
20
+
21
+ ### Invalid
22
+
23
+ > `readonly` **Invalid**: `"invalid"` = `"invalid"`
24
+
25
+ Invalid type.
@@ -0,0 +1,49 @@
1
+ # Variable: DataType
2
+
3
+ > `const` **DataType**: `object`
4
+
5
+ The types for ODRL Data Types.
6
+
7
+ ## Type declaration
8
+
9
+ ### String
10
+
11
+ > `readonly` **String**: `"xsd:string"` = `"xsd:string"`
12
+
13
+ String type.
14
+
15
+ ### Boolean
16
+
17
+ > `readonly` **Boolean**: `"xsd:boolean"` = `"xsd:boolean"`
18
+
19
+ Boolean type.
20
+
21
+ ### Integer
22
+
23
+ > `readonly` **Integer**: `"xsd:integer"` = `"xsd:integer"`
24
+
25
+ Integer type.
26
+
27
+ ### Decimal
28
+
29
+ > `readonly` **Decimal**: `"xsd:decimal"` = `"xsd:decimal"`
30
+
31
+ Decimal type.
32
+
33
+ ### Double
34
+
35
+ > `readonly` **Double**: `"xsd:double"` = `"xsd:double"`
36
+
37
+ Double type.
38
+
39
+ ### Date
40
+
41
+ > `readonly` **Date**: `"xsd:date"` = `"xsd:date"`
42
+
43
+ Date type.
44
+
45
+ ### DateTime
46
+
47
+ > `readonly` **DateTime**: `"xsd:dateTime"` = `"xsd:dateTime"`
48
+
49
+ DateTime type.