@twin.org/federated-catalogue-models 0.0.1-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/LICENSE +201 -0
- package/README.md +21 -0
- package/dist/cjs/index.cjs +1212 -0
- package/dist/esm/index.mjs +1206 -0
- package/dist/types/dataTypes/federatedCatalogueDataTypes.d.ts +9 -0
- package/dist/types/index.d.ts +42 -0
- package/dist/types/models/ICatalogueBase.d.ts +25 -0
- package/dist/types/models/ICatalogueEntry.d.ts +8 -0
- package/dist/types/models/IComplianceCredential.d.ts +37 -0
- package/dist/types/models/IComplianceEvidence.d.ts +26 -0
- package/dist/types/models/IComplianceVerificationResult.d.ts +19 -0
- package/dist/types/models/ICredential.d.ts +21 -0
- package/dist/types/models/IFederatedCatalogueComponent.d.ts +89 -0
- package/dist/types/models/IVerificationResult.d.ts +13 -0
- package/dist/types/models/api/ICatalogueEntryGetRequest.d.ts +15 -0
- package/dist/types/models/api/ICompliancePresentationRequest.d.ts +9 -0
- package/dist/types/models/api/IDataResourceGetResponse.d.ts +10 -0
- package/dist/types/models/api/IDataResourceListRequest.d.ts +27 -0
- package/dist/types/models/api/IDataResourceListResponse.d.ts +10 -0
- package/dist/types/models/api/IDataSpaceConnectorGetResponse.d.ts +10 -0
- package/dist/types/models/api/IDataSpaceConnectorListRequest.d.ts +27 -0
- package/dist/types/models/api/IDataSpaceConnectorListResponse.d.ts +10 -0
- package/dist/types/models/api/IFederatedCatalogueGetRequest.d.ts +12 -0
- package/dist/types/models/api/IParticipantGetResponse.d.ts +10 -0
- package/dist/types/models/api/IParticipantListRequest.d.ts +31 -0
- package/dist/types/models/api/IParticipantListResponse.d.ts +10 -0
- package/dist/types/models/api/IServiceOfferingGetResponse.d.ts +10 -0
- package/dist/types/models/api/IServiceOfferingListRequest.d.ts +27 -0
- package/dist/types/models/api/IServiceOfferingListResponse.d.ts +10 -0
- package/dist/types/models/data-resource/IDataResourceCredential.d.ts +11 -0
- package/dist/types/models/data-resource/IDataResourceEntry.d.ts +29 -0
- package/dist/types/models/data-resource/IDataResourceList.d.ts +25 -0
- package/dist/types/models/data-space-connector/IDataSpaceConnector.d.ts +77 -0
- package/dist/types/models/data-space-connector/IDataSpaceConnectorCredential.d.ts +11 -0
- package/dist/types/models/data-space-connector/IDataSpaceConnectorEntry.d.ts +18 -0
- package/dist/types/models/data-space-connector/IDataSpaceConnectorList.d.ts +25 -0
- package/dist/types/models/federatedCatalogueContextInstances.d.ts +14 -0
- package/dist/types/models/federatedCatalogueContextType.d.ts +11 -0
- package/dist/types/models/federatedCatalogueContexts.d.ts +13 -0
- package/dist/types/models/federatedCatalogueEntryType.d.ts +7 -0
- package/dist/types/models/federatedCatalogueTypes.d.ts +53 -0
- package/dist/types/models/participant/IParticipantCredential.d.ts +11 -0
- package/dist/types/models/participant/IParticipantEntry.d.ts +12 -0
- package/dist/types/models/participant/IParticipantList.d.ts +25 -0
- package/dist/types/models/service-offering/IServiceOfferingCredential.d.ts +11 -0
- package/dist/types/models/service-offering/IServiceOfferingEntry.d.ts +25 -0
- package/dist/types/models/service-offering/IServiceOfferingList.d.ts +25 -0
- package/dist/types/models/verificationFailureReasons.d.ts +53 -0
- package/docs/changelog.md +73 -0
- package/docs/examples.md +1 -0
- package/docs/reference/classes/FederatedCatalogueContextInstances.md +29 -0
- package/docs/reference/classes/FederatedCatalogueDataTypes.md +25 -0
- package/docs/reference/index.md +58 -0
- package/docs/reference/interfaces/ICatalogueEntryGetRequest.md +37 -0
- package/docs/reference/interfaces/IComplianceCredential.md +103 -0
- package/docs/reference/interfaces/IComplianceEvidence.md +45 -0
- package/docs/reference/interfaces/ICompliancePresentationRequest.md +11 -0
- package/docs/reference/interfaces/IComplianceVerificationResult.md +55 -0
- package/docs/reference/interfaces/ICredential.md +51 -0
- package/docs/reference/interfaces/IDataResourceCredential.md +43 -0
- package/docs/reference/interfaces/IDataResourceEntry.md +131 -0
- package/docs/reference/interfaces/IDataResourceGetResponse.md +11 -0
- package/docs/reference/interfaces/IDataResourceList.md +35 -0
- package/docs/reference/interfaces/IDataResourceListRequest.md +55 -0
- package/docs/reference/interfaces/IDataResourceListResponse.md +11 -0
- package/docs/reference/interfaces/IDataSpaceConnector.md +130 -0
- package/docs/reference/interfaces/IDataSpaceConnectorCredential.md +43 -0
- package/docs/reference/interfaces/IDataSpaceConnectorEntry.md +224 -0
- package/docs/reference/interfaces/IDataSpaceConnectorGetResponse.md +11 -0
- package/docs/reference/interfaces/IDataSpaceConnectorList.md +35 -0
- package/docs/reference/interfaces/IDataSpaceConnectorListRequest.md +55 -0
- package/docs/reference/interfaces/IDataSpaceConnectorListResponse.md +11 -0
- package/docs/reference/interfaces/IFederatedCatalogueComponent.md +313 -0
- package/docs/reference/interfaces/IFederatedCatalogueGetRequest.md +23 -0
- package/docs/reference/interfaces/IParticipantCredential.md +43 -0
- package/docs/reference/interfaces/IParticipantEntry.md +83 -0
- package/docs/reference/interfaces/IParticipantGetResponse.md +11 -0
- package/docs/reference/interfaces/IParticipantList.md +35 -0
- package/docs/reference/interfaces/IParticipantListRequest.md +61 -0
- package/docs/reference/interfaces/IParticipantListResponse.md +11 -0
- package/docs/reference/interfaces/IServiceOfferingCredential.md +43 -0
- package/docs/reference/interfaces/IServiceOfferingEntry.md +119 -0
- package/docs/reference/interfaces/IServiceOfferingGetResponse.md +11 -0
- package/docs/reference/interfaces/IServiceOfferingList.md +35 -0
- package/docs/reference/interfaces/IServiceOfferingListRequest.md +55 -0
- package/docs/reference/interfaces/IServiceOfferingListResponse.md +11 -0
- package/docs/reference/interfaces/IVerificationResult.md +23 -0
- package/docs/reference/type-aliases/FederatedCatalogueContextType.md +5 -0
- package/docs/reference/type-aliases/FederatedCatalogueContexts.md +5 -0
- package/docs/reference/type-aliases/FederatedCatalogueEntryType.md +5 -0
- package/docs/reference/type-aliases/FederatedCatalogueTypes.md +5 -0
- package/docs/reference/type-aliases/ICatalogueEntry.md +5 -0
- package/docs/reference/type-aliases/VerificationFailureReasons.md +5 -0
- package/docs/reference/variables/FederatedCatalogueContexts.md +13 -0
- package/docs/reference/variables/FederatedCatalogueTypes.md +73 -0
- package/docs/reference/variables/VerificationFailureReasons.md +73 -0
- package/package.json +45 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Interface: IParticipantCredential
|
|
2
|
+
|
|
3
|
+
Participant Credential.
|
|
4
|
+
|
|
5
|
+
## Extends
|
|
6
|
+
|
|
7
|
+
- [`ICredential`](ICredential.md)
|
|
8
|
+
|
|
9
|
+
## Properties
|
|
10
|
+
|
|
11
|
+
### id
|
|
12
|
+
|
|
13
|
+
> **id**: `string`
|
|
14
|
+
|
|
15
|
+
The Id of the credential, it is mandatory.
|
|
16
|
+
|
|
17
|
+
#### Inherited from
|
|
18
|
+
|
|
19
|
+
[`ICredential`](ICredential.md).[`id`](ICredential.md#id)
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### issuer
|
|
24
|
+
|
|
25
|
+
> **issuer**: `string`
|
|
26
|
+
|
|
27
|
+
The issuer of the credential, it is mandatory.
|
|
28
|
+
|
|
29
|
+
#### Inherited from
|
|
30
|
+
|
|
31
|
+
[`ICredential`](ICredential.md).[`issuer`](ICredential.md#issuer)
|
|
32
|
+
|
|
33
|
+
***
|
|
34
|
+
|
|
35
|
+
### credentialSubject
|
|
36
|
+
|
|
37
|
+
> **credentialSubject**: `IParticipant`
|
|
38
|
+
|
|
39
|
+
The Credential Subject
|
|
40
|
+
|
|
41
|
+
#### Overrides
|
|
42
|
+
|
|
43
|
+
[`ICredential`](ICredential.md).[`credentialSubject`](ICredential.md#credentialsubject)
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# Interface: IParticipantEntry
|
|
2
|
+
|
|
3
|
+
Interface describing a participant.
|
|
4
|
+
|
|
5
|
+
## Extends
|
|
6
|
+
|
|
7
|
+
- `IParticipant`.`ICatalogueBase`
|
|
8
|
+
|
|
9
|
+
## Indexable
|
|
10
|
+
|
|
11
|
+
\[`key`: `string`\]: `undefined` \| `null` \| `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinition` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{[`key`: `string`]: `string`; \}
|
|
12
|
+
|
|
13
|
+
## Properties
|
|
14
|
+
|
|
15
|
+
### issuer
|
|
16
|
+
|
|
17
|
+
> **issuer**: `string`
|
|
18
|
+
|
|
19
|
+
The trusted issuer of the compliance credential
|
|
20
|
+
|
|
21
|
+
#### Inherited from
|
|
22
|
+
|
|
23
|
+
`ICatalogueBase.issuer`
|
|
24
|
+
|
|
25
|
+
***
|
|
26
|
+
|
|
27
|
+
### validFrom
|
|
28
|
+
|
|
29
|
+
> **validFrom**: `string`
|
|
30
|
+
|
|
31
|
+
Valid from (as per W3C VC Data Model v2)
|
|
32
|
+
|
|
33
|
+
#### Inherited from
|
|
34
|
+
|
|
35
|
+
`ICatalogueBase.validFrom`
|
|
36
|
+
|
|
37
|
+
***
|
|
38
|
+
|
|
39
|
+
### validUntil
|
|
40
|
+
|
|
41
|
+
> **validUntil**: `string`
|
|
42
|
+
|
|
43
|
+
Valid until (as per W3C VC Data Model v2)
|
|
44
|
+
|
|
45
|
+
#### Inherited from
|
|
46
|
+
|
|
47
|
+
`ICatalogueBase.validUntil`
|
|
48
|
+
|
|
49
|
+
***
|
|
50
|
+
|
|
51
|
+
### dateCreated
|
|
52
|
+
|
|
53
|
+
> **dateCreated**: `string`
|
|
54
|
+
|
|
55
|
+
The creation date.
|
|
56
|
+
|
|
57
|
+
#### Inherited from
|
|
58
|
+
|
|
59
|
+
`ICatalogueBase.dateCreated`
|
|
60
|
+
|
|
61
|
+
***
|
|
62
|
+
|
|
63
|
+
### evidence
|
|
64
|
+
|
|
65
|
+
> **evidence**: `string`[]
|
|
66
|
+
|
|
67
|
+
The evidences concerning the data resource.
|
|
68
|
+
|
|
69
|
+
#### Inherited from
|
|
70
|
+
|
|
71
|
+
`ICatalogueBase.evidence`
|
|
72
|
+
|
|
73
|
+
***
|
|
74
|
+
|
|
75
|
+
### @context
|
|
76
|
+
|
|
77
|
+
> **@context**: [`FederatedCatalogueContextType`](../type-aliases/FederatedCatalogueContextType.md)
|
|
78
|
+
|
|
79
|
+
The LD Context
|
|
80
|
+
|
|
81
|
+
#### Overrides
|
|
82
|
+
|
|
83
|
+
`IParticipant.@context`
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Interface: IParticipantList
|
|
2
|
+
|
|
3
|
+
Interface describing a participant entry list.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
### @context
|
|
8
|
+
|
|
9
|
+
> **@context**: [`FederatedCatalogueContextType`](../type-aliases/FederatedCatalogueContextType.md)
|
|
10
|
+
|
|
11
|
+
The LD Context.
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### type
|
|
16
|
+
|
|
17
|
+
> **type**: `"ItemList"`
|
|
18
|
+
|
|
19
|
+
The type
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### itemListElement
|
|
24
|
+
|
|
25
|
+
> **itemListElement**: `Omit`\<[`IParticipantEntry`](IParticipantEntry.md), `"@context"`\>[]
|
|
26
|
+
|
|
27
|
+
The components of the Collection
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### nextItem?
|
|
32
|
+
|
|
33
|
+
> `optional` **nextItem**: `string`
|
|
34
|
+
|
|
35
|
+
Next item cursor.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Interface: IParticipantListRequest
|
|
2
|
+
|
|
3
|
+
Get the a list of the participant entries.
|
|
4
|
+
|
|
5
|
+
## Extends
|
|
6
|
+
|
|
7
|
+
- [`IFederatedCatalogueGetRequest`](IFederatedCatalogueGetRequest.md)
|
|
8
|
+
|
|
9
|
+
## Properties
|
|
10
|
+
|
|
11
|
+
### headers?
|
|
12
|
+
|
|
13
|
+
> `optional` **headers**: `object`
|
|
14
|
+
|
|
15
|
+
The headers which can be used to determine the response data type.
|
|
16
|
+
|
|
17
|
+
#### accept
|
|
18
|
+
|
|
19
|
+
> **accept**: `"application/json"` \| `"application/ld+json"`
|
|
20
|
+
|
|
21
|
+
#### Inherited from
|
|
22
|
+
|
|
23
|
+
[`IFederatedCatalogueGetRequest`](IFederatedCatalogueGetRequest.md).[`headers`](IFederatedCatalogueGetRequest.md#headers)
|
|
24
|
+
|
|
25
|
+
***
|
|
26
|
+
|
|
27
|
+
### query
|
|
28
|
+
|
|
29
|
+
> **query**: `object`
|
|
30
|
+
|
|
31
|
+
The query parameters.
|
|
32
|
+
|
|
33
|
+
#### id?
|
|
34
|
+
|
|
35
|
+
> `optional` **id**: `string`
|
|
36
|
+
|
|
37
|
+
The participant Id.
|
|
38
|
+
|
|
39
|
+
#### registrationNumber?
|
|
40
|
+
|
|
41
|
+
> `optional` **registrationNumber**: `string`
|
|
42
|
+
|
|
43
|
+
The legal registration number.
|
|
44
|
+
|
|
45
|
+
#### lrnType?
|
|
46
|
+
|
|
47
|
+
> `optional` **lrnType**: `string`
|
|
48
|
+
|
|
49
|
+
The legal registration number type.
|
|
50
|
+
|
|
51
|
+
#### cursor?
|
|
52
|
+
|
|
53
|
+
> `optional` **cursor**: `string`
|
|
54
|
+
|
|
55
|
+
The optional cursor to get next chunk.
|
|
56
|
+
|
|
57
|
+
#### pageSize?
|
|
58
|
+
|
|
59
|
+
> `optional` **pageSize**: `number`
|
|
60
|
+
|
|
61
|
+
The maximum number of entities in a page.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Interface: IServiceOfferingCredential
|
|
2
|
+
|
|
3
|
+
A Service Offering Credential
|
|
4
|
+
|
|
5
|
+
## Extends
|
|
6
|
+
|
|
7
|
+
- [`ICredential`](ICredential.md)
|
|
8
|
+
|
|
9
|
+
## Properties
|
|
10
|
+
|
|
11
|
+
### id
|
|
12
|
+
|
|
13
|
+
> **id**: `string`
|
|
14
|
+
|
|
15
|
+
The Id of the credential, it is mandatory.
|
|
16
|
+
|
|
17
|
+
#### Inherited from
|
|
18
|
+
|
|
19
|
+
[`ICredential`](ICredential.md).[`id`](ICredential.md#id)
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### issuer
|
|
24
|
+
|
|
25
|
+
> **issuer**: `string`
|
|
26
|
+
|
|
27
|
+
The issuer of the credential, it is mandatory.
|
|
28
|
+
|
|
29
|
+
#### Inherited from
|
|
30
|
+
|
|
31
|
+
[`ICredential`](ICredential.md).[`issuer`](ICredential.md#issuer)
|
|
32
|
+
|
|
33
|
+
***
|
|
34
|
+
|
|
35
|
+
### credentialSubject
|
|
36
|
+
|
|
37
|
+
> **credentialSubject**: `IServiceOffering`
|
|
38
|
+
|
|
39
|
+
The Credential Subject
|
|
40
|
+
|
|
41
|
+
#### Overrides
|
|
42
|
+
|
|
43
|
+
[`ICredential`](ICredential.md).[`credentialSubject`](ICredential.md#credentialsubject)
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
# Interface: IServiceOfferingEntry
|
|
2
|
+
|
|
3
|
+
Interface describing a Service Offering.
|
|
4
|
+
|
|
5
|
+
## Extends
|
|
6
|
+
|
|
7
|
+
- `ICatalogueBase`.`IServiceOffering`
|
|
8
|
+
|
|
9
|
+
## Indexable
|
|
10
|
+
|
|
11
|
+
\[`key`: `string`\]: `undefined` \| `null` \| `string` \| `number` \| `boolean` \| `string`[] \| `IJsonLdNodeObject` \| `IJsonLdGraphObject` \| `object` & `object` \| `object` & `object` \| `object` & `object` \| `IJsonLdListObject` \| `IJsonLdSetObject` \| `IJsonLdNodePrimitive`[] \| `IJsonLdLanguageMap` \| `IJsonLdIndexMap` \| `IJsonLdNodeObject`[] \| `IJsonLdIdMap` \| `IJsonLdTypeMap` \| `IJsonLdContextDefinition` \| `IJsonLdContextDefinitionElement`[] \| `IJsonLdJsonObject` \| `IJsonLdJsonObject`[] \| \{[`key`: `string`]: `string`; \}
|
|
12
|
+
|
|
13
|
+
## Properties
|
|
14
|
+
|
|
15
|
+
### issuer
|
|
16
|
+
|
|
17
|
+
> **issuer**: `string`
|
|
18
|
+
|
|
19
|
+
The trusted issuer of the compliance credential
|
|
20
|
+
|
|
21
|
+
#### Inherited from
|
|
22
|
+
|
|
23
|
+
`ICatalogueBase.issuer`
|
|
24
|
+
|
|
25
|
+
***
|
|
26
|
+
|
|
27
|
+
### validFrom
|
|
28
|
+
|
|
29
|
+
> **validFrom**: `string`
|
|
30
|
+
|
|
31
|
+
Valid from (as per W3C VC Data Model v2)
|
|
32
|
+
|
|
33
|
+
#### Inherited from
|
|
34
|
+
|
|
35
|
+
`ICatalogueBase.validFrom`
|
|
36
|
+
|
|
37
|
+
***
|
|
38
|
+
|
|
39
|
+
### validUntil
|
|
40
|
+
|
|
41
|
+
> **validUntil**: `string`
|
|
42
|
+
|
|
43
|
+
Valid until (as per W3C VC Data Model v2)
|
|
44
|
+
|
|
45
|
+
#### Inherited from
|
|
46
|
+
|
|
47
|
+
`ICatalogueBase.validUntil`
|
|
48
|
+
|
|
49
|
+
***
|
|
50
|
+
|
|
51
|
+
### dateCreated
|
|
52
|
+
|
|
53
|
+
> **dateCreated**: `string`
|
|
54
|
+
|
|
55
|
+
The creation date.
|
|
56
|
+
|
|
57
|
+
#### Inherited from
|
|
58
|
+
|
|
59
|
+
`ICatalogueBase.dateCreated`
|
|
60
|
+
|
|
61
|
+
***
|
|
62
|
+
|
|
63
|
+
### evidence
|
|
64
|
+
|
|
65
|
+
> **evidence**: `string`[]
|
|
66
|
+
|
|
67
|
+
The evidences concerning the data resource.
|
|
68
|
+
|
|
69
|
+
#### Inherited from
|
|
70
|
+
|
|
71
|
+
`ICatalogueBase.evidence`
|
|
72
|
+
|
|
73
|
+
***
|
|
74
|
+
|
|
75
|
+
### @context
|
|
76
|
+
|
|
77
|
+
> **@context**: [`FederatedCatalogueContextType`](../type-aliases/FederatedCatalogueContextType.md)
|
|
78
|
+
|
|
79
|
+
The LD Context
|
|
80
|
+
|
|
81
|
+
#### Overrides
|
|
82
|
+
|
|
83
|
+
`IServiceOffering.@context`
|
|
84
|
+
|
|
85
|
+
***
|
|
86
|
+
|
|
87
|
+
### providedBy
|
|
88
|
+
|
|
89
|
+
> **providedBy**: `string`
|
|
90
|
+
|
|
91
|
+
Overwrites providedBy as we only store identifier as string
|
|
92
|
+
|
|
93
|
+
#### Overrides
|
|
94
|
+
|
|
95
|
+
`IServiceOffering.providedBy`
|
|
96
|
+
|
|
97
|
+
***
|
|
98
|
+
|
|
99
|
+
### aggregationOfResources?
|
|
100
|
+
|
|
101
|
+
> `optional` **aggregationOfResources**: `string`[]
|
|
102
|
+
|
|
103
|
+
Overwrites aggregationOfResources as we only store identifier as string
|
|
104
|
+
|
|
105
|
+
#### Overrides
|
|
106
|
+
|
|
107
|
+
`IServiceOffering.aggregationOfResources`
|
|
108
|
+
|
|
109
|
+
***
|
|
110
|
+
|
|
111
|
+
### servicePolicy
|
|
112
|
+
|
|
113
|
+
> **servicePolicy**: `IOdrlPolicy`[]
|
|
114
|
+
|
|
115
|
+
The service policy is always stored as an array
|
|
116
|
+
|
|
117
|
+
#### Overrides
|
|
118
|
+
|
|
119
|
+
`IServiceOffering.servicePolicy`
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Interface: IServiceOfferingList
|
|
2
|
+
|
|
3
|
+
Interface describing a list of Service Offering Entries.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
### @context
|
|
8
|
+
|
|
9
|
+
> **@context**: [`FederatedCatalogueContextType`](../type-aliases/FederatedCatalogueContextType.md)
|
|
10
|
+
|
|
11
|
+
The LD Context.
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### type
|
|
16
|
+
|
|
17
|
+
> **type**: `"ItemList"`
|
|
18
|
+
|
|
19
|
+
The type
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### itemListElement
|
|
24
|
+
|
|
25
|
+
> **itemListElement**: `Omit`\<[`IServiceOfferingEntry`](IServiceOfferingEntry.md), `"@context"`\>[]
|
|
26
|
+
|
|
27
|
+
The components of the Collection
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### nextItem?
|
|
32
|
+
|
|
33
|
+
> `optional` **nextItem**: `string`
|
|
34
|
+
|
|
35
|
+
Next item cursor.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Interface: IServiceOfferingListRequest
|
|
2
|
+
|
|
3
|
+
Get the a list of the service offering entries.
|
|
4
|
+
|
|
5
|
+
## Extends
|
|
6
|
+
|
|
7
|
+
- [`IFederatedCatalogueGetRequest`](IFederatedCatalogueGetRequest.md)
|
|
8
|
+
|
|
9
|
+
## Properties
|
|
10
|
+
|
|
11
|
+
### headers?
|
|
12
|
+
|
|
13
|
+
> `optional` **headers**: `object`
|
|
14
|
+
|
|
15
|
+
The headers which can be used to determine the response data type.
|
|
16
|
+
|
|
17
|
+
#### accept
|
|
18
|
+
|
|
19
|
+
> **accept**: `"application/json"` \| `"application/ld+json"`
|
|
20
|
+
|
|
21
|
+
#### Inherited from
|
|
22
|
+
|
|
23
|
+
[`IFederatedCatalogueGetRequest`](IFederatedCatalogueGetRequest.md).[`headers`](IFederatedCatalogueGetRequest.md#headers)
|
|
24
|
+
|
|
25
|
+
***
|
|
26
|
+
|
|
27
|
+
### query
|
|
28
|
+
|
|
29
|
+
> **query**: `object`
|
|
30
|
+
|
|
31
|
+
The query parameters.
|
|
32
|
+
|
|
33
|
+
#### id?
|
|
34
|
+
|
|
35
|
+
> `optional` **id**: `string`
|
|
36
|
+
|
|
37
|
+
The Service Offering Id.
|
|
38
|
+
|
|
39
|
+
#### providedBy?
|
|
40
|
+
|
|
41
|
+
> `optional` **providedBy**: `string`
|
|
42
|
+
|
|
43
|
+
The service provider.
|
|
44
|
+
|
|
45
|
+
#### cursor?
|
|
46
|
+
|
|
47
|
+
> `optional` **cursor**: `string`
|
|
48
|
+
|
|
49
|
+
The optional cursor to get next chunk.
|
|
50
|
+
|
|
51
|
+
#### pageSize?
|
|
52
|
+
|
|
53
|
+
> `optional` **pageSize**: `number`
|
|
54
|
+
|
|
55
|
+
The maximum number of entities in a page.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Interface: IVerificationResult
|
|
2
|
+
|
|
3
|
+
Verification Result
|
|
4
|
+
|
|
5
|
+
## Extended by
|
|
6
|
+
|
|
7
|
+
- [`IComplianceVerificationResult`](IComplianceVerificationResult.md)
|
|
8
|
+
|
|
9
|
+
## Properties
|
|
10
|
+
|
|
11
|
+
### verified
|
|
12
|
+
|
|
13
|
+
> **verified**: `boolean`
|
|
14
|
+
|
|
15
|
+
True if verified. False the opposite.
|
|
16
|
+
|
|
17
|
+
***
|
|
18
|
+
|
|
19
|
+
### verificationFailureReason?
|
|
20
|
+
|
|
21
|
+
> `optional` **verificationFailureReason**: `string`
|
|
22
|
+
|
|
23
|
+
Verification failure reason.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: FederatedCatalogueContextType
|
|
2
|
+
|
|
3
|
+
> **FederatedCatalogueContextType** = \[*typeof* `SchemaOrgContexts.ContextRoot`, *typeof* `GaiaXContexts.ContextRoot`, *typeof* [`ContextRoot`](../variables/FederatedCatalogueContexts.md#contextroot)\]
|
|
4
|
+
|
|
5
|
+
Type that defines the LD Context for the Federated Catalogue entities and entries.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: FederatedCatalogueContexts
|
|
2
|
+
|
|
3
|
+
> **FederatedCatalogueContexts** = *typeof* [`FederatedCatalogueContexts`](../variables/FederatedCatalogueContexts.md)\[keyof *typeof* [`FederatedCatalogueContexts`](../variables/FederatedCatalogueContexts.md)\]
|
|
4
|
+
|
|
5
|
+
The Exported types
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: FederatedCatalogueEntryType
|
|
2
|
+
|
|
3
|
+
> **FederatedCatalogueEntryType** = *typeof* `GaiaXTypes.Participant` \| *typeof* `GaiaXTypes.DataExchangeComponent` \| *typeof* `GaiaXTypes.DataResource` \| *typeof* `GaiaXTypes.ServiceOffering` \| *typeof* [`DataSpaceConnector`](../variables/FederatedCatalogueTypes.md#dataspaceconnector)
|
|
4
|
+
|
|
5
|
+
Types of entries in the Federated Catalogue
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: ICatalogueEntry
|
|
2
|
+
|
|
3
|
+
> **ICatalogueEntry** = [`IParticipantEntry`](../interfaces/IParticipantEntry.md) \| [`IDataSpaceConnectorEntry`](../interfaces/IDataSpaceConnectorEntry.md) \| [`IServiceOfferingEntry`](../interfaces/IServiceOfferingEntry.md) \| [`IDataResourceEntry`](../interfaces/IDataResourceEntry.md)
|
|
4
|
+
|
|
5
|
+
Catalogue entry base fields.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Type Alias: VerificationFailureReasons
|
|
2
|
+
|
|
3
|
+
> **VerificationFailureReasons** = *typeof* [`VerificationFailureReasons`](../variables/VerificationFailureReasons.md)\[keyof *typeof* [`VerificationFailureReasons`](../variables/VerificationFailureReasons.md)\]
|
|
4
|
+
|
|
5
|
+
The verification failure Reasons.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Variable: FederatedCatalogueContexts
|
|
2
|
+
|
|
3
|
+
> `const` **FederatedCatalogueContexts**: `object`
|
|
4
|
+
|
|
5
|
+
The LD context concerning the Federated Catalogue.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### ContextRoot
|
|
10
|
+
|
|
11
|
+
> `readonly` **ContextRoot**: `"https://schema.twindev.org/federated-catalogue/"` = `"https://schema.twindev.org/federated-catalogue/"`
|
|
12
|
+
|
|
13
|
+
The context root for the federated catalogue types.
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Variable: FederatedCatalogueTypes
|
|
2
|
+
|
|
3
|
+
> `const` **FederatedCatalogueTypes**: `object`
|
|
4
|
+
|
|
5
|
+
The types concerning the Federated Catalogue.
|
|
6
|
+
|
|
7
|
+
## Type declaration
|
|
8
|
+
|
|
9
|
+
### CompliantCredential
|
|
10
|
+
|
|
11
|
+
> `readonly` **CompliantCredential**: `"CompliantCredential"` = `"CompliantCredential"`
|
|
12
|
+
|
|
13
|
+
A Credential that is compliant.
|
|
14
|
+
|
|
15
|
+
### ComplianceCredential
|
|
16
|
+
|
|
17
|
+
> `readonly` **ComplianceCredential**: `"ComplianceCredential"` = `"ComplianceCredential"`
|
|
18
|
+
|
|
19
|
+
A Compliance Credential.
|
|
20
|
+
|
|
21
|
+
### DataSpaceConnector
|
|
22
|
+
|
|
23
|
+
> `readonly` **DataSpaceConnector**: `"DataSpaceConnector"` = `"DataSpaceConnector"`
|
|
24
|
+
|
|
25
|
+
A Data Space Connector.
|
|
26
|
+
|
|
27
|
+
### DataResourceEntry
|
|
28
|
+
|
|
29
|
+
> `readonly` **DataResourceEntry**: `"DataResourceEntry"` = `"DataResourceEntry"`
|
|
30
|
+
|
|
31
|
+
A Data Resource Entry.
|
|
32
|
+
|
|
33
|
+
### DataResourceList
|
|
34
|
+
|
|
35
|
+
> `readonly` **DataResourceList**: `"DataResourceList"` = `"DataResourceList"`
|
|
36
|
+
|
|
37
|
+
A Data Space Connector List.
|
|
38
|
+
|
|
39
|
+
### DataSpaceConnectorEntry
|
|
40
|
+
|
|
41
|
+
> `readonly` **DataSpaceConnectorEntry**: `"DataSpaceConnectorEntry"` = `"DataSpaceConnectorEntry"`
|
|
42
|
+
|
|
43
|
+
A Data Space Connector Entry.
|
|
44
|
+
|
|
45
|
+
### DataSpaceConnectorList
|
|
46
|
+
|
|
47
|
+
> `readonly` **DataSpaceConnectorList**: `"DataSpaceConnectorList"` = `"DataSpaceConnectorList"`
|
|
48
|
+
|
|
49
|
+
A Data Space Connector List.
|
|
50
|
+
|
|
51
|
+
### ParticipantEntry
|
|
52
|
+
|
|
53
|
+
> `readonly` **ParticipantEntry**: `"ParticipantEntry"` = `"ParticipantEntry"`
|
|
54
|
+
|
|
55
|
+
A Participant Entry.
|
|
56
|
+
|
|
57
|
+
### ParticipantList
|
|
58
|
+
|
|
59
|
+
> `readonly` **ParticipantList**: `"ParticipantList"` = `"ParticipantList"`
|
|
60
|
+
|
|
61
|
+
A Participant List.
|
|
62
|
+
|
|
63
|
+
### ServiceOfferingEntry
|
|
64
|
+
|
|
65
|
+
> `readonly` **ServiceOfferingEntry**: `"ServiceOfferingEntry"` = `"ServiceOfferingEntry"`
|
|
66
|
+
|
|
67
|
+
A Service Offering Entry.
|
|
68
|
+
|
|
69
|
+
### ServiceOfferingList
|
|
70
|
+
|
|
71
|
+
> `readonly` **ServiceOfferingList**: `"ServiceOfferingList"` = `"ServiceOfferingList"`
|
|
72
|
+
|
|
73
|
+
A Service Offering List.
|