@twin.org/standards-gaia-x 0.0.3-next.41 → 0.0.3-next.43
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/es/models/IGaiaXAddress.js.map +1 -1
- package/dist/es/models/IGaiaXDataExchangeComponent.js.map +1 -1
- package/dist/es/models/IGaiaXEndpoint.js.map +1 -1
- package/dist/es/models/IGaiaXEntity.js.map +1 -1
- package/dist/es/models/IGaiaXRegistrationNumber.js.map +1 -1
- package/dist/types/models/IGaiaXAddress.d.ts +1 -2
- package/dist/types/models/IGaiaXDataExchangeComponent.d.ts +1 -2
- package/dist/types/models/IGaiaXEndpoint.d.ts +1 -1
- package/dist/types/models/IGaiaXEntity.d.ts +1 -2
- package/dist/types/models/IGaiaXRegistrationNumber.d.ts +1 -2
- package/docs/changelog.md +28 -0
- package/docs/reference/interfaces/IGaiaXAddress.md +0 -8
- package/docs/reference/interfaces/IGaiaXDataExchangeComponent.md +0 -12
- package/docs/reference/interfaces/IGaiaXDataResource.md +0 -4
- package/docs/reference/interfaces/IGaiaXEndpoint.md +0 -8
- package/docs/reference/interfaces/IGaiaXLegalPerson.md +0 -4
- package/docs/reference/interfaces/IGaiaXRegistrationNumber.md +0 -8
- package/docs/reference/interfaces/IGaiaXServiceOffering.md +1 -5
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IGaiaXAddress.js","sourceRoot":"","sources":["../../../src/models/IGaiaXAddress.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type {
|
|
1
|
+
{"version":3,"file":"IGaiaXAddress.js","sourceRoot":"","sources":["../../../src/models/IGaiaXAddress.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { GaiaXTypes } from \"./gaiaXTypes.js\";\n\n/**\n * Address as defined by Gaia-X\n * https://docs.gaia-x.eu/ontology/development/classes/Address/\n */\nexport interface IGaiaXAddress {\n\t/**\n\t * JSON-LD @ type. In this case it is allowed to be omitted as it is usually a child node.\n\t */\n\ttype: typeof GaiaXTypes.Address | undefined;\n\n\t/**\n\t * Country code in ISO 3166-1 alpha2, alpha-3 or numeric format\n\t */\n\tcountryCode: string | number;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IGaiaXDataExchangeComponent.js","sourceRoot":"","sources":["../../../src/models/IGaiaXDataExchangeComponent.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type {
|
|
1
|
+
{"version":3,"file":"IGaiaXDataExchangeComponent.js","sourceRoot":"","sources":["../../../src/models/IGaiaXDataExchangeComponent.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { GaiaXContextType } from \"./gaiaXContextType.js\";\nimport type { GaiaXTypes } from \"./gaiaXTypes.js\";\n\n/**\n * Data Exchange component as defined by Gaia-X\n * https://docs.gaia-x.eu/ontology/development/classes/DataExchangeComponent\n */\nexport interface IGaiaXDataExchangeComponent {\n\t/**\n\t * The LD Context\n\t */\n\t\"@context\": GaiaXContextType;\n\n\t/**\n\t * The type of JSON-LD node\n\t */\n\ttype:\n\t\t| typeof GaiaXTypes.DataExchangeComponent\n\t\t| [typeof GaiaXTypes.DataExchangeComponent, ...string[]];\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IGaiaXEndpoint.js","sourceRoot":"","sources":["../../../src/models/IGaiaXEndpoint.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IJsonLdNodeObject } from \"@twin.org/data-json-ld\";\nimport type { GaiaXTypes } from \"./gaiaXTypes.js\";\n\n/**\n * Endpoint as defined by the Gaia-X ontology.\n * https://docs.gaia-x.eu/ontology/development/classes/Endpoint\n */\nexport interface IGaiaXEndpoint
|
|
1
|
+
{"version":3,"file":"IGaiaXEndpoint.js","sourceRoot":"","sources":["../../../src/models/IGaiaXEndpoint.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IJsonLdNodeObject } from \"@twin.org/data-json-ld\";\nimport type { GaiaXTypes } from \"./gaiaXTypes.js\";\n\n/**\n * Endpoint as defined by the Gaia-X ontology.\n * https://docs.gaia-x.eu/ontology/development/classes/Endpoint\n */\nexport interface IGaiaXEndpoint {\n\t/**\n\t * The type of JSON-LD node. In this case it is allowed to be omitted as it is usually a child node.\n\t */\n\ttype: typeof GaiaXTypes.Endpoint | undefined;\n\n\t/**\n\t * The endpoint URL\n\t */\n\tendpointURL: string;\n\n\t/**\n\t * The formal description\n\t */\n\tformalDescription?: string;\n\n\t/**\n\t * Standards conformity\n\t */\n\tstandardConformity?: IJsonLdNodeObject;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IGaiaXEntity.js","sourceRoot":"","sources":["../../../src/models/IGaiaXEntity.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type {
|
|
1
|
+
{"version":3,"file":"IGaiaXEntity.js","sourceRoot":"","sources":["../../../src/models/IGaiaXEntity.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { GaiaXContextType } from \"./gaiaXContextType.js\";\n\n/**\n * GaiaX Entity.\n * @see https://docs.gaia-x.eu/ontology/development/classes/GaiaXEntity/\n */\nexport interface IGaiaXEntity {\n\t/**\n\t * The LD context.\n\t */\n\t\"@context\": GaiaXContextType;\n\n\t/**\n\t * The Id.\n\t */\n\tid: string;\n\n\t/**\n\t * Human readable Name.\n\t */\n\tname?: string;\n\n\t/**\n\t * Description of the Gaia-X entity.\n\t */\n\tdescription?: string;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IGaiaXRegistrationNumber.js","sourceRoot":"","sources":["../../../src/models/IGaiaXRegistrationNumber.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type {
|
|
1
|
+
{"version":3,"file":"IGaiaXRegistrationNumber.js","sourceRoot":"","sources":["../../../src/models/IGaiaXRegistrationNumber.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { GaiaXTypes } from \"./gaiaXTypes.js\";\n\n/**\n * Registration Number as defined by the Gaia-X ontology.\n * https://docs.gaia-x.eu/ontology/development/classes/RegistrationNumber/\n */\nexport interface IGaiaXRegistrationNumber {\n\t/**\n\t * JSON-LD Type.\n\t */\n\ttype:\n\t\t| typeof GaiaXTypes.RegistrationNumber\n\t\t| typeof GaiaXTypes.LocalRegistrationNumber\n\t\t| typeof GaiaXTypes.EORI\n\t\t| typeof GaiaXTypes.EUID\n\t\t| typeof GaiaXTypes.LeiCode\n\t\t| typeof GaiaXTypes.TaxID\n\t\t| typeof GaiaXTypes.VatID;\n\n\t/**\n\t * Local Registration.\n\t */\n\tlocal?: string;\n\n\t/**\n\t * Country code. See https://docs.gaia-x.eu/ontology/development/enums/CountryNameAlpha2/\n\t */\n\tcountryCode?: string;\n\n\t/**\n\t * Subdivision country code.\n\t * See https://docs.gaia-x.eu/ontology/development/enums/RegionCode/\n\t */\n\tsubdivisionCountryCode?: string;\n\n\t/**\n\t * The VAT identification number.\n\t */\n\tvatID?: string;\n\n\t/**\n\t * Unique LEI number as defined by GLEIF.\n\t */\n\tleiCode?: string;\n\n\t/**\n\t * The Economic Operators Registration and Identification number (EORI).\n\t */\n\teori?: string;\n\n\t/**\n\t * The country where the EORI is registered written in plain english\n\t */\n\tcountry?: string;\n\n\t/**\n\t * The European Unique Identifier (EUID) for business located in the European Ec.\n\t */\n\teuid?: string;\n\n\t/**\n\t * The company tax ID.\n\t */\n\ttaxId?: string;\n}\n"]}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
2
1
|
import type { GaiaXTypes } from "./gaiaXTypes.js";
|
|
3
2
|
/**
|
|
4
3
|
* Address as defined by Gaia-X
|
|
5
4
|
* https://docs.gaia-x.eu/ontology/development/classes/Address/
|
|
6
5
|
*/
|
|
7
|
-
export interface IGaiaXAddress
|
|
6
|
+
export interface IGaiaXAddress {
|
|
8
7
|
/**
|
|
9
8
|
* JSON-LD @ type. In this case it is allowed to be omitted as it is usually a child node.
|
|
10
9
|
*/
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
2
1
|
import type { GaiaXContextType } from "./gaiaXContextType.js";
|
|
3
2
|
import type { GaiaXTypes } from "./gaiaXTypes.js";
|
|
4
3
|
/**
|
|
5
4
|
* Data Exchange component as defined by Gaia-X
|
|
6
5
|
* https://docs.gaia-x.eu/ontology/development/classes/DataExchangeComponent
|
|
7
6
|
*/
|
|
8
|
-
export interface IGaiaXDataExchangeComponent
|
|
7
|
+
export interface IGaiaXDataExchangeComponent {
|
|
9
8
|
/**
|
|
10
9
|
* The LD Context
|
|
11
10
|
*/
|
|
@@ -4,7 +4,7 @@ import type { GaiaXTypes } from "./gaiaXTypes.js";
|
|
|
4
4
|
* Endpoint as defined by the Gaia-X ontology.
|
|
5
5
|
* https://docs.gaia-x.eu/ontology/development/classes/Endpoint
|
|
6
6
|
*/
|
|
7
|
-
export interface IGaiaXEndpoint
|
|
7
|
+
export interface IGaiaXEndpoint {
|
|
8
8
|
/**
|
|
9
9
|
* The type of JSON-LD node. In this case it is allowed to be omitted as it is usually a child node.
|
|
10
10
|
*/
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
2
1
|
import type { GaiaXContextType } from "./gaiaXContextType.js";
|
|
3
2
|
/**
|
|
4
3
|
* GaiaX Entity.
|
|
5
4
|
* @see https://docs.gaia-x.eu/ontology/development/classes/GaiaXEntity/
|
|
6
5
|
*/
|
|
7
|
-
export interface IGaiaXEntity
|
|
6
|
+
export interface IGaiaXEntity {
|
|
8
7
|
/**
|
|
9
8
|
* The LD context.
|
|
10
9
|
*/
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
2
1
|
import type { GaiaXTypes } from "./gaiaXTypes.js";
|
|
3
2
|
/**
|
|
4
3
|
* Registration Number as defined by the Gaia-X ontology.
|
|
5
4
|
* https://docs.gaia-x.eu/ontology/development/classes/RegistrationNumber/
|
|
6
5
|
*/
|
|
7
|
-
export interface IGaiaXRegistrationNumber
|
|
6
|
+
export interface IGaiaXRegistrationNumber {
|
|
8
7
|
/**
|
|
9
8
|
* JSON-LD Type.
|
|
10
9
|
*/
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @twin.org/standards-gaia-x - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.43](https://github.com/twinfoundation/standards/compare/standards-gaia-x-v0.0.3-next.42...standards-gaia-x-v0.0.3-next.43) (2026-02-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update schemas to support additional properties ([4679e21](https://github.com/twinfoundation/standards/commit/4679e21728a54cb587f120874841c3d1ed3771de))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.42](https://github.com/twinfoundation/standards/compare/standards-gaia-x-v0.0.3-next.41...standards-gaia-x-v0.0.3-next.42) (2026-02-25)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* remove IJsonLdNodeObject base interfaces ([#172](https://github.com/twinfoundation/standards/issues/172)) ([8ff8d7a](https://github.com/twinfoundation/standards/commit/8ff8d7a2892d626879b76ba5da912469ff899954))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @twin.org/standards-w3c-odrl bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
30
|
+
|
|
3
31
|
## [0.0.3-next.41](https://github.com/twinfoundation/standards/compare/standards-gaia-x-v0.0.3-next.40...standards-gaia-x-v0.0.3-next.41) (2026-02-23)
|
|
4
32
|
|
|
5
33
|
|
|
@@ -3,14 +3,6 @@
|
|
|
3
3
|
Address as defined by Gaia-X
|
|
4
4
|
https://docs.gaia-x.eu/ontology/development/classes/Address/
|
|
5
5
|
|
|
6
|
-
## Extends
|
|
7
|
-
|
|
8
|
-
- `IJsonLdNodeObject`
|
|
9
|
-
|
|
10
|
-
## Indexable
|
|
11
|
-
|
|
12
|
-
\[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
|
|
13
|
-
|
|
14
6
|
## Properties
|
|
15
7
|
|
|
16
8
|
### type
|
|
@@ -3,14 +3,6 @@
|
|
|
3
3
|
Data Exchange component as defined by Gaia-X
|
|
4
4
|
https://docs.gaia-x.eu/ontology/development/classes/DataExchangeComponent
|
|
5
5
|
|
|
6
|
-
## Extends
|
|
7
|
-
|
|
8
|
-
- `IJsonLdNodeObject`
|
|
9
|
-
|
|
10
|
-
## Indexable
|
|
11
|
-
|
|
12
|
-
\[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
|
|
13
|
-
|
|
14
6
|
## Properties
|
|
15
7
|
|
|
16
8
|
### @context
|
|
@@ -19,10 +11,6 @@ https://docs.gaia-x.eu/ontology/development/classes/DataExchangeComponent
|
|
|
19
11
|
|
|
20
12
|
The LD Context
|
|
21
13
|
|
|
22
|
-
#### Overrides
|
|
23
|
-
|
|
24
|
-
`IJsonLdNodeObject.@context`
|
|
25
|
-
|
|
26
14
|
***
|
|
27
15
|
|
|
28
16
|
### type
|
|
@@ -7,10 +7,6 @@ See also W3C DCAT Dataset https://www.w3.org/TR/vocab-dcat-3/.
|
|
|
7
7
|
|
|
8
8
|
- `IGaiaXEntity`
|
|
9
9
|
|
|
10
|
-
## Indexable
|
|
11
|
-
|
|
12
|
-
\[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
|
|
13
|
-
|
|
14
10
|
## Properties
|
|
15
11
|
|
|
16
12
|
### @context
|
|
@@ -3,14 +3,6 @@
|
|
|
3
3
|
Endpoint as defined by the Gaia-X ontology.
|
|
4
4
|
https://docs.gaia-x.eu/ontology/development/classes/Endpoint
|
|
5
5
|
|
|
6
|
-
## Extends
|
|
7
|
-
|
|
8
|
-
- `IJsonLdNodeObject`
|
|
9
|
-
|
|
10
|
-
## Indexable
|
|
11
|
-
|
|
12
|
-
\[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
|
|
13
|
-
|
|
14
6
|
## Properties
|
|
15
7
|
|
|
16
8
|
### type
|
|
@@ -10,10 +10,6 @@ https://docs.gaia-x.eu/ontology/development/classes/LegalPerson/.
|
|
|
10
10
|
|
|
11
11
|
- `IGaiaXEntity`
|
|
12
12
|
|
|
13
|
-
## Indexable
|
|
14
|
-
|
|
15
|
-
\[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
|
|
16
|
-
|
|
17
13
|
## Properties
|
|
18
14
|
|
|
19
15
|
### @context
|
|
@@ -3,14 +3,6 @@
|
|
|
3
3
|
Registration Number as defined by the Gaia-X ontology.
|
|
4
4
|
https://docs.gaia-x.eu/ontology/development/classes/RegistrationNumber/
|
|
5
5
|
|
|
6
|
-
## Extends
|
|
7
|
-
|
|
8
|
-
- `IJsonLdNodeObject`
|
|
9
|
-
|
|
10
|
-
## Indexable
|
|
11
|
-
|
|
12
|
-
\[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
|
|
13
|
-
|
|
14
6
|
## Properties
|
|
15
7
|
|
|
16
8
|
### type
|
|
@@ -6,10 +6,6 @@ A Service offering
|
|
|
6
6
|
|
|
7
7
|
- `IGaiaXEntity`
|
|
8
8
|
|
|
9
|
-
## Indexable
|
|
10
|
-
|
|
11
|
-
\[`key`: `string`\]: `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdContextDefinition` \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{\[`key`: `string`\]: `string`; \} \| `null` \| `undefined`
|
|
12
|
-
|
|
13
9
|
## Properties
|
|
14
10
|
|
|
15
11
|
### @context
|
|
@@ -86,7 +82,7 @@ ODRL policy associated to the service offering
|
|
|
86
82
|
|
|
87
83
|
### aggregationOfResources?
|
|
88
84
|
|
|
89
|
-
> `optional` **aggregationOfResources**: `string`[] \| [`IGaiaXDataResource`](IGaiaXDataResource.md)[]
|
|
85
|
+
> `optional` **aggregationOfResources**: `string`[] \| `IJsonLdNodeObject` & `object` \| [`IGaiaXDataResource`](IGaiaXDataResource.md)[]
|
|
90
86
|
|
|
91
87
|
Resources aggregated
|
|
92
88
|
It is supported different representations, inline,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/standards-gaia-x",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.43",
|
|
4
4
|
"description": "Models which define the structure of Gaia-x",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
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-w3c-odrl": "0.0.3-next.
|
|
20
|
+
"@twin.org/standards-w3c-odrl": "0.0.3-next.43"
|
|
21
21
|
},
|
|
22
22
|
"main": "./dist/es/index.js",
|
|
23
23
|
"types": "./dist/types/index.d.ts",
|