@twin.org/standards-gaia-x 0.0.2-next.9 → 0.0.3-next.1

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 (56) hide show
  1. package/dist/es/dataTypes/gaiaXDataTypes.js +56 -0
  2. package/dist/es/dataTypes/gaiaXDataTypes.js.map +1 -0
  3. package/dist/es/index.js +14 -0
  4. package/dist/es/index.js.map +1 -0
  5. package/dist/es/models/IAddress.js +2 -0
  6. package/dist/es/models/IAddress.js.map +1 -0
  7. package/dist/es/models/IDataExchangeComponent.js +2 -0
  8. package/dist/es/models/IDataExchangeComponent.js.map +1 -0
  9. package/dist/es/models/IDataResource.js +2 -0
  10. package/dist/es/models/IDataResource.js.map +1 -0
  11. package/dist/es/models/IEndpoint.js +2 -0
  12. package/dist/es/models/IEndpoint.js.map +1 -0
  13. package/dist/es/models/IGaiaXEntity.js +2 -0
  14. package/dist/es/models/IGaiaXEntity.js.map +1 -0
  15. package/dist/es/models/ILegalPerson.js +2 -0
  16. package/dist/es/models/ILegalPerson.js.map +1 -0
  17. package/dist/es/models/IRegistrationNumber.js +2 -0
  18. package/dist/es/models/IRegistrationNumber.js.map +1 -0
  19. package/dist/es/models/IServiceOffering.js +2 -0
  20. package/dist/es/models/IServiceOffering.js.map +1 -0
  21. package/dist/es/models/gaiaXContextType.js +2 -0
  22. package/dist/es/models/gaiaXContextType.js.map +1 -0
  23. package/dist/es/models/gaiaXContexts.js +13 -0
  24. package/dist/es/models/gaiaXContexts.js.map +1 -0
  25. package/dist/es/models/gaiaXTypes.js +61 -0
  26. package/dist/es/models/gaiaXTypes.js.map +1 -0
  27. package/dist/es/schemas/Address.json +115 -0
  28. package/dist/es/schemas/DataExchangeComponent.json +170 -0
  29. package/dist/es/schemas/DataResource.json +329 -0
  30. package/dist/es/schemas/Endpoint.json +120 -0
  31. package/dist/es/schemas/LegalPerson.json +407 -0
  32. package/dist/es/schemas/RegistrationNumber.json +152 -0
  33. package/dist/es/schemas/ServiceOffering.json +429 -0
  34. package/dist/types/index.d.ts +11 -11
  35. package/dist/types/models/IAddress.d.ts +1 -1
  36. package/dist/types/models/IDataExchangeComponent.d.ts +2 -2
  37. package/dist/types/models/IDataResource.d.ts +7 -6
  38. package/dist/types/models/IEndpoint.d.ts +1 -1
  39. package/dist/types/models/IGaiaXEntity.d.ts +1 -1
  40. package/dist/types/models/ILegalPerson.d.ts +4 -4
  41. package/dist/types/models/IRegistrationNumber.d.ts +1 -1
  42. package/dist/types/models/IServiceOffering.d.ts +8 -7
  43. package/dist/types/models/gaiaXContextType.d.ts +1 -1
  44. package/dist/types/models/gaiaXContexts.d.ts +1 -5
  45. package/docs/changelog.md +97 -0
  46. package/docs/reference/interfaces/IAddress.md +2 -2
  47. package/docs/reference/interfaces/IDataExchangeComponent.md +1 -1
  48. package/docs/reference/interfaces/IDataResource.md +2 -2
  49. package/docs/reference/interfaces/IEndpoint.md +2 -2
  50. package/docs/reference/interfaces/ILegalPerson.md +1 -1
  51. package/docs/reference/interfaces/IRegistrationNumber.md +1 -1
  52. package/docs/reference/interfaces/IServiceOffering.md +4 -4
  53. package/docs/reference/variables/GaiaXContexts.md +1 -7
  54. package/package.json +22 -9
  55. package/dist/cjs/index.cjs +0 -1935
  56. package/dist/esm/index.mjs +0 -1931
