@twin.org/standards-gaia-x 0.0.1-next.30 → 0.0.1-next.32
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.
|
@@ -2,6 +2,7 @@ import type { IJsonLdContextDefinitionElement, IJsonLdNodeObject } from "@twin.o
|
|
|
2
2
|
import type { GaiaXContexts } from "./gaiaXContexts";
|
|
3
3
|
import type { GaiaXTypes } from "./gaiaXTypes";
|
|
4
4
|
import type { IDataExchangeComponent } from "./IDataExchangeComponent";
|
|
5
|
+
import type { IParticipant } from "./IParticipant";
|
|
5
6
|
/**
|
|
6
7
|
* A Data Resource as defined by Gaia-X.
|
|
7
8
|
* See also W3C DCAT Dataset https://www.w3.org/TR/vocab-dcat-3/.
|
|
@@ -39,7 +40,7 @@ export interface IDataResource extends IJsonLdNodeObject {
|
|
|
39
40
|
/**
|
|
40
41
|
* Who is the data producer
|
|
41
42
|
*/
|
|
42
|
-
producedBy: string;
|
|
43
|
+
producedBy: IParticipant | string;
|
|
43
44
|
/**
|
|
44
45
|
* Pointer (URL) to the license
|
|
45
46
|
*/
|
|
@@ -47,7 +48,7 @@ export interface IDataResource extends IJsonLdNodeObject {
|
|
|
47
48
|
/**
|
|
48
49
|
* Copyright owner
|
|
49
50
|
*/
|
|
50
|
-
copyrightOwnedBy: string;
|
|
51
|
+
copyrightOwnedBy: IParticipant | string;
|
|
51
52
|
/**
|
|
52
53
|
* ODRL Policy
|
|
53
54
|
*/
|
package/docs/changelog.md
CHANGED
|
@@ -69,7 +69,7 @@ the third case covers the idiom where a JSON-LD Node is supplied with id and typ
|
|
|
69
69
|
|
|
70
70
|
### producedBy
|
|
71
71
|
|
|
72
|
-
> **producedBy**: `string`
|
|
72
|
+
> **producedBy**: `string` \| [`IParticipant`](IParticipant.md)
|
|
73
73
|
|
|
74
74
|
Who is the data producer
|
|
75
75
|
|
|
@@ -85,7 +85,7 @@ Pointer (URL) to the license
|
|
|
85
85
|
|
|
86
86
|
### copyrightOwnedBy
|
|
87
87
|
|
|
88
|
-
> **copyrightOwnedBy**: `string`
|
|
88
|
+
> **copyrightOwnedBy**: `string` \| [`IParticipant`](IParticipant.md)
|
|
89
89
|
|
|
90
90
|
Copyright owner
|
|
91
91
|
|