@twin.org/dataspace-data-plane-service 0.0.3-next.21 → 0.0.3-next.22
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/docs/changelog.md +17 -0
- package/docs/open-api/spec.json +70 -772
- package/docs/reference/classes/ActivityLogDetails.md +3 -3
- package/docs/reference/interfaces/IDataspaceDataPlaneServiceConfig.md +14 -2
- package/docs/reference/interfaces/IDataspaceDataPlaneServiceConstructorOptions.md +58 -10
- package/package.json +3 -3
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.22](https://github.com/twinfoundation/dataspace/compare/dataspace-data-plane-service-v0.0.3-next.21...dataspace-data-plane-service-v0.0.3-next.22) (2026-03-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **dataspace-data-plane-service:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/dataspace-app-runner bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
16
|
+
* @twin.org/dataspace-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
17
|
+
* devDependencies
|
|
18
|
+
* @twin.org/dataspace-test-app bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
19
|
+
|
|
3
20
|
## [0.0.3-next.21](https://github.com/twinfoundation/dataspace/compare/dataspace-data-plane-service-v0.0.3-next.20...dataspace-data-plane-service-v0.0.3-next.21) (2026-03-17)
|
|
4
21
|
|
|
5
22
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"content": {
|
|
40
40
|
"application/ld+json": {
|
|
41
41
|
"schema": {
|
|
42
|
-
"$ref": "
|
|
42
|
+
"$ref": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsActivity"
|
|
43
43
|
},
|
|
44
44
|
"examples": {
|
|
45
45
|
"activityStreamNotifyRequestExample": {
|
|
@@ -289,7 +289,7 @@
|
|
|
289
289
|
},
|
|
290
290
|
{
|
|
291
291
|
"name": "consumerPid",
|
|
292
|
-
"description": "The consumer Process ID from the DSP Transfer Process
|
|
292
|
+
"description": "The consumer Process ID from the DSP Transfer Process.\nMandatory - used to determine the Dataset, Distribution, and Agreement.\nThe datasetId is resolved from the Transfer Process using this ID.",
|
|
293
293
|
"in": "query",
|
|
294
294
|
"required": false,
|
|
295
295
|
"schema": {
|
|
@@ -531,7 +531,25 @@
|
|
|
531
531
|
},
|
|
532
532
|
"components": {
|
|
533
533
|
"schemas": {
|
|
534
|
-
"
|
|
534
|
+
"ActivityLogDates": {
|
|
535
|
+
"description": "Activity log dates.",
|
|
536
|
+
"type": "object",
|
|
537
|
+
"properties": {
|
|
538
|
+
"startDate": {
|
|
539
|
+
"type": "string",
|
|
540
|
+
"description": "Task processing start timestamp"
|
|
541
|
+
},
|
|
542
|
+
"endDate": {
|
|
543
|
+
"type": "string",
|
|
544
|
+
"description": "Task processing end timestamp"
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"required": [
|
|
548
|
+
"startDate"
|
|
549
|
+
]
|
|
550
|
+
},
|
|
551
|
+
"ActivityLogDetails": {
|
|
552
|
+
"description": "The details related to the processing of an Activity",
|
|
535
553
|
"type": "object",
|
|
536
554
|
"properties": {
|
|
537
555
|
"id": {
|
|
@@ -557,7 +575,19 @@
|
|
|
557
575
|
"retryCount": {
|
|
558
576
|
"type": "number",
|
|
559
577
|
"description": "Number of times this activity has been retried."
|
|
560
|
-
}
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"required": [
|
|
581
|
+
"id",
|
|
582
|
+
"generator",
|
|
583
|
+
"dateCreated",
|
|
584
|
+
"dateModified"
|
|
585
|
+
]
|
|
586
|
+
},
|
|
587
|
+
"ActivityLogEntry": {
|
|
588
|
+
"description": "The details related to the processing of an Activity",
|
|
589
|
+
"type": "object",
|
|
590
|
+
"properties": {
|
|
561
591
|
"status": {
|
|
562
592
|
"$ref": "#/components/schemas/ActivityProcessingStatus"
|
|
563
593
|
},
|
|
@@ -572,29 +602,13 @@
|
|
|
572
602
|
"type": "array",
|
|
573
603
|
"items": {
|
|
574
604
|
"type": "object",
|
|
575
|
-
"
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
"type": "string",
|
|
579
|
-
"description": "Task processing start timestamp"
|
|
580
|
-
},
|
|
581
|
-
"endDate": {
|
|
582
|
-
"type": "string",
|
|
583
|
-
"description": "Task processing end timestamp"
|
|
584
|
-
},
|
|
585
|
-
"taskId": {
|
|
586
|
-
"type": "string",
|
|
587
|
-
"description": "Task Id."
|
|
605
|
+
"allOf": [
|
|
606
|
+
{
|
|
607
|
+
"$ref": "#/components/schemas/TaskApp"
|
|
588
608
|
},
|
|
589
|
-
|
|
590
|
-
"
|
|
591
|
-
"description": "Dataspace App Id."
|
|
609
|
+
{
|
|
610
|
+
"$ref": "#/components/schemas/ActivityLogDates"
|
|
592
611
|
}
|
|
593
|
-
},
|
|
594
|
-
"required": [
|
|
595
|
-
"dataspaceAppId",
|
|
596
|
-
"startDate",
|
|
597
|
-
"taskId"
|
|
598
612
|
]
|
|
599
613
|
},
|
|
600
614
|
"description": "The running tasks that are processing the Activity."
|
|
@@ -603,34 +617,22 @@
|
|
|
603
617
|
"type": "array",
|
|
604
618
|
"items": {
|
|
605
619
|
"type": "object",
|
|
606
|
-
"additionalProperties": false,
|
|
607
620
|
"properties": {
|
|
608
621
|
"result": {
|
|
609
622
|
"type": "string",
|
|
610
623
|
"description": "The task result."
|
|
611
|
-
},
|
|
612
|
-
"startDate": {
|
|
613
|
-
"type": "string",
|
|
614
|
-
"description": "Task processing start timestamp"
|
|
615
|
-
},
|
|
616
|
-
"endDate": {
|
|
617
|
-
"type": "string",
|
|
618
|
-
"description": "Task processing end timestamp"
|
|
619
|
-
},
|
|
620
|
-
"taskId": {
|
|
621
|
-
"type": "string",
|
|
622
|
-
"description": "Task Id."
|
|
623
|
-
},
|
|
624
|
-
"dataspaceAppId": {
|
|
625
|
-
"type": "string",
|
|
626
|
-
"description": "Dataspace App Id."
|
|
627
624
|
}
|
|
628
625
|
},
|
|
629
626
|
"required": [
|
|
630
|
-
"
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
627
|
+
"result"
|
|
628
|
+
],
|
|
629
|
+
"allOf": [
|
|
630
|
+
{
|
|
631
|
+
"$ref": "#/components/schemas/TaskApp"
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"$ref": "#/components/schemas/ActivityLogDates"
|
|
635
|
+
}
|
|
634
636
|
]
|
|
635
637
|
},
|
|
636
638
|
"description": "The tasks that have already finalized."
|
|
@@ -639,769 +641,66 @@
|
|
|
639
641
|
"type": "array",
|
|
640
642
|
"items": {
|
|
641
643
|
"type": "object",
|
|
642
|
-
"additionalProperties": false,
|
|
643
644
|
"properties": {
|
|
644
645
|
"error": {
|
|
645
646
|
"$ref": "#/components/schemas/Error"
|
|
646
|
-
},
|
|
647
|
-
"taskId": {
|
|
648
|
-
"type": "string",
|
|
649
|
-
"description": "Task Id."
|
|
650
|
-
},
|
|
651
|
-
"dataspaceAppId": {
|
|
652
|
-
"type": "string",
|
|
653
|
-
"description": "Dataspace App Id."
|
|
654
647
|
}
|
|
655
648
|
},
|
|
656
649
|
"required": [
|
|
657
|
-
"
|
|
658
|
-
|
|
659
|
-
|
|
650
|
+
"error"
|
|
651
|
+
],
|
|
652
|
+
"allOf": [
|
|
653
|
+
{
|
|
654
|
+
"$ref": "#/components/schemas/TaskApp"
|
|
655
|
+
}
|
|
660
656
|
]
|
|
661
657
|
},
|
|
662
658
|
"description": "The tasks that are in error."
|
|
663
659
|
}
|
|
664
660
|
},
|
|
665
661
|
"required": [
|
|
666
|
-
"dateCreated",
|
|
667
|
-
"dateModified",
|
|
668
|
-
"generator",
|
|
669
|
-
"id",
|
|
670
662
|
"status"
|
|
671
663
|
],
|
|
672
|
-
"
|
|
664
|
+
"allOf": [
|
|
665
|
+
{
|
|
666
|
+
"$ref": "#/components/schemas/ActivityLogDetails"
|
|
667
|
+
}
|
|
668
|
+
]
|
|
673
669
|
},
|
|
674
670
|
"ActivityProcessingStatus": {
|
|
671
|
+
"description": "The type exported.",
|
|
675
672
|
"anyOf": [
|
|
676
673
|
{
|
|
677
|
-
"type": "string",
|
|
678
674
|
"const": "pending",
|
|
679
675
|
"description": "Pending: Activity Processing has not started yet."
|
|
680
676
|
},
|
|
681
677
|
{
|
|
682
|
-
"type": "string",
|
|
683
678
|
"const": "running",
|
|
684
679
|
"description": "Running Activity processing is running."
|
|
685
680
|
},
|
|
686
681
|
{
|
|
687
|
-
"type": "string",
|
|
688
682
|
"const": "completed",
|
|
689
683
|
"description": "Completed: Activity processing completed without error."
|
|
690
684
|
},
|
|
691
685
|
{
|
|
692
|
-
"type": "string",
|
|
693
686
|
"const": "error",
|
|
694
687
|
"description": "Error: Activity processing cannot be performed and marked as in error. (Depends on application)."
|
|
695
688
|
},
|
|
696
689
|
{
|
|
697
|
-
"type": "string",
|
|
698
690
|
"const": "registering",
|
|
699
691
|
"description": "Transient state. The background tasks associated with the activity are still being registered."
|
|
700
692
|
}
|
|
701
|
-
]
|
|
702
|
-
"description": "Activity processing statuses. The type exported."
|
|
703
|
-
},
|
|
704
|
-
"ActivityStreamsActivity": {
|
|
705
|
-
"type": "object",
|
|
706
|
-
"properties": {
|
|
707
|
-
"@context": {
|
|
708
|
-
"description": "The Activity Streams JSON-LD context type.",
|
|
709
|
-
"anyOf": [
|
|
710
|
-
{
|
|
711
|
-
"type": "string",
|
|
712
|
-
"const": "https://www.w3.org/ns/activitystreams"
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
"type": "array",
|
|
716
|
-
"items": {
|
|
717
|
-
"type": "string",
|
|
718
|
-
"const": "https://www.w3.org/ns/activitystreams"
|
|
719
|
-
},
|
|
720
|
-
"minItems": 1,
|
|
721
|
-
"maxItems": 1
|
|
722
|
-
},
|
|
723
|
-
{
|
|
724
|
-
"type": "array",
|
|
725
|
-
"minItems": 2,
|
|
726
|
-
"prefixItems": [
|
|
727
|
-
{
|
|
728
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
729
|
-
},
|
|
730
|
-
{
|
|
731
|
-
"type": "string",
|
|
732
|
-
"const": "https://www.w3.org/ns/activitystreams"
|
|
733
|
-
}
|
|
734
|
-
],
|
|
735
|
-
"items": {
|
|
736
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
737
|
-
}
|
|
738
|
-
},
|
|
739
|
-
{
|
|
740
|
-
"type": "array",
|
|
741
|
-
"minItems": 2,
|
|
742
|
-
"prefixItems": [
|
|
743
|
-
{
|
|
744
|
-
"type": "string",
|
|
745
|
-
"const": "https://www.w3.org/ns/activitystreams"
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
749
|
-
}
|
|
750
|
-
],
|
|
751
|
-
"items": {
|
|
752
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
|
|
753
|
-
}
|
|
754
|
-
}
|
|
755
|
-
]
|
|
756
|
-
},
|
|
757
|
-
"type": {
|
|
758
|
-
"anyOf": [
|
|
759
|
-
{
|
|
760
|
-
"$ref": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsTypes"
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
"type": "string"
|
|
764
|
-
},
|
|
765
|
-
{
|
|
766
|
-
"type": "array",
|
|
767
|
-
"items": {
|
|
768
|
-
"anyOf": [
|
|
769
|
-
{
|
|
770
|
-
"$ref": "https://schema.twindev.org/w3c-activity-streams/ActivityStreamsTypes"
|
|
771
|
-
},
|
|
772
|
-
{
|
|
773
|
-
"type": "string"
|
|
774
|
-
}
|
|
775
|
-
]
|
|
776
|
-
}
|
|
777
|
-
}
|
|
778
|
-
],
|
|
779
|
-
"description": "Activity Type."
|
|
780
|
-
},
|
|
781
|
-
"id": {
|
|
782
|
-
"type": "string",
|
|
783
|
-
"description": "Global identifier.",
|
|
784
|
-
"format": "uri"
|
|
785
|
-
},
|
|
786
|
-
"name": {
|
|
787
|
-
"anyOf": [
|
|
788
|
-
{
|
|
789
|
-
"type": "string"
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
793
|
-
}
|
|
794
|
-
],
|
|
795
|
-
"description": "Natural language name."
|
|
796
|
-
},
|
|
797
|
-
"nameMap": {
|
|
798
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
799
|
-
},
|
|
800
|
-
"summary": {
|
|
801
|
-
"anyOf": [
|
|
802
|
-
{
|
|
803
|
-
"type": "string"
|
|
804
|
-
},
|
|
805
|
-
{
|
|
806
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
807
|
-
}
|
|
808
|
-
],
|
|
809
|
-
"description": "Summary of the Activity."
|
|
810
|
-
},
|
|
811
|
-
"summaryMap": {
|
|
812
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
813
|
-
},
|
|
814
|
-
"content": {
|
|
815
|
-
"anyOf": [
|
|
816
|
-
{
|
|
817
|
-
"type": "string"
|
|
818
|
-
},
|
|
819
|
-
{
|
|
820
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
821
|
-
}
|
|
822
|
-
],
|
|
823
|
-
"description": "Natural language content."
|
|
824
|
-
},
|
|
825
|
-
"contentMap": {
|
|
826
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
827
|
-
},
|
|
828
|
-
"url": {
|
|
829
|
-
"description": "Object or array data type",
|
|
830
|
-
"anyOf": [
|
|
831
|
-
{
|
|
832
|
-
"type": "string"
|
|
833
|
-
},
|
|
834
|
-
{
|
|
835
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
"type": "array",
|
|
839
|
-
"items": {
|
|
840
|
-
"anyOf": [
|
|
841
|
-
{
|
|
842
|
-
"type": "string"
|
|
843
|
-
},
|
|
844
|
-
{
|
|
845
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
846
|
-
}
|
|
847
|
-
]
|
|
848
|
-
}
|
|
849
|
-
}
|
|
850
|
-
]
|
|
851
|
-
},
|
|
852
|
-
"image": {
|
|
853
|
-
"description": "Object or array data type",
|
|
854
|
-
"anyOf": [
|
|
855
|
-
{
|
|
856
|
-
"type": "string"
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
860
|
-
},
|
|
861
|
-
{
|
|
862
|
-
"type": "array",
|
|
863
|
-
"items": {
|
|
864
|
-
"anyOf": [
|
|
865
|
-
{
|
|
866
|
-
"type": "string"
|
|
867
|
-
},
|
|
868
|
-
{
|
|
869
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
870
|
-
}
|
|
871
|
-
]
|
|
872
|
-
}
|
|
873
|
-
}
|
|
874
|
-
]
|
|
875
|
-
},
|
|
876
|
-
"icon": {
|
|
877
|
-
"description": "Object or array data type",
|
|
878
|
-
"anyOf": [
|
|
879
|
-
{
|
|
880
|
-
"type": "string"
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
884
|
-
},
|
|
885
|
-
{
|
|
886
|
-
"type": "array",
|
|
887
|
-
"items": {
|
|
888
|
-
"anyOf": [
|
|
889
|
-
{
|
|
890
|
-
"type": "string"
|
|
891
|
-
},
|
|
892
|
-
{
|
|
893
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
894
|
-
}
|
|
895
|
-
]
|
|
896
|
-
}
|
|
897
|
-
}
|
|
898
|
-
]
|
|
899
|
-
},
|
|
900
|
-
"published": {
|
|
901
|
-
"type": "string",
|
|
902
|
-
"description": "Published date-time.",
|
|
903
|
-
"format": "date-time"
|
|
904
|
-
},
|
|
905
|
-
"updated": {
|
|
906
|
-
"type": "string",
|
|
907
|
-
"description": "Updated date-time.",
|
|
908
|
-
"format": "date-time"
|
|
909
|
-
},
|
|
910
|
-
"startTime": {
|
|
911
|
-
"type": "string",
|
|
912
|
-
"description": "Start time.",
|
|
913
|
-
"format": "date-time"
|
|
914
|
-
},
|
|
915
|
-
"endTime": {
|
|
916
|
-
"type": "string",
|
|
917
|
-
"description": "End time.",
|
|
918
|
-
"format": "date-time"
|
|
919
|
-
},
|
|
920
|
-
"duration": {
|
|
921
|
-
"type": "string",
|
|
922
|
-
"description": "Duration.",
|
|
923
|
-
"format": "duration"
|
|
924
|
-
},
|
|
925
|
-
"generator": {
|
|
926
|
-
"description": "Object or array data type",
|
|
927
|
-
"anyOf": [
|
|
928
|
-
{
|
|
929
|
-
"type": "string"
|
|
930
|
-
},
|
|
931
|
-
{
|
|
932
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
933
|
-
},
|
|
934
|
-
{
|
|
935
|
-
"type": "array",
|
|
936
|
-
"items": {
|
|
937
|
-
"anyOf": [
|
|
938
|
-
{
|
|
939
|
-
"type": "string"
|
|
940
|
-
},
|
|
941
|
-
{
|
|
942
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
943
|
-
}
|
|
944
|
-
]
|
|
945
|
-
}
|
|
946
|
-
}
|
|
947
|
-
]
|
|
948
|
-
},
|
|
949
|
-
"attachment": {
|
|
950
|
-
"description": "Object or array data type",
|
|
951
|
-
"anyOf": [
|
|
952
|
-
{
|
|
953
|
-
"type": "string"
|
|
954
|
-
},
|
|
955
|
-
{
|
|
956
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
957
|
-
},
|
|
958
|
-
{
|
|
959
|
-
"type": "array",
|
|
960
|
-
"items": {
|
|
961
|
-
"anyOf": [
|
|
962
|
-
{
|
|
963
|
-
"type": "string"
|
|
964
|
-
},
|
|
965
|
-
{
|
|
966
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
967
|
-
}
|
|
968
|
-
]
|
|
969
|
-
}
|
|
970
|
-
}
|
|
971
|
-
]
|
|
972
|
-
},
|
|
973
|
-
"attributedTo": {
|
|
974
|
-
"description": "Object or array data type",
|
|
975
|
-
"anyOf": [
|
|
976
|
-
{
|
|
977
|
-
"type": "string"
|
|
978
|
-
},
|
|
979
|
-
{
|
|
980
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
981
|
-
},
|
|
982
|
-
{
|
|
983
|
-
"type": "array",
|
|
984
|
-
"items": {
|
|
985
|
-
"anyOf": [
|
|
986
|
-
{
|
|
987
|
-
"type": "string"
|
|
988
|
-
},
|
|
989
|
-
{
|
|
990
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
991
|
-
}
|
|
992
|
-
]
|
|
993
|
-
}
|
|
994
|
-
}
|
|
995
|
-
]
|
|
996
|
-
},
|
|
997
|
-
"audience": {
|
|
998
|
-
"description": "Object or array data type",
|
|
999
|
-
"anyOf": [
|
|
1000
|
-
{
|
|
1001
|
-
"type": "string"
|
|
1002
|
-
},
|
|
1003
|
-
{
|
|
1004
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1005
|
-
},
|
|
1006
|
-
{
|
|
1007
|
-
"type": "array",
|
|
1008
|
-
"items": {
|
|
1009
|
-
"anyOf": [
|
|
1010
|
-
{
|
|
1011
|
-
"type": "string"
|
|
1012
|
-
},
|
|
1013
|
-
{
|
|
1014
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1015
|
-
}
|
|
1016
|
-
]
|
|
1017
|
-
}
|
|
1018
|
-
}
|
|
1019
|
-
]
|
|
1020
|
-
},
|
|
1021
|
-
"context": {
|
|
1022
|
-
"description": "Object or array data type",
|
|
1023
|
-
"anyOf": [
|
|
1024
|
-
{
|
|
1025
|
-
"type": "string"
|
|
1026
|
-
},
|
|
1027
|
-
{
|
|
1028
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1029
|
-
},
|
|
1030
|
-
{
|
|
1031
|
-
"type": "array",
|
|
1032
|
-
"items": {
|
|
1033
|
-
"anyOf": [
|
|
1034
|
-
{
|
|
1035
|
-
"type": "string"
|
|
1036
|
-
},
|
|
1037
|
-
{
|
|
1038
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1039
|
-
}
|
|
1040
|
-
]
|
|
1041
|
-
}
|
|
1042
|
-
}
|
|
1043
|
-
]
|
|
1044
|
-
},
|
|
1045
|
-
"location": {
|
|
1046
|
-
"description": "Object or array data type",
|
|
1047
|
-
"anyOf": [
|
|
1048
|
-
{
|
|
1049
|
-
"type": "string"
|
|
1050
|
-
},
|
|
1051
|
-
{
|
|
1052
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1053
|
-
},
|
|
1054
|
-
{
|
|
1055
|
-
"type": "array",
|
|
1056
|
-
"items": {
|
|
1057
|
-
"anyOf": [
|
|
1058
|
-
{
|
|
1059
|
-
"type": "string"
|
|
1060
|
-
},
|
|
1061
|
-
{
|
|
1062
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1063
|
-
}
|
|
1064
|
-
]
|
|
1065
|
-
}
|
|
1066
|
-
}
|
|
1067
|
-
]
|
|
1068
|
-
},
|
|
1069
|
-
"tag": {
|
|
1070
|
-
"description": "Object or array data type",
|
|
1071
|
-
"anyOf": [
|
|
1072
|
-
{
|
|
1073
|
-
"type": "string"
|
|
1074
|
-
},
|
|
1075
|
-
{
|
|
1076
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1077
|
-
},
|
|
1078
|
-
{
|
|
1079
|
-
"type": "array",
|
|
1080
|
-
"items": {
|
|
1081
|
-
"anyOf": [
|
|
1082
|
-
{
|
|
1083
|
-
"type": "string"
|
|
1084
|
-
},
|
|
1085
|
-
{
|
|
1086
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1087
|
-
}
|
|
1088
|
-
]
|
|
1089
|
-
}
|
|
1090
|
-
}
|
|
1091
|
-
]
|
|
1092
|
-
},
|
|
1093
|
-
"inReplyTo": {
|
|
1094
|
-
"description": "Object or array data type",
|
|
1095
|
-
"anyOf": [
|
|
1096
|
-
{
|
|
1097
|
-
"type": "string"
|
|
1098
|
-
},
|
|
1099
|
-
{
|
|
1100
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1101
|
-
},
|
|
1102
|
-
{
|
|
1103
|
-
"type": "array",
|
|
1104
|
-
"items": {
|
|
1105
|
-
"anyOf": [
|
|
1106
|
-
{
|
|
1107
|
-
"type": "string"
|
|
1108
|
-
},
|
|
1109
|
-
{
|
|
1110
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1111
|
-
}
|
|
1112
|
-
]
|
|
1113
|
-
}
|
|
1114
|
-
}
|
|
1115
|
-
]
|
|
1116
|
-
},
|
|
1117
|
-
"replies": {
|
|
1118
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1119
|
-
},
|
|
1120
|
-
"preview": {
|
|
1121
|
-
"description": "Object or array data type",
|
|
1122
|
-
"anyOf": [
|
|
1123
|
-
{
|
|
1124
|
-
"type": "string"
|
|
1125
|
-
},
|
|
1126
|
-
{
|
|
1127
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1128
|
-
},
|
|
1129
|
-
{
|
|
1130
|
-
"type": "array",
|
|
1131
|
-
"items": {
|
|
1132
|
-
"anyOf": [
|
|
1133
|
-
{
|
|
1134
|
-
"type": "string"
|
|
1135
|
-
},
|
|
1136
|
-
{
|
|
1137
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1138
|
-
}
|
|
1139
|
-
]
|
|
1140
|
-
}
|
|
1141
|
-
}
|
|
1142
|
-
]
|
|
1143
|
-
},
|
|
1144
|
-
"to": {
|
|
1145
|
-
"description": "Object or array data type",
|
|
1146
|
-
"anyOf": [
|
|
1147
|
-
{
|
|
1148
|
-
"type": "string"
|
|
1149
|
-
},
|
|
1150
|
-
{
|
|
1151
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1152
|
-
},
|
|
1153
|
-
{
|
|
1154
|
-
"type": "array",
|
|
1155
|
-
"items": {
|
|
1156
|
-
"anyOf": [
|
|
1157
|
-
{
|
|
1158
|
-
"type": "string"
|
|
1159
|
-
},
|
|
1160
|
-
{
|
|
1161
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1162
|
-
}
|
|
1163
|
-
]
|
|
1164
|
-
}
|
|
1165
|
-
}
|
|
1166
|
-
]
|
|
1167
|
-
},
|
|
1168
|
-
"bto": {
|
|
1169
|
-
"description": "Object or array data type",
|
|
1170
|
-
"anyOf": [
|
|
1171
|
-
{
|
|
1172
|
-
"type": "string"
|
|
1173
|
-
},
|
|
1174
|
-
{
|
|
1175
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
"type": "array",
|
|
1179
|
-
"items": {
|
|
1180
|
-
"anyOf": [
|
|
1181
|
-
{
|
|
1182
|
-
"type": "string"
|
|
1183
|
-
},
|
|
1184
|
-
{
|
|
1185
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1186
|
-
}
|
|
1187
|
-
]
|
|
1188
|
-
}
|
|
1189
|
-
}
|
|
1190
|
-
]
|
|
1191
|
-
},
|
|
1192
|
-
"cc": {
|
|
1193
|
-
"description": "Object or array data type",
|
|
1194
|
-
"anyOf": [
|
|
1195
|
-
{
|
|
1196
|
-
"type": "string"
|
|
1197
|
-
},
|
|
1198
|
-
{
|
|
1199
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1200
|
-
},
|
|
1201
|
-
{
|
|
1202
|
-
"type": "array",
|
|
1203
|
-
"items": {
|
|
1204
|
-
"anyOf": [
|
|
1205
|
-
{
|
|
1206
|
-
"type": "string"
|
|
1207
|
-
},
|
|
1208
|
-
{
|
|
1209
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1210
|
-
}
|
|
1211
|
-
]
|
|
1212
|
-
}
|
|
1213
|
-
}
|
|
1214
|
-
]
|
|
1215
|
-
},
|
|
1216
|
-
"bcc": {
|
|
1217
|
-
"description": "Object or array data type",
|
|
1218
|
-
"anyOf": [
|
|
1219
|
-
{
|
|
1220
|
-
"type": "string"
|
|
1221
|
-
},
|
|
1222
|
-
{
|
|
1223
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1224
|
-
},
|
|
1225
|
-
{
|
|
1226
|
-
"type": "array",
|
|
1227
|
-
"items": {
|
|
1228
|
-
"anyOf": [
|
|
1229
|
-
{
|
|
1230
|
-
"type": "string"
|
|
1231
|
-
},
|
|
1232
|
-
{
|
|
1233
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1234
|
-
}
|
|
1235
|
-
]
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
]
|
|
1239
|
-
},
|
|
1240
|
-
"mediaType": {
|
|
1241
|
-
"type": "string",
|
|
1242
|
-
"description": "MIME media type of the referenced resource."
|
|
1243
|
-
},
|
|
1244
|
-
"actor": {
|
|
1245
|
-
"description": "Object or array data type",
|
|
1246
|
-
"anyOf": [
|
|
1247
|
-
{
|
|
1248
|
-
"type": "string"
|
|
1249
|
-
},
|
|
1250
|
-
{
|
|
1251
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1252
|
-
},
|
|
1253
|
-
{
|
|
1254
|
-
"type": "array",
|
|
1255
|
-
"items": {
|
|
1256
|
-
"anyOf": [
|
|
1257
|
-
{
|
|
1258
|
-
"type": "string"
|
|
1259
|
-
},
|
|
1260
|
-
{
|
|
1261
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1262
|
-
}
|
|
1263
|
-
]
|
|
1264
|
-
}
|
|
1265
|
-
}
|
|
1266
|
-
]
|
|
1267
|
-
},
|
|
1268
|
-
"object": {
|
|
1269
|
-
"description": "Object or array data type",
|
|
1270
|
-
"anyOf": [
|
|
1271
|
-
{
|
|
1272
|
-
"type": "string"
|
|
1273
|
-
},
|
|
1274
|
-
{
|
|
1275
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1276
|
-
},
|
|
1277
|
-
{
|
|
1278
|
-
"type": "array",
|
|
1279
|
-
"items": {
|
|
1280
|
-
"anyOf": [
|
|
1281
|
-
{
|
|
1282
|
-
"type": "string"
|
|
1283
|
-
},
|
|
1284
|
-
{
|
|
1285
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1286
|
-
}
|
|
1287
|
-
]
|
|
1288
|
-
}
|
|
1289
|
-
}
|
|
1290
|
-
]
|
|
1291
|
-
},
|
|
1292
|
-
"target": {
|
|
1293
|
-
"description": "Object or array data type",
|
|
1294
|
-
"anyOf": [
|
|
1295
|
-
{
|
|
1296
|
-
"type": "string"
|
|
1297
|
-
},
|
|
1298
|
-
{
|
|
1299
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1300
|
-
},
|
|
1301
|
-
{
|
|
1302
|
-
"type": "array",
|
|
1303
|
-
"items": {
|
|
1304
|
-
"anyOf": [
|
|
1305
|
-
{
|
|
1306
|
-
"type": "string"
|
|
1307
|
-
},
|
|
1308
|
-
{
|
|
1309
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1310
|
-
}
|
|
1311
|
-
]
|
|
1312
|
-
}
|
|
1313
|
-
}
|
|
1314
|
-
]
|
|
1315
|
-
},
|
|
1316
|
-
"result": {
|
|
1317
|
-
"description": "Object or array data type",
|
|
1318
|
-
"anyOf": [
|
|
1319
|
-
{
|
|
1320
|
-
"type": "string"
|
|
1321
|
-
},
|
|
1322
|
-
{
|
|
1323
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1324
|
-
},
|
|
1325
|
-
{
|
|
1326
|
-
"type": "array",
|
|
1327
|
-
"items": {
|
|
1328
|
-
"anyOf": [
|
|
1329
|
-
{
|
|
1330
|
-
"type": "string"
|
|
1331
|
-
},
|
|
1332
|
-
{
|
|
1333
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1334
|
-
}
|
|
1335
|
-
]
|
|
1336
|
-
}
|
|
1337
|
-
}
|
|
1338
|
-
]
|
|
1339
|
-
},
|
|
1340
|
-
"origin": {
|
|
1341
|
-
"description": "Object or array data type",
|
|
1342
|
-
"anyOf": [
|
|
1343
|
-
{
|
|
1344
|
-
"type": "string"
|
|
1345
|
-
},
|
|
1346
|
-
{
|
|
1347
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1348
|
-
},
|
|
1349
|
-
{
|
|
1350
|
-
"type": "array",
|
|
1351
|
-
"items": {
|
|
1352
|
-
"anyOf": [
|
|
1353
|
-
{
|
|
1354
|
-
"type": "string"
|
|
1355
|
-
},
|
|
1356
|
-
{
|
|
1357
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1358
|
-
}
|
|
1359
|
-
]
|
|
1360
|
-
}
|
|
1361
|
-
}
|
|
1362
|
-
]
|
|
1363
|
-
},
|
|
1364
|
-
"instrument": {
|
|
1365
|
-
"description": "Object or array data type",
|
|
1366
|
-
"anyOf": [
|
|
1367
|
-
{
|
|
1368
|
-
"type": "string"
|
|
1369
|
-
},
|
|
1370
|
-
{
|
|
1371
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1372
|
-
},
|
|
1373
|
-
{
|
|
1374
|
-
"type": "array",
|
|
1375
|
-
"items": {
|
|
1376
|
-
"anyOf": [
|
|
1377
|
-
{
|
|
1378
|
-
"type": "string"
|
|
1379
|
-
},
|
|
1380
|
-
{
|
|
1381
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
1382
|
-
}
|
|
1383
|
-
]
|
|
1384
|
-
}
|
|
1385
|
-
}
|
|
1386
|
-
]
|
|
1387
|
-
}
|
|
1388
|
-
},
|
|
1389
|
-
"required": [
|
|
1390
|
-
"@context",
|
|
1391
|
-
"type"
|
|
1392
|
-
],
|
|
1393
|
-
"description": "A W3C Activity from Activity Streams.\n\nAn `Activity` describes an action performed by an `actor` on an `object`, and can optionally include a `target`, `result`, `origin`, or `instrument`."
|
|
693
|
+
]
|
|
1394
694
|
},
|
|
1395
695
|
"DataAssetItemList": {
|
|
696
|
+
"description": "Interface describing a list of entities that are within a Data Asset.\nPagination is handled via HTTP Link headers.",
|
|
1396
697
|
"type": "object",
|
|
1397
698
|
"properties": {
|
|
1398
699
|
"@context": {
|
|
1399
|
-
"type": "string",
|
|
1400
700
|
"const": "https://schema.org",
|
|
1401
701
|
"description": "The LD Context."
|
|
1402
702
|
},
|
|
1403
703
|
"type": {
|
|
1404
|
-
"type": "string",
|
|
1405
704
|
"const": "ItemList",
|
|
1406
705
|
"description": "The type"
|
|
1407
706
|
},
|
|
@@ -1417,15 +716,14 @@
|
|
|
1417
716
|
"@context",
|
|
1418
717
|
"type",
|
|
1419
718
|
"itemListElement"
|
|
1420
|
-
]
|
|
1421
|
-
"description": "Interface describing a list of entities that are within a Data Asset. Pagination is handled via HTTP Link headers."
|
|
719
|
+
]
|
|
1422
720
|
},
|
|
1423
721
|
"DataAssetQueryRequest": {
|
|
1424
722
|
"type": "object",
|
|
1425
723
|
"properties": {
|
|
1426
724
|
"consumerPid": {
|
|
1427
725
|
"type": "string",
|
|
1428
|
-
"description": "The consumer Process ID from the DSP Transfer Process
|
|
726
|
+
"description": "The consumer Process ID from the DSP Transfer Process.\nMandatory - used to determine the Dataset, Distribution, and Agreement.\nThe datasetId is resolved from the Transfer Process using this ID."
|
|
1429
727
|
},
|
|
1430
728
|
"query": {
|
|
1431
729
|
"$ref": "#/components/schemas/FilteringQuery"
|
|
@@ -1438,6 +736,7 @@
|
|
|
1438
736
|
"description": "Request body containing the data asset and query criteria."
|
|
1439
737
|
},
|
|
1440
738
|
"Error": {
|
|
739
|
+
"description": "Model to describe serialized error.",
|
|
1441
740
|
"type": "object",
|
|
1442
741
|
"properties": {
|
|
1443
742
|
"name": {
|
|
@@ -1468,10 +767,10 @@
|
|
|
1468
767
|
"required": [
|
|
1469
768
|
"name",
|
|
1470
769
|
"message"
|
|
1471
|
-
]
|
|
1472
|
-
"description": "Model to describe serialized error."
|
|
770
|
+
]
|
|
1473
771
|
},
|
|
1474
772
|
"FilteringQuery": {
|
|
773
|
+
"description": "A query over a data asset that to be processed by a Dataspace Data Plane App.",
|
|
1475
774
|
"type": "object",
|
|
1476
775
|
"properties": {
|
|
1477
776
|
"type": {
|
|
@@ -1492,10 +791,10 @@
|
|
|
1492
791
|
"required": [
|
|
1493
792
|
"type",
|
|
1494
793
|
"q"
|
|
1495
|
-
]
|
|
1496
|
-
"description": "A query over a data asset that to be processed by a Dataspace Data Plane App."
|
|
794
|
+
]
|
|
1497
795
|
},
|
|
1498
796
|
"TaskApp": {
|
|
797
|
+
"description": "Denotes a task associated with a Dataspace App",
|
|
1499
798
|
"type": "object",
|
|
1500
799
|
"properties": {
|
|
1501
800
|
"taskId": {
|
|
@@ -1510,8 +809,7 @@
|
|
|
1510
809
|
"required": [
|
|
1511
810
|
"taskId",
|
|
1512
811
|
"dataspaceAppId"
|
|
1513
|
-
]
|
|
1514
|
-
"description": "Denotes a task associated with a Dataspace App"
|
|
812
|
+
]
|
|
1515
813
|
}
|
|
1516
814
|
},
|
|
1517
815
|
"securitySchemes": {
|
|
@@ -24,7 +24,7 @@ The entry Id.
|
|
|
24
24
|
|
|
25
25
|
### activityId? {#activityid}
|
|
26
26
|
|
|
27
|
-
> `optional` **activityId
|
|
27
|
+
> `optional` **activityId?**: `string`
|
|
28
28
|
|
|
29
29
|
The Activity Id.
|
|
30
30
|
|
|
@@ -56,7 +56,7 @@ The last update date.
|
|
|
56
56
|
|
|
57
57
|
### retainUntil? {#retainuntil}
|
|
58
58
|
|
|
59
|
-
> `optional` **retainUntil
|
|
59
|
+
> `optional` **retainUntil?**: `number`
|
|
60
60
|
|
|
61
61
|
The timestamp of when to retain the entry until.
|
|
62
62
|
|
|
@@ -64,6 +64,6 @@ The timestamp of when to retain the entry until.
|
|
|
64
64
|
|
|
65
65
|
### retryCount? {#retrycount}
|
|
66
66
|
|
|
67
|
-
> `optional` **retryCount
|
|
67
|
+
> `optional` **retryCount?**: `number`
|
|
68
68
|
|
|
69
69
|
Number of times this activity has been retried.
|
|
@@ -6,14 +6,26 @@ Dataspace Data Plane service configuration
|
|
|
6
6
|
|
|
7
7
|
### retainActivityLogsFor? {#retainactivitylogsfor}
|
|
8
8
|
|
|
9
|
-
> `optional` **retainActivityLogsFor
|
|
9
|
+
> `optional` **retainActivityLogsFor?**: `number`
|
|
10
10
|
|
|
11
11
|
The amount of time in minutes to retain activity log entries until removal, set to -1 to keep forever.
|
|
12
12
|
|
|
13
|
+
#### Default
|
|
14
|
+
|
|
15
|
+
```ts
|
|
16
|
+
10
|
|
17
|
+
```
|
|
18
|
+
|
|
13
19
|
***
|
|
14
20
|
|
|
15
21
|
### activityLogsCleanUpInterval? {#activitylogscleanupinterval}
|
|
16
22
|
|
|
17
|
-
> `optional` **activityLogsCleanUpInterval
|
|
23
|
+
> `optional` **activityLogsCleanUpInterval?**: `number`
|
|
18
24
|
|
|
19
25
|
The interval in minutes in between activity log clean ups. -1 indicates no clean up shall be done.
|
|
26
|
+
|
|
27
|
+
#### Default
|
|
28
|
+
|
|
29
|
+
```ts
|
|
30
|
+
60 minutes
|
|
31
|
+
```
|
|
@@ -6,56 +6,92 @@ Dataspace Data Plane service options
|
|
|
6
6
|
|
|
7
7
|
### loggingComponentType? {#loggingcomponenttype}
|
|
8
8
|
|
|
9
|
-
> `optional` **loggingComponentType
|
|
9
|
+
> `optional` **loggingComponentType?**: `string`
|
|
10
10
|
|
|
11
11
|
Logging component type.
|
|
12
12
|
|
|
13
|
+
#### Default
|
|
14
|
+
|
|
15
|
+
```ts
|
|
16
|
+
logging
|
|
17
|
+
```
|
|
18
|
+
|
|
13
19
|
***
|
|
14
20
|
|
|
15
21
|
### backgroundTaskComponentType? {#backgroundtaskcomponenttype}
|
|
16
22
|
|
|
17
|
-
> `optional` **backgroundTaskComponentType
|
|
23
|
+
> `optional` **backgroundTaskComponentType?**: `string`
|
|
18
24
|
|
|
19
25
|
Background task component.
|
|
20
26
|
|
|
27
|
+
#### Default
|
|
28
|
+
|
|
29
|
+
```ts
|
|
30
|
+
background-task
|
|
31
|
+
```
|
|
32
|
+
|
|
21
33
|
***
|
|
22
34
|
|
|
23
35
|
### taskSchedulerComponentType? {#taskschedulercomponenttype}
|
|
24
36
|
|
|
25
|
-
> `optional` **taskSchedulerComponentType
|
|
37
|
+
> `optional` **taskSchedulerComponentType?**: `string`
|
|
26
38
|
|
|
27
39
|
Task Scheduler Component Type.
|
|
28
40
|
|
|
41
|
+
#### Default
|
|
42
|
+
|
|
43
|
+
```ts
|
|
44
|
+
task-scheduler
|
|
45
|
+
```
|
|
46
|
+
|
|
29
47
|
***
|
|
30
48
|
|
|
31
49
|
### activityLogEntityStorageType? {#activitylogentitystoragetype}
|
|
32
50
|
|
|
33
|
-
> `optional` **activityLogEntityStorageType
|
|
51
|
+
> `optional` **activityLogEntityStorageType?**: `string`
|
|
34
52
|
|
|
35
53
|
The entity storage for activity log details.
|
|
36
54
|
|
|
55
|
+
#### Default
|
|
56
|
+
|
|
57
|
+
```ts
|
|
58
|
+
activity-log-details
|
|
59
|
+
```
|
|
60
|
+
|
|
37
61
|
***
|
|
38
62
|
|
|
39
63
|
### activityTaskEntityStorageType? {#activitytaskentitystoragetype}
|
|
40
64
|
|
|
41
|
-
> `optional` **activityTaskEntityStorageType
|
|
65
|
+
> `optional` **activityTaskEntityStorageType?**: `string`
|
|
42
66
|
|
|
43
67
|
The entity storage for the association between Activities and Tasks.
|
|
44
68
|
|
|
69
|
+
#### Default
|
|
70
|
+
|
|
71
|
+
```ts
|
|
72
|
+
activity-task
|
|
73
|
+
```
|
|
74
|
+
|
|
45
75
|
***
|
|
46
76
|
|
|
47
77
|
### transferProcessEntityStorageType? {#transferprocessentitystoragetype}
|
|
48
78
|
|
|
49
|
-
> `optional` **transferProcessEntityStorageType
|
|
79
|
+
> `optional` **transferProcessEntityStorageType?**: `string`
|
|
50
80
|
|
|
51
81
|
The entity storage type for Transfer Process entities.
|
|
52
82
|
Used to read Transfer Process state from shared storage.
|
|
53
83
|
|
|
84
|
+
#### Default
|
|
85
|
+
|
|
86
|
+
```ts
|
|
87
|
+
transfer-process
|
|
88
|
+
```
|
|
89
|
+
|
|
54
90
|
***
|
|
55
91
|
|
|
56
92
|
### partitionContextIds? {#partitioncontextids}
|
|
57
93
|
|
|
58
|
-
> `optional` **partitionContextIds
|
|
94
|
+
> `optional` **partitionContextIds?**: `string`[]
|
|
59
95
|
|
|
60
96
|
The keys to use from the context ids to cleanup partitions.
|
|
61
97
|
|
|
@@ -63,22 +99,34 @@ The keys to use from the context ids to cleanup partitions.
|
|
|
63
99
|
|
|
64
100
|
### trustComponentType? {#trustcomponenttype}
|
|
65
101
|
|
|
66
|
-
> `optional` **trustComponentType
|
|
102
|
+
> `optional` **trustComponentType?**: `string`
|
|
67
103
|
|
|
68
104
|
Trust component type.
|
|
69
105
|
|
|
106
|
+
#### Default
|
|
107
|
+
|
|
108
|
+
```ts
|
|
109
|
+
trust
|
|
110
|
+
```
|
|
111
|
+
|
|
70
112
|
***
|
|
71
113
|
|
|
72
114
|
### pepComponentType? {#pepcomponenttype}
|
|
73
115
|
|
|
74
|
-
> `optional` **pepComponentType
|
|
116
|
+
> `optional` **pepComponentType?**: `string`
|
|
75
117
|
|
|
76
118
|
Policy enforcement point component type for ODRL policy enforcement.
|
|
77
119
|
|
|
120
|
+
#### Default
|
|
121
|
+
|
|
122
|
+
```ts
|
|
123
|
+
policy-enforcement-point-service
|
|
124
|
+
```
|
|
125
|
+
|
|
78
126
|
***
|
|
79
127
|
|
|
80
128
|
### config? {#config}
|
|
81
129
|
|
|
82
|
-
> `optional` **config
|
|
130
|
+
> `optional` **config?**: [`IDataspaceDataPlaneServiceConfig`](IDataspaceDataPlaneServiceConfig.md)
|
|
83
131
|
|
|
84
132
|
The configuration of the Dataspace Data Plane Service.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/dataspace-data-plane-service",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.22",
|
|
4
4
|
"description": "Processes activities and data requests while enforcing transfer and policy constraints in the data plane.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"@twin.org/crypto": "next",
|
|
22
22
|
"@twin.org/data-core": "next",
|
|
23
23
|
"@twin.org/data-json-ld": "next",
|
|
24
|
-
"@twin.org/dataspace-app-runner": "0.0.3-next.
|
|
25
|
-
"@twin.org/dataspace-models": "0.0.3-next.
|
|
24
|
+
"@twin.org/dataspace-app-runner": "0.0.3-next.22",
|
|
25
|
+
"@twin.org/dataspace-models": "0.0.3-next.22",
|
|
26
26
|
"@twin.org/engine-models": "next",
|
|
27
27
|
"@twin.org/entity": "next",
|
|
28
28
|
"@twin.org/entity-storage-models": "next",
|