@@ -0,0 +1,429 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://schema.twindev.org/gaia-x-loire/ServiceOffering",
4
+ "description": "A Service offering",
5
+ "type": "object",
6
+ "properties": {
7
+ "@context": {
8
+ "description": "The Gaia-X JSON-LD context type.",
9
+ "anyOf": [
10
+ {
11
+ "type": "string",
12
+ "const": "https://schema.twindev.org/gaia-x-loire/"
13
+ },
14
+ {
15
+ "type": "array",
16
+ "minItems": 2,
17
+ "items": {
18
+ "anyOf": [
19
+ {
20
+ "type": "string",
21
+ "const": "https://schema.twindev.org/gaia-x-loire/"
22
+ },
23
+ {
24
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
25
+ }
26
+ ]
27
+ },
28
+ "additionalItems": {
29
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
30
+ }
31
+ },
32
+ {
33
+ "type": "array",
34
+ "minItems": 2,
35
+ "items": {
36
+ "anyOf": [
37
+ {
38
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
39
+ },
40
+ {
41
+ "type": "string",
42
+ "const": "https://schema.twindev.org/gaia-x-loire/"
43
+ }
44
+ ]
45
+ },
46
+ "additionalItems": {
47
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
48
+ }
49
+ }
50
+ ]
51
+ },
52
+ "@id": {
53
+ "anyOf": [
54
+ {
55
+ "type": "string"
56
+ },
57
+ {
58
+ "type": "array",
59
+ "items": {
60
+ "type": "string"
61
+ }
62
+ }
63
+ ]
64
+ },
65
+ "@included": {
66
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
67
+ },
68
+ "@graph": {
69
+ "anyOf": [
70
+ {
71
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
72
+ },
73
+ {
74
+ "type": "array",
75
+ "items": {
76
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
77
+ }
78
+ }
79
+ ]
80
+ },
81
+ "@nest": {
82
+ "anyOf": [
83
+ {
84
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
85
+ },
86
+ {
87
+ "type": "array",
88
+ "items": {
89
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
90
+ }
91
+ }
92
+ ]
93
+ },
94
+ "@type": {
95
+ "anyOf": [
96
+ {
97
+ "type": "string"
98
+ },
99
+ {
100
+ "type": "array",
101
+ "items": {
102
+ "type": "string"
103
+ }
104
+ }
105
+ ]
106
+ },
107
+ "@reverse": {
108
+ "type": "object",
109
+ "additionalProperties": {
110
+ "type": "string"
111
+ }
112
+ },
113
+ "@index": {
114
+ "type": "string"
115
+ },
116
+ "id": {
117
+ "type": "string",
118
+ "description": "The Id."
119
+ },
120
+ "name": {
121
+ "type": "string",
122
+ "description": "Name of the Service Offering."
123
+ },
124
+ "description": {
125
+ "type": "string",
126
+ "description": "Description of the Gaia-X entity."
127
+ },
128
+ "type": {
129
+ "type": "string",
130
+ "const": "ServiceOffering",
131
+ "description": "Type"
132
+ },
133
+ "providedBy": {
134
+ "anyOf": [
135
+ {
136
+ "type": "string"
137
+ },
138
+ {
139
+ "$ref": "https://schema.twindev.org/gaia-x-loire/LegalPerson"
140
+ },
141
+ {
142
+ "type": "object",
143
+ "additionalProperties": {
144
+ "anyOf": [
145
+ {
146
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
147
+ },
148
+ {
149
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
150
+ },
151
+ {
152
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
153
+ },
154
+ {
155
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
156
+ },
157
+ {
158
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
159
+ },
160
+ {
161
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
162
+ },
163
+ {
164
+ "type": "array"
165
+ }
166
+ ]
167
+ },
168
+ "properties": {
169
+ "id": {
170
+ "type": "string"
171
+ },
172
+ "type": {
173
+ "type": "string",
174
+ "const": "LegalPerson"
175
+ },
176
+ "@context": {
177
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
178
+ },
179
+ "@id": {
180
+ "anyOf": [
181
+ {
182
+ "type": "string"
183
+ },
184
+ {
185
+ "type": "array",
186
+ "items": {
187
+ "type": "string"
188
+ }
189
+ }
190
+ ]
191
+ },
192
+ "@included": {
193
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
194
+ },
195
+ "@graph": {
196
+ "anyOf": [
197
+ {
198
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
199
+ },
200
+ {
201
+ "type": "array",
202
+ "items": {
203
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
204
+ }
205
+ }
206
+ ]
207
+ },
208
+ "@nest": {
209
+ "anyOf": [
210
+ {
211
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
212
+ },
213
+ {
214
+ "type": "array",
215
+ "items": {
216
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
217
+ }
218
+ }
219
+ ]
220
+ },
221
+ "@type": {
222
+ "anyOf": [
223
+ {
224
+ "type": "string"
225
+ },
226
+ {
227
+ "type": "array",
228
+ "items": {
229
+ "type": "string"
230
+ }
231
+ }
232
+ ]
233
+ },
234
+ "@reverse": {
235
+ "type": "object",
236
+ "additionalProperties": {
237
+ "type": "string"
238
+ }
239
+ },
240
+ "@index": {
241
+ "type": "string"
242
+ }
243
+ },
244
+ "required": [
245
+ "id",
246
+ "type"
247
+ ]
248
+ }
249
+ ],
250
+ "description": "Participant that provides the offering"
251
+ },
252
+ "servicePolicy": {
253
+ "description": "Object or array data type",
254
+ "anyOf": [
255
+ {
256
+ "$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
257
+ },
258
+ {
259
+ "type": "array",
260
+ "items": {
261
+ "$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
262
+ }
263
+ }
264
+ ]
265
+ },
266
+ "aggregationOfResources": {
267
+ "anyOf": [
268
+ {
269
+ "type": "array",
270
+ "items": {
271
+ "type": "string"
272
+ }
273
+ },
274
+ {
275
+ "type": "array",
276
+ "items": {
277
+ "$ref": "https://schema.twindev.org/gaia-x-loire/DataResource"
278
+ }
279
+ },
280
+ {
281
+ "type": "object",
282
+ "additionalProperties": {
283
+ "anyOf": [
284
+ {
285
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
286
+ },
287
+ {
288
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
289
+ },
290
+ {
291
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
292
+ },
293
+ {
294
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
295
+ },
296
+ {
297
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
298
+ },
299
+ {
300
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
301
+ },
302
+ {
303
+ "type": "array"
304
+ }
305
+ ]
306
+ },
307
+ "properties": {
308
+ "id": {
309
+ "type": "string"
310
+ },
311
+ "type": {
312
+ "type": "string",
313
+ "const": "DataResource"
314
+ },
315
+ "@context": {
316
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
317
+ },
318
+ "@id": {
319
+ "anyOf": [
320
+ {
321
+ "type": "string"
322
+ },
323
+ {
324
+ "type": "array",
325
+ "items": {
326
+ "type": "string"
327
+ }
328
+ }
329
+ ]
330
+ },
331
+ "@included": {
332
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
333
+ },
334
+ "@graph": {
335
+ "anyOf": [
336
+ {
337
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
338
+ },
339
+ {
340
+ "type": "array",
341
+ "items": {
342
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
343
+ }
344
+ }
345
+ ]
346
+ },
347
+ "@nest": {
348
+ "anyOf": [
349
+ {
350
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
351
+ },
352
+ {
353
+ "type": "array",
354
+ "items": {
355
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
356
+ }
357
+ }
358
+ ]
359
+ },
360
+ "@type": {
361
+ "anyOf": [
362
+ {
363
+ "type": "string"
364
+ },
365
+ {
366
+ "type": "array",
367
+ "items": {
368
+ "type": "string"
369
+ }
370
+ }
371
+ ]
372
+ },
373
+ "@reverse": {
374
+ "type": "object",
375
+ "additionalProperties": {
376
+ "type": "string"
377
+ }
378
+ },
379
+ "@index": {
380
+ "type": "string"
381
+ }
382
+ },
383
+ "required": [
384
+ "id",
385
+ "type"
386
+ ]
387
+ }
388
+ ],
389
+ "description": "Resources aggregated It is supported different representations, inline, by reference both providing the URI or a partial JSON-LD Node object"
390
+ },
391
+ "endpoint": {
392
+ "$ref": "https://schema.twindev.org/gaia-x-loire/Endpoint",
393
+ "description": "The endpoint"
394
+ }
395
+ },
396
+ "required": [
397
+ "@context",
398
+ "id",
399
+ "name",
400
+ "providedBy",
401
+ "servicePolicy",
402
+ "type"
403
+ ],
404
+ "additionalProperties": {
405
+ "anyOf": [
406
+ {
407
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
408
+ },
409
+ {
410
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
411
+ },
412
+ {
413
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
414
+ },
415
+ {
416
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
417
+ },
418
+ {
419
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
420
+ },
421
+ {
422
+ "$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
423
+ },
424
+ {
425
+ "type": "array"
426
+ }
427
+ ]
428
+ }
429
+ }
@@ -1,11 +1,11 @@
1
- export * from "./dataTypes/gaiaXDataTypes";
2
- export * from "./models/gaiaXContexts";
3
- export * from "./models/gaiaXContextType";
4
- export * from "./models/gaiaXTypes";
5
- export * from "./models/IAddress";
6
- export * from "./models/IDataExchangeComponent";
7
- export * from "./models/IDataResource";
8
- export * from "./models/IEndpoint";
9
- export * from "./models/ILegalPerson";
10
- export * from "./models/IRegistrationNumber";
11
- export * from "./models/IServiceOffering";
1
+ export * from "./dataTypes/gaiaXDataTypes.js";
2
+ export * from "./models/gaiaXContexts.js";
3
+ export * from "./models/gaiaXContextType.js";
4
+ export * from "./models/gaiaXTypes.js";
5
+ export * from "./models/IAddress.js";
6
+ export * from "./models/IDataExchangeComponent.js";
7
+ export * from "./models/IDataResource.js";
8
+ export * from "./models/IEndpoint.js";
9
+ export * from "./models/ILegalPerson.js";
10
+ export * from "./models/IRegistrationNumber.js";
11
+ export * from "./models/IServiceOffering.js";
@@ -1,5 +1,5 @@
1
1
  import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
2
- import type { GaiaXTypes } from "./gaiaXTypes";
2
+ import type { GaiaXTypes } from "./gaiaXTypes.js";
3
3
  /**
4
4
  * Address as defined by Gaia-X
5
5
  * https://docs.gaia-x.eu/ontology/development/classes/Address/
@@ -1,6 +1,6 @@
1
1
  import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
2
- import type { GaiaXContextType } from "./gaiaXContextType";
3
- import type { GaiaXTypes } from "./gaiaXTypes";
2
+ import type { GaiaXContextType } from "./gaiaXContextType.js";
3
+ import type { GaiaXTypes } from "./gaiaXTypes.js";
4
4
  /**
5
5
  * Data Exchange component as defined by Gaia-X
6
6
  * https://docs.gaia-x.eu/ontology/development/classes/DataExchangeComponent
@@ -1,10 +1,11 @@
1
1
  import type { ObjectOrArray } from "@twin.org/core";
2
2
  import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
3
- import type { GaiaXContextType } from "./gaiaXContextType";
4
- import type { GaiaXTypes } from "./gaiaXTypes";
5
- import type { IDataExchangeComponent } from "./IDataExchangeComponent";
6
- import type { IGaiaXEntity } from "./IGaiaXEntity";
7
- import type { ILegalPerson } from "./ILegalPerson";
3
+ import type { IOdrlPolicy } from "@twin.org/standards-w3c-odrl";
4
+ import type { GaiaXContextType } from "./gaiaXContextType.js";
5
+ import type { GaiaXTypes } from "./gaiaXTypes.js";
6
+ import type { IDataExchangeComponent } from "./IDataExchangeComponent.js";
7
+ import type { IGaiaXEntity } from "./IGaiaXEntity.js";
8
+ import type { ILegalPerson } from "./ILegalPerson.js";
8
9
  /**
9
10
  * A Data Resource as defined by Gaia-X.
10
11
  * See also W3C DCAT Dataset https://www.w3.org/TR/vocab-dcat-3/.
@@ -50,5 +51,5 @@ export interface IDataResource extends IGaiaXEntity {
50
51
  /**
51
52
  * ODRL Policy
52
53
  */
53
- resourcePolicy: ObjectOrArray<IJsonLdNodeObject>;
54
+ resourcePolicy: ObjectOrArray<IOdrlPolicy>;
54
55
  }
@@ -1,5 +1,5 @@
1
1
  import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
2
- import type { GaiaXTypes } from "./gaiaXTypes";
2
+ import type { GaiaXTypes } from "./gaiaXTypes.js";
3
3
  /**
4
4
  * Endpoint as defined by the Gaia-X ontology.
5
5
  * https://docs.gaia-x.eu/ontology/development/classes/Endpoint
@@ -1,5 +1,5 @@
1
1
  import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
2
- import type { GaiaXContextType } from "./gaiaXContextType";
2
+ import type { GaiaXContextType } from "./gaiaXContextType.js";
3
3
  /**
4
4
  * GaiaX Entity.
5
5
  * @see https://docs.gaia-x.eu/ontology/development/classes/GaiaXEntity/
@@ -1,8 +1,8 @@
1
1
  import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
2
- import type { GaiaXTypes } from "./gaiaXTypes";
3
- import type { IAddress } from "./IAddress";
4
- import type { IGaiaXEntity } from "./IGaiaXEntity";
5
- import type { IRegistrationNumber } from "./IRegistrationNumber";
2
+ import type { GaiaXTypes } from "./gaiaXTypes.js";
3
+ import type { IAddress } from "./IAddress.js";
4
+ import type { IGaiaXEntity } from "./IGaiaXEntity.js";
5
+ import type { IRegistrationNumber } from "./IRegistrationNumber.js";
6
6
  /**
7
7
  * A Legal Person as defined by Gaia-X.
8
8
  * @see https://docs.gaia-x.eu/ontology/development/classes/LegalPerson/.
@@ -1,5 +1,5 @@
1
1
  import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
2
- import type { GaiaXTypes } from "./gaiaXTypes";
2
+ import type { GaiaXTypes } from "./gaiaXTypes.js";
3
3
  /**
4
4
  * Registration Number as defined by the Gaia-X ontology.
5
5
  * https://docs.gaia-x.eu/ontology/development/classes/RegistrationNumber/
@@ -1,10 +1,11 @@
1
1
  import type { ObjectOrArray } from "@twin.org/core";
2
2
  import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
3
- import type { GaiaXTypes } from "./gaiaXTypes";
4
- import type { IDataResource } from "./IDataResource";
5
- import type { IEndpoint } from "./IEndpoint";
6
- import type { IGaiaXEntity } from "./IGaiaXEntity";
7
- import type { ILegalPerson } from "./ILegalPerson";
3
+ import type { IOdrlPolicy } from "@twin.org/standards-w3c-odrl";
4
+ import type { GaiaXTypes } from "./gaiaXTypes.js";
5
+ import type { IDataResource } from "./IDataResource.js";
6
+ import type { IEndpoint } from "./IEndpoint.js";
7
+ import type { IGaiaXEntity } from "./IGaiaXEntity.js";
8
+ import type { ILegalPerson } from "./ILegalPerson.js";
8
9
  /**
9
10
  * A Service offering
10
11
  */
@@ -27,7 +28,7 @@ export interface IServiceOffering extends IGaiaXEntity {
27
28
  /**
28
29
  * ODRL policy associated to the service offering
29
30
  */
30
- servicePolicy: ObjectOrArray<IJsonLdNodeObject>;
31
+ servicePolicy: ObjectOrArray<IOdrlPolicy>;
31
32
  /**
32
33
  * Resources aggregated
33
34
  * It is supported different representations, inline,
@@ -40,5 +41,5 @@ export interface IServiceOffering extends IGaiaXEntity {
40
41
  /**
41
42
  * The endpoint
42
43
  */
43
- endpoint: IEndpoint;
44
+ endpoint?: IEndpoint;
44
45
  }
@@ -1,5 +1,5 @@
1
1
  import type { IJsonLdContextDefinitionElement } from "@twin.org/data-json-ld";
2
- import type { GaiaXContexts } from "./gaiaXContexts";
2
+ import type { GaiaXContexts } from "./gaiaXContexts.js";
3
3
  /**
4
4
  * The Gaia-X JSON-LD context type.
5
5
  */
@@ -5,11 +5,7 @@ export declare const GaiaXContexts: {
5
5
  /**
6
6
  * The Gaia-X LD Context
7
7
  */
8
- readonly ContextRoot: "https://w3id.org/gaia-x/development";
9
- /**
10
- * The Gaia-X custom context.
11
- */
12
- readonly TwinContext: "https://schema.twindev.org/gaia-x";
8
+ readonly ContextRoot: "https://schema.twindev.org/gaia-x-loire/";
13
9
  };
14
10
  /**
15
11
  * The LD Contexts concerning Gaia-X.