@twin.org/node 0.0.3-next.21 → 0.0.3-next.23
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/locales/en.json +14621 -41
- package/docs/changelog.md +28 -0
- package/docs/open-api/spec.json +761 -1829
- package/package.json +2 -2
package/docs/open-api/spec.json
CHANGED
|
@@ -2467,6 +2467,132 @@
|
|
|
2467
2467
|
}
|
|
2468
2468
|
}
|
|
2469
2469
|
},
|
|
2470
|
+
"/identity/verifiable-credential/verify/document": {
|
|
2471
|
+
"post": {
|
|
2472
|
+
"operationId": "identityVerifiableCredentialVerifyDocument",
|
|
2473
|
+
"summary": "Verify an identity verifiable credential document",
|
|
2474
|
+
"tags": [
|
|
2475
|
+
"Identity"
|
|
2476
|
+
],
|
|
2477
|
+
"requestBody": {
|
|
2478
|
+
"description": "Request to verify a verifiable credential.",
|
|
2479
|
+
"required": true,
|
|
2480
|
+
"content": {
|
|
2481
|
+
"application/json": {
|
|
2482
|
+
"schema": {
|
|
2483
|
+
"$ref": "https://schema.twindev.org/w3c-did/DidVerifiableCredential"
|
|
2484
|
+
},
|
|
2485
|
+
"examples": {
|
|
2486
|
+
"identityVerifiableCredentialVerifyDocumentRequestExample": {
|
|
2487
|
+
"value": {
|
|
2488
|
+
"@context": [
|
|
2489
|
+
"https://www.w3.org/2018/credentials/v1",
|
|
2490
|
+
"https://schema.org"
|
|
2491
|
+
],
|
|
2492
|
+
"id": "https://example.com/credentials/3732",
|
|
2493
|
+
"type": [
|
|
2494
|
+
"VerifiableCredential",
|
|
2495
|
+
"Person"
|
|
2496
|
+
],
|
|
2497
|
+
"credentialSubject": {
|
|
2498
|
+
"id": "did:entity-storage:0x4757993355b921a8229bd780f30921b6a0216a72e6c3f37a09d13b8426a17def",
|
|
2499
|
+
"name": "Jane Doe"
|
|
2500
|
+
},
|
|
2501
|
+
"issuer": "did:entity-storage:0x879c31386f992cfa29b77fe31e37256d69f6a57653cee4eb60ad4c4613c5515a",
|
|
2502
|
+
"issuanceDate": "2025-01-24T09:21:51.500Z",
|
|
2503
|
+
"credentialStatus": {
|
|
2504
|
+
"id": "did:entity-storage:0x879c31386f992cfa29b77fe31e37256d69f6a57653cee4eb60ad4c4613c5515a#revocation",
|
|
2505
|
+
"type": "BitstringStatusList",
|
|
2506
|
+
"revocationBitmapIndex": "5"
|
|
2507
|
+
}
|
|
2508
|
+
}
|
|
2509
|
+
}
|
|
2510
|
+
}
|
|
2511
|
+
}
|
|
2512
|
+
}
|
|
2513
|
+
},
|
|
2514
|
+
"responses": {
|
|
2515
|
+
"200": {
|
|
2516
|
+
"description": "Response to verifying a verifiable credential.",
|
|
2517
|
+
"content": {
|
|
2518
|
+
"application/json": {
|
|
2519
|
+
"schema": {
|
|
2520
|
+
"$ref": "#/components/schemas/IdentityVerifiableCredentialVerifyResponse"
|
|
2521
|
+
},
|
|
2522
|
+
"examples": {
|
|
2523
|
+
"identityVerifiableCredentialVerifyResponseExample": {
|
|
2524
|
+
"value": {
|
|
2525
|
+
"revoked": false,
|
|
2526
|
+
"verifiableCredential": {
|
|
2527
|
+
"@context": [
|
|
2528
|
+
"https://www.w3.org/2018/credentials/v1",
|
|
2529
|
+
"https://schema.org"
|
|
2530
|
+
],
|
|
2531
|
+
"id": "https://example.com/credentials/3732",
|
|
2532
|
+
"type": [
|
|
2533
|
+
"VerifiableCredential",
|
|
2534
|
+
"Person"
|
|
2535
|
+
],
|
|
2536
|
+
"credentialSubject": {
|
|
2537
|
+
"id": "did:entity-storage:0x4757993355b921a8229bd780f30921b6a0216a72e6c3f37a09d13b8426a17def",
|
|
2538
|
+
"name": "Jane Doe"
|
|
2539
|
+
},
|
|
2540
|
+
"issuer": "did:entity-storage:0x879c31386f992cfa29b77fe31e37256d69f6a57653cee4eb60ad4c4613c5515a",
|
|
2541
|
+
"issuanceDate": "2025-01-24T09:21:51.500Z",
|
|
2542
|
+
"credentialStatus": {
|
|
2543
|
+
"id": "did:entity-storage:0x879c31386f992cfa29b77fe31e37256d69f6a57653cee4eb60ad4c4613c5515a#revocation",
|
|
2544
|
+
"type": "BitstringStatusList",
|
|
2545
|
+
"revocationBitmapIndex": "5"
|
|
2546
|
+
}
|
|
2547
|
+
}
|
|
2548
|
+
}
|
|
2549
|
+
}
|
|
2550
|
+
}
|
|
2551
|
+
}
|
|
2552
|
+
}
|
|
2553
|
+
},
|
|
2554
|
+
"400": {
|
|
2555
|
+
"description": "The server cannot process the request, see the content for more details.",
|
|
2556
|
+
"content": {
|
|
2557
|
+
"application/json": {
|
|
2558
|
+
"schema": {
|
|
2559
|
+
"$ref": "#/components/schemas/Error"
|
|
2560
|
+
},
|
|
2561
|
+
"examples": {
|
|
2562
|
+
"exampleResponse": {
|
|
2563
|
+
"value": {
|
|
2564
|
+
"name": "GeneralError",
|
|
2565
|
+
"message": "errorMessage",
|
|
2566
|
+
"properties": {
|
|
2567
|
+
"foo": "bar"
|
|
2568
|
+
}
|
|
2569
|
+
}
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
}
|
|
2573
|
+
}
|
|
2574
|
+
},
|
|
2575
|
+
"500": {
|
|
2576
|
+
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
2577
|
+
"content": {
|
|
2578
|
+
"application/json": {
|
|
2579
|
+
"schema": {
|
|
2580
|
+
"$ref": "#/components/schemas/Error"
|
|
2581
|
+
},
|
|
2582
|
+
"examples": {
|
|
2583
|
+
"exampleResponse": {
|
|
2584
|
+
"value": {
|
|
2585
|
+
"name": "InternalServerError",
|
|
2586
|
+
"message": "errorMessage"
|
|
2587
|
+
}
|
|
2588
|
+
}
|
|
2589
|
+
}
|
|
2590
|
+
}
|
|
2591
|
+
}
|
|
2592
|
+
}
|
|
2593
|
+
}
|
|
2594
|
+
}
|
|
2595
|
+
},
|
|
2470
2596
|
"/identity/verifiable-credential/verify": {
|
|
2471
2597
|
"get": {
|
|
2472
2598
|
"operationId": "identityVerifiableCredentialVerify",
|
|
@@ -2486,17 +2612,6 @@
|
|
|
2486
2612
|
"example": "eyJraWQiOi...D1Z3AQ"
|
|
2487
2613
|
}
|
|
2488
2614
|
],
|
|
2489
|
-
"requestBody": {
|
|
2490
|
-
"description": "Request to verify a verifiable credential.",
|
|
2491
|
-
"required": true,
|
|
2492
|
-
"content": {
|
|
2493
|
-
"application/json": {
|
|
2494
|
-
"schema": {
|
|
2495
|
-
"$ref": "#/components/schemas/IdentityVerifiableCredentialVerifyRequest"
|
|
2496
|
-
}
|
|
2497
|
-
}
|
|
2498
|
-
}
|
|
2499
|
-
},
|
|
2500
2615
|
"responses": {
|
|
2501
2616
|
"200": {
|
|
2502
2617
|
"description": "Response to verifying a verifiable credential.",
|
|
@@ -4245,7 +4360,7 @@
|
|
|
4245
4360
|
"dateCreated": "2024-01-01T00:00:00Z",
|
|
4246
4361
|
"encodingFormat": "application/pdf",
|
|
4247
4362
|
"blobSize": 42,
|
|
4248
|
-
"integrity": "sha256-
|
|
4363
|
+
"integrity": "sha256-xX2UsIj0xtLLMt7QFIExDHhqoAE0yO4i+EseJUVgKnA=",
|
|
4249
4364
|
"fileExtension": "pdf",
|
|
4250
4365
|
"metadata": {
|
|
4251
4366
|
"@context": "https://schema.org",
|
|
@@ -4284,7 +4399,7 @@
|
|
|
4284
4399
|
"dateCreated": "2024-01-01T00:00:00Z",
|
|
4285
4400
|
"encodingFormat": "application/pdf",
|
|
4286
4401
|
"blobSize": 42,
|
|
4287
|
-
"integrity": "sha256-
|
|
4402
|
+
"integrity": "sha256-xX2UsIj0xtLLMt7QFIExDHhqoAE0yO4i+EseJUVgKnA=",
|
|
4288
4403
|
"fileExtension": "pdf",
|
|
4289
4404
|
"metadata": {
|
|
4290
4405
|
"@context": "https://schema.org",
|
|
@@ -4464,7 +4579,7 @@
|
|
|
4464
4579
|
"dateCreated": "2024-01-01T00:00:00Z",
|
|
4465
4580
|
"encodingFormat": "application/pdf",
|
|
4466
4581
|
"blobSize": 42,
|
|
4467
|
-
"integrity": "sha256-
|
|
4582
|
+
"integrity": "sha256-xX2UsIj0xtLLMt7QFIExDHhqoAE0yO4i+EseJUVgKnA=",
|
|
4468
4583
|
"fileExtension": "pdf",
|
|
4469
4584
|
"metadata": {
|
|
4470
4585
|
"@context": "https://schema.org",
|
|
@@ -4493,7 +4608,7 @@
|
|
|
4493
4608
|
"dateCreated": "2024-01-01T00:00:00Z",
|
|
4494
4609
|
"encodingFormat": "application/pdf",
|
|
4495
4610
|
"blobSize": 42,
|
|
4496
|
-
"integrity": "sha256-
|
|
4611
|
+
"integrity": "sha256-xX2UsIj0xtLLMt7QFIExDHhqoAE0yO4i+EseJUVgKnA=",
|
|
4497
4612
|
"fileExtension": "pdf",
|
|
4498
4613
|
"metadata": {
|
|
4499
4614
|
"@context": "https://schema.org",
|
|
@@ -12662,25 +12777,14 @@
|
|
|
12662
12777
|
}
|
|
12663
12778
|
}
|
|
12664
12779
|
},
|
|
12665
|
-
"/ais/
|
|
12780
|
+
"/ais/entries": {
|
|
12666
12781
|
"get": {
|
|
12667
|
-
"operationId": "
|
|
12668
|
-
"summary": "Get the entry objects
|
|
12782
|
+
"operationId": "auditableItemStreamListEntriesNoStream",
|
|
12783
|
+
"summary": "Get the entry objects for all streams",
|
|
12669
12784
|
"tags": [
|
|
12670
12785
|
"Auditable Item Stream"
|
|
12671
12786
|
],
|
|
12672
12787
|
"parameters": [
|
|
12673
|
-
{
|
|
12674
|
-
"name": "id",
|
|
12675
|
-
"description": "The id of the stream to get.",
|
|
12676
|
-
"in": "path",
|
|
12677
|
-
"required": true,
|
|
12678
|
-
"schema": {
|
|
12679
|
-
"type": "string"
|
|
12680
|
-
},
|
|
12681
|
-
"style": "simple",
|
|
12682
|
-
"example": "ais:1234567890"
|
|
12683
|
-
},
|
|
12684
12788
|
{
|
|
12685
12789
|
"name": "conditions",
|
|
12686
12790
|
"description": "The conditions to filter the stream, JSON stringified IComparator[].",
|
|
@@ -12699,6 +12803,15 @@
|
|
|
12699
12803
|
"type": "string"
|
|
12700
12804
|
}
|
|
12701
12805
|
},
|
|
12806
|
+
{
|
|
12807
|
+
"name": "verifyEntries",
|
|
12808
|
+
"description": "Should the entries be verified, defaults to false.",
|
|
12809
|
+
"in": "query",
|
|
12810
|
+
"required": false,
|
|
12811
|
+
"schema": {
|
|
12812
|
+
"type": "string"
|
|
12813
|
+
}
|
|
12814
|
+
},
|
|
12702
12815
|
{
|
|
12703
12816
|
"name": "order",
|
|
12704
12817
|
"description": "Retrieve the entries in ascending/descending time order, defaults to Ascending.",
|
|
@@ -12743,14 +12856,14 @@
|
|
|
12743
12856
|
],
|
|
12744
12857
|
"responses": {
|
|
12745
12858
|
"200": {
|
|
12746
|
-
"description": "Response to getting an auditable item stream entries
|
|
12859
|
+
"description": "Response to getting an auditable item stream entries.",
|
|
12747
12860
|
"content": {
|
|
12748
12861
|
"application/json": {
|
|
12749
12862
|
"schema": {
|
|
12750
|
-
"$ref": "https://schema.twindev.org/ais/
|
|
12863
|
+
"$ref": "https://schema.twindev.org/ais/AuditableItemStreamEntryList"
|
|
12751
12864
|
},
|
|
12752
12865
|
"examples": {
|
|
12753
|
-
"
|
|
12866
|
+
"auditableItemStreamListEntriesNoStreamResponseExample": {
|
|
12754
12867
|
"value": {
|
|
12755
12868
|
"@context": [
|
|
12756
12869
|
"https://schema.org",
|
|
@@ -12759,20 +12872,78 @@
|
|
|
12759
12872
|
],
|
|
12760
12873
|
"type": [
|
|
12761
12874
|
"ItemList",
|
|
12762
|
-
"
|
|
12875
|
+
"AuditableItemStreamEntryList"
|
|
12763
12876
|
],
|
|
12764
12877
|
"itemListElement": [
|
|
12765
12878
|
{
|
|
12766
|
-
"@context":
|
|
12767
|
-
|
|
12768
|
-
|
|
12769
|
-
|
|
12879
|
+
"@context": [
|
|
12880
|
+
"https://schema.twindev.org/ais/",
|
|
12881
|
+
"https://schema.twindev.org/common/"
|
|
12882
|
+
],
|
|
12883
|
+
"type": "AuditableItemStreamEntry",
|
|
12884
|
+
"id": "tst:1234567890",
|
|
12885
|
+
"dateCreated": "2024-08-22T11:55:16.271Z",
|
|
12886
|
+
"proofId": "0101010101010101010101010101010101010101010101010101010101010101",
|
|
12887
|
+
"index": 0,
|
|
12888
|
+
"entryObject": {
|
|
12889
|
+
"@context": "https://schema.org",
|
|
12890
|
+
"@type": "Event",
|
|
12891
|
+
"startDate": "2011-04-09T20:00:00Z",
|
|
12892
|
+
"description": "A description of the event"
|
|
12893
|
+
}
|
|
12894
|
+
}
|
|
12895
|
+
]
|
|
12896
|
+
}
|
|
12897
|
+
}
|
|
12898
|
+
}
|
|
12899
|
+
},
|
|
12900
|
+
"application/ld+json": {
|
|
12901
|
+
"schema": {
|
|
12902
|
+
"$ref": "https://schema.twindev.org/ais/AuditableItemStreamEntryList"
|
|
12903
|
+
},
|
|
12904
|
+
"examples": {
|
|
12905
|
+
"auditableItemStreamJsonLdListEntriesNoStreamResponseExample": {
|
|
12906
|
+
"value": {
|
|
12907
|
+
"@context": [
|
|
12908
|
+
"https://schema.org",
|
|
12909
|
+
"https://schema.twindev.org/ais/",
|
|
12910
|
+
"https://schema.twindev.org/common/"
|
|
12911
|
+
],
|
|
12912
|
+
"type": [
|
|
12913
|
+
"ItemList",
|
|
12914
|
+
"AuditableItemStreamEntryList"
|
|
12915
|
+
],
|
|
12916
|
+
"itemListElement": [
|
|
12917
|
+
{
|
|
12918
|
+
"@context": [
|
|
12919
|
+
"https://schema.twindev.org/ais/",
|
|
12920
|
+
"https://schema.twindev.org/common/"
|
|
12921
|
+
],
|
|
12922
|
+
"type": "AuditableItemStreamEntry",
|
|
12923
|
+
"id": "tst:1234567890",
|
|
12924
|
+
"dateCreated": "2024-08-22T11:55:16.271Z",
|
|
12925
|
+
"proofId": "0101010101010101010101010101010101010101010101010101010101010101",
|
|
12926
|
+
"index": 0,
|
|
12927
|
+
"entryObject": {
|
|
12928
|
+
"@context": "https://schema.org",
|
|
12929
|
+
"@type": "Event",
|
|
12930
|
+
"startDate": "2011-04-09T20:00:00Z",
|
|
12931
|
+
"description": "A description of the event"
|
|
12932
|
+
}
|
|
12770
12933
|
}
|
|
12771
12934
|
]
|
|
12772
12935
|
}
|
|
12773
12936
|
}
|
|
12774
12937
|
}
|
|
12775
12938
|
}
|
|
12939
|
+
},
|
|
12940
|
+
"headers": {
|
|
12941
|
+
"content-type": {
|
|
12942
|
+
"schema": {
|
|
12943
|
+
"type": "string"
|
|
12944
|
+
},
|
|
12945
|
+
"description": "e.g. application/ld+json"
|
|
12946
|
+
}
|
|
12776
12947
|
}
|
|
12777
12948
|
},
|
|
12778
12949
|
"400": {
|
|
@@ -12856,70 +13027,118 @@
|
|
|
12856
13027
|
}
|
|
12857
13028
|
}
|
|
12858
13029
|
},
|
|
12859
|
-
"/
|
|
12860
|
-
"
|
|
12861
|
-
"operationId": "
|
|
12862
|
-
"summary": "
|
|
13030
|
+
"/ais/{id}/entries/objects": {
|
|
13031
|
+
"get": {
|
|
13032
|
+
"operationId": "auditableItemStreamListEntryObjects",
|
|
13033
|
+
"summary": "Get the entry objects in a stream",
|
|
12863
13034
|
"tags": [
|
|
12864
|
-
"
|
|
13035
|
+
"Auditable Item Stream"
|
|
12865
13036
|
],
|
|
12866
13037
|
"parameters": [
|
|
12867
13038
|
{
|
|
12868
|
-
"name": "
|
|
12869
|
-
"
|
|
13039
|
+
"name": "id",
|
|
13040
|
+
"description": "The id of the stream to get.",
|
|
13041
|
+
"in": "path",
|
|
12870
13042
|
"required": true,
|
|
12871
13043
|
"schema": {
|
|
12872
13044
|
"type": "string"
|
|
12873
13045
|
},
|
|
12874
|
-
"style": "simple"
|
|
13046
|
+
"style": "simple",
|
|
13047
|
+
"example": "ais:1234567890"
|
|
12875
13048
|
},
|
|
12876
13049
|
{
|
|
12877
|
-
"name": "
|
|
12878
|
-
"
|
|
12879
|
-
"
|
|
13050
|
+
"name": "conditions",
|
|
13051
|
+
"description": "The conditions to filter the stream, JSON stringified IComparator[].",
|
|
13052
|
+
"in": "query",
|
|
13053
|
+
"required": false,
|
|
12880
13054
|
"schema": {
|
|
12881
13055
|
"type": "string"
|
|
12882
|
-
}
|
|
12883
|
-
|
|
12884
|
-
|
|
12885
|
-
|
|
12886
|
-
|
|
12887
|
-
|
|
12888
|
-
|
|
12889
|
-
|
|
12890
|
-
|
|
12891
|
-
|
|
12892
|
-
|
|
12893
|
-
|
|
12894
|
-
|
|
12895
|
-
|
|
12896
|
-
|
|
12897
|
-
|
|
12898
|
-
|
|
12899
|
-
|
|
12900
|
-
|
|
12901
|
-
|
|
12902
|
-
|
|
12903
|
-
|
|
12904
|
-
|
|
12905
|
-
|
|
12906
|
-
|
|
12907
|
-
|
|
12908
|
-
|
|
12909
|
-
|
|
12910
|
-
|
|
12911
|
-
|
|
12912
|
-
|
|
12913
|
-
|
|
13056
|
+
}
|
|
13057
|
+
},
|
|
13058
|
+
{
|
|
13059
|
+
"name": "includeDeleted",
|
|
13060
|
+
"description": "Whether to include deleted entries, defaults to false.",
|
|
13061
|
+
"in": "query",
|
|
13062
|
+
"required": false,
|
|
13063
|
+
"schema": {
|
|
13064
|
+
"type": "string"
|
|
13065
|
+
}
|
|
13066
|
+
},
|
|
13067
|
+
{
|
|
13068
|
+
"name": "order",
|
|
13069
|
+
"description": "Retrieve the entries in ascending/descending time order, defaults to Ascending.",
|
|
13070
|
+
"in": "query",
|
|
13071
|
+
"required": false,
|
|
13072
|
+
"schema": {
|
|
13073
|
+
"$ref": "#/components/schemas/SortDirection"
|
|
13074
|
+
}
|
|
13075
|
+
},
|
|
13076
|
+
{
|
|
13077
|
+
"name": "limit",
|
|
13078
|
+
"description": "How many entries to return.",
|
|
13079
|
+
"in": "query",
|
|
13080
|
+
"required": false,
|
|
13081
|
+
"schema": {
|
|
13082
|
+
"type": "string"
|
|
13083
|
+
}
|
|
13084
|
+
},
|
|
13085
|
+
{
|
|
13086
|
+
"name": "cursor",
|
|
13087
|
+
"description": "Cursor to use for next chunk of data.",
|
|
13088
|
+
"in": "query",
|
|
13089
|
+
"required": false,
|
|
13090
|
+
"schema": {
|
|
13091
|
+
"type": "string"
|
|
13092
|
+
}
|
|
13093
|
+
},
|
|
13094
|
+
{
|
|
13095
|
+
"name": "accept",
|
|
13096
|
+
"in": "header",
|
|
13097
|
+
"required": true,
|
|
13098
|
+
"schema": {
|
|
13099
|
+
"type": "string"
|
|
13100
|
+
},
|
|
13101
|
+
"style": "simple"
|
|
13102
|
+
}
|
|
13103
|
+
],
|
|
13104
|
+
"security": [
|
|
13105
|
+
{
|
|
13106
|
+
"jwtBearerAuthScheme": []
|
|
13107
|
+
}
|
|
13108
|
+
],
|
|
13109
|
+
"responses": {
|
|
13110
|
+
"200": {
|
|
13111
|
+
"description": "Response to getting an auditable item stream entries objects.",
|
|
13112
|
+
"content": {
|
|
13113
|
+
"application/json": {
|
|
13114
|
+
"schema": {
|
|
13115
|
+
"$ref": "https://schema.twindev.org/ais/AuditableItemStreamEntryObjectList"
|
|
13116
|
+
},
|
|
13117
|
+
"examples": {
|
|
13118
|
+
"auditableItemStreamListEntryObjectsResponseExample": {
|
|
13119
|
+
"value": {
|
|
13120
|
+
"@context": [
|
|
13121
|
+
"https://schema.org",
|
|
13122
|
+
"https://schema.twindev.org/ais/",
|
|
13123
|
+
"https://schema.twindev.org/common/"
|
|
13124
|
+
],
|
|
13125
|
+
"type": [
|
|
13126
|
+
"ItemList",
|
|
13127
|
+
"AuditableItemStreamEntryObjectList"
|
|
13128
|
+
],
|
|
13129
|
+
"itemListElement": [
|
|
13130
|
+
{
|
|
13131
|
+
"@context": "https://schema.org",
|
|
13132
|
+
"@type": "Event",
|
|
13133
|
+
"startDate": "2011-04-09T20:00:00Z",
|
|
13134
|
+
"description": "A description of the event"
|
|
13135
|
+
}
|
|
13136
|
+
]
|
|
13137
|
+
}
|
|
12914
13138
|
}
|
|
12915
13139
|
}
|
|
12916
13140
|
}
|
|
12917
13141
|
}
|
|
12918
|
-
}
|
|
12919
|
-
},
|
|
12920
|
-
"responses": {
|
|
12921
|
-
"204": {
|
|
12922
|
-
"description": "The rest request ended in success with no data."
|
|
12923
13142
|
},
|
|
12924
13143
|
"400": {
|
|
12925
13144
|
"description": "The server cannot process the request, see the content for more details.",
|
|
@@ -12942,6 +13161,45 @@
|
|
|
12942
13161
|
}
|
|
12943
13162
|
}
|
|
12944
13163
|
},
|
|
13164
|
+
"401": {
|
|
13165
|
+
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
13166
|
+
"content": {
|
|
13167
|
+
"application/json": {
|
|
13168
|
+
"schema": {
|
|
13169
|
+
"$ref": "#/components/schemas/Error"
|
|
13170
|
+
},
|
|
13171
|
+
"examples": {
|
|
13172
|
+
"exampleResponse": {
|
|
13173
|
+
"value": {
|
|
13174
|
+
"name": "UnauthorizedError",
|
|
13175
|
+
"message": "errorMessage"
|
|
13176
|
+
}
|
|
13177
|
+
}
|
|
13178
|
+
}
|
|
13179
|
+
}
|
|
13180
|
+
}
|
|
13181
|
+
},
|
|
13182
|
+
"404": {
|
|
13183
|
+
"description": "The resource you tried to access does not exist, see the content for more details.",
|
|
13184
|
+
"content": {
|
|
13185
|
+
"application/json": {
|
|
13186
|
+
"schema": {
|
|
13187
|
+
"$ref": "#/components/schemas/NotFoundResponse"
|
|
13188
|
+
},
|
|
13189
|
+
"examples": {
|
|
13190
|
+
"exampleResponse": {
|
|
13191
|
+
"value": {
|
|
13192
|
+
"name": "NotFoundError",
|
|
13193
|
+
"message": "errorMessage",
|
|
13194
|
+
"properties": {
|
|
13195
|
+
"notFoundId": "1"
|
|
13196
|
+
}
|
|
13197
|
+
}
|
|
13198
|
+
}
|
|
13199
|
+
}
|
|
13200
|
+
}
|
|
13201
|
+
}
|
|
13202
|
+
},
|
|
12945
13203
|
"500": {
|
|
12946
13204
|
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
12947
13205
|
"content": {
|
|
@@ -12963,36 +13221,102 @@
|
|
|
12963
13221
|
}
|
|
12964
13222
|
}
|
|
12965
13223
|
},
|
|
12966
|
-
"/
|
|
12967
|
-
"
|
|
12968
|
-
"operationId": "
|
|
12969
|
-
"summary": "
|
|
13224
|
+
"/ais/entries/objects": {
|
|
13225
|
+
"get": {
|
|
13226
|
+
"operationId": "auditableItemStreamListEntryObjectsNoStream",
|
|
13227
|
+
"summary": "Get the entry objects for all streams",
|
|
12970
13228
|
"tags": [
|
|
12971
|
-
"
|
|
13229
|
+
"Auditable Item Stream"
|
|
12972
13230
|
],
|
|
12973
|
-
"
|
|
12974
|
-
|
|
12975
|
-
|
|
12976
|
-
|
|
12977
|
-
"
|
|
12978
|
-
|
|
12979
|
-
|
|
12980
|
-
|
|
13231
|
+
"parameters": [
|
|
13232
|
+
{
|
|
13233
|
+
"name": "conditions",
|
|
13234
|
+
"description": "The conditions to filter the stream, JSON stringified IComparator[].",
|
|
13235
|
+
"in": "query",
|
|
13236
|
+
"required": false,
|
|
13237
|
+
"schema": {
|
|
13238
|
+
"type": "string"
|
|
13239
|
+
}
|
|
13240
|
+
},
|
|
13241
|
+
{
|
|
13242
|
+
"name": "includeDeleted",
|
|
13243
|
+
"description": "Whether to include deleted entries, defaults to false.",
|
|
13244
|
+
"in": "query",
|
|
13245
|
+
"required": false,
|
|
13246
|
+
"schema": {
|
|
13247
|
+
"type": "string"
|
|
13248
|
+
}
|
|
13249
|
+
},
|
|
13250
|
+
{
|
|
13251
|
+
"name": "order",
|
|
13252
|
+
"description": "Retrieve the entries in ascending/descending time order, defaults to Ascending.",
|
|
13253
|
+
"in": "query",
|
|
13254
|
+
"required": false,
|
|
13255
|
+
"schema": {
|
|
13256
|
+
"$ref": "#/components/schemas/SortDirection"
|
|
13257
|
+
}
|
|
13258
|
+
},
|
|
13259
|
+
{
|
|
13260
|
+
"name": "limit",
|
|
13261
|
+
"description": "How many entries to return.",
|
|
13262
|
+
"in": "query",
|
|
13263
|
+
"required": false,
|
|
13264
|
+
"schema": {
|
|
13265
|
+
"type": "string"
|
|
13266
|
+
}
|
|
13267
|
+
},
|
|
13268
|
+
{
|
|
13269
|
+
"name": "cursor",
|
|
13270
|
+
"description": "Cursor to use for next chunk of data.",
|
|
13271
|
+
"in": "query",
|
|
13272
|
+
"required": false,
|
|
13273
|
+
"schema": {
|
|
13274
|
+
"type": "string"
|
|
12981
13275
|
}
|
|
13276
|
+
},
|
|
13277
|
+
{
|
|
13278
|
+
"name": "accept",
|
|
13279
|
+
"in": "header",
|
|
13280
|
+
"required": true,
|
|
13281
|
+
"schema": {
|
|
13282
|
+
"type": "string"
|
|
13283
|
+
},
|
|
13284
|
+
"style": "simple"
|
|
12982
13285
|
}
|
|
12983
|
-
|
|
13286
|
+
],
|
|
13287
|
+
"security": [
|
|
13288
|
+
{
|
|
13289
|
+
"jwtBearerAuthScheme": []
|
|
13290
|
+
}
|
|
13291
|
+
],
|
|
12984
13292
|
"responses": {
|
|
12985
13293
|
"200": {
|
|
12986
|
-
"description": "Response to
|
|
13294
|
+
"description": "Response to getting an auditable item stream entries objects.",
|
|
12987
13295
|
"content": {
|
|
12988
13296
|
"application/json": {
|
|
12989
13297
|
"schema": {
|
|
12990
|
-
"$ref": "
|
|
13298
|
+
"$ref": "https://schema.twindev.org/ais/AuditableItemStreamEntryObjectList"
|
|
12991
13299
|
},
|
|
12992
13300
|
"examples": {
|
|
12993
|
-
"
|
|
13301
|
+
"auditableItemStreamListEntryObjectsNoStreamResponseExample": {
|
|
12994
13302
|
"value": {
|
|
12995
|
-
"
|
|
13303
|
+
"@context": [
|
|
13304
|
+
"https://schema.org",
|
|
13305
|
+
"https://schema.twindev.org/ais/",
|
|
13306
|
+
"https://schema.twindev.org/common/"
|
|
13307
|
+
],
|
|
13308
|
+
"type": [
|
|
13309
|
+
"ItemList",
|
|
13310
|
+
"AuditableItemStreamEntryObjectList"
|
|
13311
|
+
],
|
|
13312
|
+
"itemListElement": [
|
|
13313
|
+
{
|
|
13314
|
+
"@context": "https://schema.org",
|
|
13315
|
+
"@type": "Event",
|
|
13316
|
+
"startDate": "2011-04-09T20:00:00Z",
|
|
13317
|
+
"description": "A description of the event"
|
|
13318
|
+
}
|
|
13319
|
+
]
|
|
12996
13320
|
}
|
|
12997
13321
|
}
|
|
12998
13322
|
}
|
|
@@ -13038,28 +13362,252 @@
|
|
|
13038
13362
|
}
|
|
13039
13363
|
}
|
|
13040
13364
|
},
|
|
13041
|
-
"
|
|
13042
|
-
"description": "The
|
|
13365
|
+
"404": {
|
|
13366
|
+
"description": "The resource you tried to access does not exist, see the content for more details.",
|
|
13043
13367
|
"content": {
|
|
13044
13368
|
"application/json": {
|
|
13045
13369
|
"schema": {
|
|
13046
|
-
"$ref": "#/components/schemas/
|
|
13370
|
+
"$ref": "#/components/schemas/NotFoundResponse"
|
|
13047
13371
|
},
|
|
13048
13372
|
"examples": {
|
|
13049
13373
|
"exampleResponse": {
|
|
13050
13374
|
"value": {
|
|
13051
|
-
"name": "
|
|
13052
|
-
"message": "errorMessage"
|
|
13375
|
+
"name": "NotFoundError",
|
|
13376
|
+
"message": "errorMessage",
|
|
13377
|
+
"properties": {
|
|
13378
|
+
"notFoundId": "1"
|
|
13379
|
+
}
|
|
13053
13380
|
}
|
|
13054
13381
|
}
|
|
13055
13382
|
}
|
|
13056
13383
|
}
|
|
13057
13384
|
}
|
|
13058
|
-
}
|
|
13059
|
-
|
|
13060
|
-
|
|
13061
|
-
|
|
13062
|
-
|
|
13385
|
+
},
|
|
13386
|
+
"500": {
|
|
13387
|
+
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
13388
|
+
"content": {
|
|
13389
|
+
"application/json": {
|
|
13390
|
+
"schema": {
|
|
13391
|
+
"$ref": "#/components/schemas/Error"
|
|
13392
|
+
},
|
|
13393
|
+
"examples": {
|
|
13394
|
+
"exampleResponse": {
|
|
13395
|
+
"value": {
|
|
13396
|
+
"name": "InternalServerError",
|
|
13397
|
+
"message": "errorMessage"
|
|
13398
|
+
}
|
|
13399
|
+
}
|
|
13400
|
+
}
|
|
13401
|
+
}
|
|
13402
|
+
}
|
|
13403
|
+
}
|
|
13404
|
+
}
|
|
13405
|
+
}
|
|
13406
|
+
},
|
|
13407
|
+
"/synchronised-storage/sync-changeset": {
|
|
13408
|
+
"post": {
|
|
13409
|
+
"operationId": "synchronisedStorageSyncChangeSetRequest",
|
|
13410
|
+
"summary": "Request that the node perform a sync request for a changeset.",
|
|
13411
|
+
"tags": [
|
|
13412
|
+
"Synchronised Storage"
|
|
13413
|
+
],
|
|
13414
|
+
"parameters": [
|
|
13415
|
+
{
|
|
13416
|
+
"name": "accept",
|
|
13417
|
+
"in": "header",
|
|
13418
|
+
"required": true,
|
|
13419
|
+
"schema": {
|
|
13420
|
+
"type": "string"
|
|
13421
|
+
},
|
|
13422
|
+
"style": "simple"
|
|
13423
|
+
},
|
|
13424
|
+
{
|
|
13425
|
+
"name": "authorization",
|
|
13426
|
+
"in": "header",
|
|
13427
|
+
"required": true,
|
|
13428
|
+
"schema": {
|
|
13429
|
+
"type": "string"
|
|
13430
|
+
},
|
|
13431
|
+
"style": "simple",
|
|
13432
|
+
"example": "z3V32BP9ShC...z3V32BP9ShC"
|
|
13433
|
+
}
|
|
13434
|
+
],
|
|
13435
|
+
"requestBody": {
|
|
13436
|
+
"description": "Request a trusted node to perform a sync request for a changeset.",
|
|
13437
|
+
"required": true,
|
|
13438
|
+
"content": {
|
|
13439
|
+
"application/json": {
|
|
13440
|
+
"schema": {
|
|
13441
|
+
"$ref": "#/components/schemas/SyncChangeSet"
|
|
13442
|
+
},
|
|
13443
|
+
"examples": {
|
|
13444
|
+
"synchronisedStorageSyncChangeSetRequestExample": {
|
|
13445
|
+
"value": {
|
|
13446
|
+
"@context": "https://schema.twindev.org/synchronised-storage/",
|
|
13447
|
+
"type": "ChangeSet",
|
|
13448
|
+
"id": "0909090909090909090909090909090909090909090909090909090909090909",
|
|
13449
|
+
"dateCreated": "2025-05-29T01:00:00.000Z",
|
|
13450
|
+
"dateModified": "2025-05-29T01:00:00.000Z",
|
|
13451
|
+
"nodeIdentity": "did:entity-storage:0xd2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2",
|
|
13452
|
+
"changes": [
|
|
13453
|
+
{
|
|
13454
|
+
"entity": {
|
|
13455
|
+
"dateModified": "2025-01-01T00:00:00.000Z"
|
|
13456
|
+
},
|
|
13457
|
+
"id": "test-id-1",
|
|
13458
|
+
"operation": "set"
|
|
13459
|
+
}
|
|
13460
|
+
],
|
|
13461
|
+
"storageKey": "test-type"
|
|
13462
|
+
}
|
|
13463
|
+
}
|
|
13464
|
+
}
|
|
13465
|
+
}
|
|
13466
|
+
}
|
|
13467
|
+
},
|
|
13468
|
+
"responses": {
|
|
13469
|
+
"204": {
|
|
13470
|
+
"description": "The rest request ended in success with no data."
|
|
13471
|
+
},
|
|
13472
|
+
"400": {
|
|
13473
|
+
"description": "The server cannot process the request, see the content for more details.",
|
|
13474
|
+
"content": {
|
|
13475
|
+
"application/json": {
|
|
13476
|
+
"schema": {
|
|
13477
|
+
"$ref": "#/components/schemas/Error"
|
|
13478
|
+
},
|
|
13479
|
+
"examples": {
|
|
13480
|
+
"exampleResponse": {
|
|
13481
|
+
"value": {
|
|
13482
|
+
"name": "GeneralError",
|
|
13483
|
+
"message": "errorMessage",
|
|
13484
|
+
"properties": {
|
|
13485
|
+
"foo": "bar"
|
|
13486
|
+
}
|
|
13487
|
+
}
|
|
13488
|
+
}
|
|
13489
|
+
}
|
|
13490
|
+
}
|
|
13491
|
+
}
|
|
13492
|
+
},
|
|
13493
|
+
"500": {
|
|
13494
|
+
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
13495
|
+
"content": {
|
|
13496
|
+
"application/json": {
|
|
13497
|
+
"schema": {
|
|
13498
|
+
"$ref": "#/components/schemas/Error"
|
|
13499
|
+
},
|
|
13500
|
+
"examples": {
|
|
13501
|
+
"exampleResponse": {
|
|
13502
|
+
"value": {
|
|
13503
|
+
"name": "InternalServerError",
|
|
13504
|
+
"message": "errorMessage"
|
|
13505
|
+
}
|
|
13506
|
+
}
|
|
13507
|
+
}
|
|
13508
|
+
}
|
|
13509
|
+
}
|
|
13510
|
+
}
|
|
13511
|
+
}
|
|
13512
|
+
}
|
|
13513
|
+
},
|
|
13514
|
+
"/synchronised-storage/decryption-key": {
|
|
13515
|
+
"post": {
|
|
13516
|
+
"operationId": "synchronisedStorageGetDecryptionKeyRequest",
|
|
13517
|
+
"summary": "Request the decryption key.",
|
|
13518
|
+
"tags": [
|
|
13519
|
+
"Synchronised Storage"
|
|
13520
|
+
],
|
|
13521
|
+
"requestBody": {
|
|
13522
|
+
"description": "Request a trusted node to perform a sync request for a changeset.",
|
|
13523
|
+
"required": true,
|
|
13524
|
+
"content": {
|
|
13525
|
+
"application/json": {
|
|
13526
|
+
"schema": {
|
|
13527
|
+
"$ref": "#/components/schemas/SyncChangeSet"
|
|
13528
|
+
}
|
|
13529
|
+
}
|
|
13530
|
+
}
|
|
13531
|
+
},
|
|
13532
|
+
"responses": {
|
|
13533
|
+
"200": {
|
|
13534
|
+
"description": "Response to a request for the decryption key for the synchronised storage.",
|
|
13535
|
+
"content": {
|
|
13536
|
+
"application/json": {
|
|
13537
|
+
"schema": {
|
|
13538
|
+
"$ref": "#/components/schemas/SyncDecryptionKeyResponse"
|
|
13539
|
+
},
|
|
13540
|
+
"examples": {
|
|
13541
|
+
"synchronisedStorageSyncGetDecryptionKeyResponseExample": {
|
|
13542
|
+
"value": {
|
|
13543
|
+
"decryptionKey": "z5efBErQs3YBLZoH7jgKMQaRc9YjAxA5XSYKmW3FmTBDw9WionT2NS2x1SMvcRyBvw53cSSoaCT1xQH9tkWngGCX3"
|
|
13544
|
+
}
|
|
13545
|
+
}
|
|
13546
|
+
}
|
|
13547
|
+
}
|
|
13548
|
+
}
|
|
13549
|
+
},
|
|
13550
|
+
"400": {
|
|
13551
|
+
"description": "The server cannot process the request, see the content for more details.",
|
|
13552
|
+
"content": {
|
|
13553
|
+
"application/json": {
|
|
13554
|
+
"schema": {
|
|
13555
|
+
"$ref": "#/components/schemas/Error"
|
|
13556
|
+
},
|
|
13557
|
+
"examples": {
|
|
13558
|
+
"exampleResponse": {
|
|
13559
|
+
"value": {
|
|
13560
|
+
"name": "GeneralError",
|
|
13561
|
+
"message": "errorMessage",
|
|
13562
|
+
"properties": {
|
|
13563
|
+
"foo": "bar"
|
|
13564
|
+
}
|
|
13565
|
+
}
|
|
13566
|
+
}
|
|
13567
|
+
}
|
|
13568
|
+
}
|
|
13569
|
+
}
|
|
13570
|
+
},
|
|
13571
|
+
"401": {
|
|
13572
|
+
"description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
|
|
13573
|
+
"content": {
|
|
13574
|
+
"application/json": {
|
|
13575
|
+
"schema": {
|
|
13576
|
+
"$ref": "#/components/schemas/Error"
|
|
13577
|
+
},
|
|
13578
|
+
"examples": {
|
|
13579
|
+
"exampleResponse": {
|
|
13580
|
+
"value": {
|
|
13581
|
+
"name": "UnauthorizedError",
|
|
13582
|
+
"message": "errorMessage"
|
|
13583
|
+
}
|
|
13584
|
+
}
|
|
13585
|
+
}
|
|
13586
|
+
}
|
|
13587
|
+
}
|
|
13588
|
+
},
|
|
13589
|
+
"500": {
|
|
13590
|
+
"description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
|
|
13591
|
+
"content": {
|
|
13592
|
+
"application/json": {
|
|
13593
|
+
"schema": {
|
|
13594
|
+
"$ref": "#/components/schemas/Error"
|
|
13595
|
+
},
|
|
13596
|
+
"examples": {
|
|
13597
|
+
"exampleResponse": {
|
|
13598
|
+
"value": {
|
|
13599
|
+
"name": "InternalServerError",
|
|
13600
|
+
"message": "errorMessage"
|
|
13601
|
+
}
|
|
13602
|
+
}
|
|
13603
|
+
}
|
|
13604
|
+
}
|
|
13605
|
+
}
|
|
13606
|
+
}
|
|
13607
|
+
}
|
|
13608
|
+
}
|
|
13609
|
+
},
|
|
13610
|
+
"/catalog/request": {
|
|
13063
13611
|
"post": {
|
|
13064
13612
|
"operationId": "catalogRequest",
|
|
13065
13613
|
"summary": "Query the federated catalogue for datasets",
|
|
@@ -13144,13 +13692,25 @@
|
|
|
13144
13692
|
"participantId": "did:example:node-identity-123",
|
|
13145
13693
|
"dataset": [
|
|
13146
13694
|
{
|
|
13147
|
-
"@context": [
|
|
13148
|
-
"https://w3id.org/dspace/2025/1/context.jsonld"
|
|
13149
|
-
],
|
|
13150
13695
|
"@id": "urn:uuid:dataset-123",
|
|
13151
13696
|
"@type": "Dataset",
|
|
13152
|
-
"title": "Energy Consumption Data",
|
|
13153
|
-
"description": "Historical energy consumption data"
|
|
13697
|
+
"dcterms:title": "Energy Consumption Data",
|
|
13698
|
+
"dcterms:description": "Historical energy consumption data",
|
|
13699
|
+
"hasPolicy": {
|
|
13700
|
+
"@type": "Offer",
|
|
13701
|
+
"uid": "urn:uuid:policy-456",
|
|
13702
|
+
"assigner": "did:example:data-provider-789"
|
|
13703
|
+
},
|
|
13704
|
+
"distribution": {
|
|
13705
|
+
"@id": "urn:uuid:distribution-789",
|
|
13706
|
+
"@type": "Distribution",
|
|
13707
|
+
"format": "application/json",
|
|
13708
|
+
"accessService": {
|
|
13709
|
+
"@id": "urn:uuid:access-service-321",
|
|
13710
|
+
"@type": "DataService",
|
|
13711
|
+
"endpointURL": "https://example.com/data-access"
|
|
13712
|
+
}
|
|
13713
|
+
}
|
|
13154
13714
|
}
|
|
13155
13715
|
]
|
|
13156
13716
|
}
|
|
@@ -16353,7 +16913,6 @@
|
|
|
16353
16913
|
"id",
|
|
16354
16914
|
"status"
|
|
16355
16915
|
],
|
|
16356
|
-
"additionalProperties": false,
|
|
16357
16916
|
"description": "The details related to the processing of an Activity"
|
|
16358
16917
|
},
|
|
16359
16918
|
"ActivityProcessingStatus": {
|
|
@@ -16392,105 +16951,41 @@
|
|
|
16392
16951
|
"@context": {
|
|
16393
16952
|
"$ref": "#/components/schemas/ActivityStreamsContextType"
|
|
16394
16953
|
},
|
|
16395
|
-
"
|
|
16954
|
+
"type": {
|
|
16955
|
+
"description": "Object or array data type",
|
|
16396
16956
|
"anyOf": [
|
|
16957
|
+
{
|
|
16958
|
+
"$ref": "#/components/schemas/ActivityStreamsTypes"
|
|
16959
|
+
},
|
|
16397
16960
|
{
|
|
16398
16961
|
"type": "string"
|
|
16399
16962
|
},
|
|
16400
16963
|
{
|
|
16401
16964
|
"type": "array",
|
|
16402
16965
|
"items": {
|
|
16403
|
-
"
|
|
16966
|
+
"anyOf": [
|
|
16967
|
+
{
|
|
16968
|
+
"$ref": "#/components/schemas/ActivityStreamsTypes"
|
|
16969
|
+
},
|
|
16970
|
+
{
|
|
16971
|
+
"type": "string"
|
|
16972
|
+
}
|
|
16973
|
+
]
|
|
16404
16974
|
}
|
|
16405
16975
|
}
|
|
16406
16976
|
]
|
|
16407
16977
|
},
|
|
16408
|
-
"
|
|
16409
|
-
"
|
|
16978
|
+
"id": {
|
|
16979
|
+
"type": "string",
|
|
16980
|
+
"description": "Global identifier."
|
|
16410
16981
|
},
|
|
16411
|
-
"
|
|
16982
|
+
"name": {
|
|
16412
16983
|
"anyOf": [
|
|
16413
16984
|
{
|
|
16414
|
-
"
|
|
16985
|
+
"type": "string"
|
|
16415
16986
|
},
|
|
16416
16987
|
{
|
|
16417
|
-
"
|
|
16418
|
-
"items": {
|
|
16419
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
16420
|
-
}
|
|
16421
|
-
}
|
|
16422
|
-
]
|
|
16423
|
-
},
|
|
16424
|
-
"@nest": {
|
|
16425
|
-
"anyOf": [
|
|
16426
|
-
{
|
|
16427
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
16428
|
-
},
|
|
16429
|
-
{
|
|
16430
|
-
"type": "array",
|
|
16431
|
-
"items": {
|
|
16432
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
16433
|
-
}
|
|
16434
|
-
}
|
|
16435
|
-
]
|
|
16436
|
-
},
|
|
16437
|
-
"@type": {
|
|
16438
|
-
"anyOf": [
|
|
16439
|
-
{
|
|
16440
|
-
"type": "string"
|
|
16441
|
-
},
|
|
16442
|
-
{
|
|
16443
|
-
"type": "array",
|
|
16444
|
-
"items": {
|
|
16445
|
-
"type": "string"
|
|
16446
|
-
}
|
|
16447
|
-
}
|
|
16448
|
-
]
|
|
16449
|
-
},
|
|
16450
|
-
"@reverse": {
|
|
16451
|
-
"type": "object",
|
|
16452
|
-
"additionalProperties": {
|
|
16453
|
-
"type": "string"
|
|
16454
|
-
}
|
|
16455
|
-
},
|
|
16456
|
-
"@index": {
|
|
16457
|
-
"type": "string"
|
|
16458
|
-
},
|
|
16459
|
-
"type": {
|
|
16460
|
-
"description": "Object or array data type",
|
|
16461
|
-
"anyOf": [
|
|
16462
|
-
{
|
|
16463
|
-
"$ref": "#/components/schemas/ActivityStreamsTypes"
|
|
16464
|
-
},
|
|
16465
|
-
{
|
|
16466
|
-
"type": "string"
|
|
16467
|
-
},
|
|
16468
|
-
{
|
|
16469
|
-
"type": "array",
|
|
16470
|
-
"items": {
|
|
16471
|
-
"anyOf": [
|
|
16472
|
-
{
|
|
16473
|
-
"$ref": "#/components/schemas/ActivityStreamsTypes"
|
|
16474
|
-
},
|
|
16475
|
-
{
|
|
16476
|
-
"type": "string"
|
|
16477
|
-
}
|
|
16478
|
-
]
|
|
16479
|
-
}
|
|
16480
|
-
}
|
|
16481
|
-
]
|
|
16482
|
-
},
|
|
16483
|
-
"id": {
|
|
16484
|
-
"type": "string",
|
|
16485
|
-
"description": "Global identifier."
|
|
16486
|
-
},
|
|
16487
|
-
"name": {
|
|
16488
|
-
"anyOf": [
|
|
16489
|
-
{
|
|
16490
|
-
"type": "string"
|
|
16491
|
-
},
|
|
16492
|
-
{
|
|
16493
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
16988
|
+
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
16494
16989
|
}
|
|
16495
16990
|
],
|
|
16496
16991
|
"description": "Natural language name."
|
|
@@ -16933,6 +17428,10 @@
|
|
|
16933
17428
|
}
|
|
16934
17429
|
]
|
|
16935
17430
|
},
|
|
17431
|
+
"mediaType": {
|
|
17432
|
+
"type": "string",
|
|
17433
|
+
"description": "MIME media type of the referenced resource."
|
|
17434
|
+
},
|
|
16936
17435
|
"actor": {
|
|
16937
17436
|
"description": "Object or array data type",
|
|
16938
17437
|
"anyOf": [
|
|
@@ -17082,31 +17581,6 @@
|
|
|
17082
17581
|
"@context",
|
|
17083
17582
|
"type"
|
|
17084
17583
|
],
|
|
17085
|
-
"additionalProperties": {
|
|
17086
|
-
"anyOf": [
|
|
17087
|
-
{
|
|
17088
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17089
|
-
},
|
|
17090
|
-
{
|
|
17091
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
17092
|
-
},
|
|
17093
|
-
{
|
|
17094
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
17095
|
-
},
|
|
17096
|
-
{
|
|
17097
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
17098
|
-
},
|
|
17099
|
-
{
|
|
17100
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
17101
|
-
},
|
|
17102
|
-
{
|
|
17103
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
17104
|
-
},
|
|
17105
|
-
{
|
|
17106
|
-
"type": "array"
|
|
17107
|
-
}
|
|
17108
|
-
]
|
|
17109
|
-
},
|
|
17110
17584
|
"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`."
|
|
17111
17585
|
},
|
|
17112
17586
|
"ActivityStreamsContextType": {
|
|
@@ -17463,7 +17937,6 @@
|
|
|
17463
17937
|
"required": [
|
|
17464
17938
|
"newPassword"
|
|
17465
17939
|
],
|
|
17466
|
-
"additionalProperties": false,
|
|
17467
17940
|
"description": "The body of the request."
|
|
17468
17941
|
},
|
|
17469
17942
|
"AttestationCreateRequest": {
|
|
@@ -17480,7 +17953,6 @@
|
|
|
17480
17953
|
"required": [
|
|
17481
17954
|
"attestationObject"
|
|
17482
17955
|
],
|
|
17483
|
-
"additionalProperties": false,
|
|
17484
17956
|
"description": "The data to be used in the signing."
|
|
17485
17957
|
},
|
|
17486
17958
|
"AttestationTransferRequest": {
|
|
@@ -17499,7 +17971,6 @@
|
|
|
17499
17971
|
"holderIdentity",
|
|
17500
17972
|
"holderAddress"
|
|
17501
17973
|
],
|
|
17502
|
-
"additionalProperties": false,
|
|
17503
17974
|
"description": "The parameters to be used in the transfer."
|
|
17504
17975
|
},
|
|
17505
17976
|
"AuditableItemGraphCreateRequest": {
|
|
@@ -17576,7 +18047,6 @@
|
|
|
17576
18047
|
"description": "The edges connected to the vertex."
|
|
17577
18048
|
}
|
|
17578
18049
|
},
|
|
17579
|
-
"additionalProperties": false,
|
|
17580
18050
|
"description": "The data to be used in the vertex."
|
|
17581
18051
|
},
|
|
17582
18052
|
"AuditableItemGraphUpdateRequest": {
|
|
@@ -17656,7 +18126,6 @@
|
|
|
17656
18126
|
"description": "The edges connected to the vertex."
|
|
17657
18127
|
}
|
|
17658
18128
|
},
|
|
17659
|
-
"additionalProperties": false,
|
|
17660
18129
|
"description": "The data to be used in the vertex."
|
|
17661
18130
|
},
|
|
17662
18131
|
"AuditableItemStreamCreateEntryRequest": {
|
|
@@ -17669,7 +18138,6 @@
|
|
|
17669
18138
|
"required": [
|
|
17670
18139
|
"entryObject"
|
|
17671
18140
|
],
|
|
17672
|
-
"additionalProperties": false,
|
|
17673
18141
|
"description": "The data to be used in the stream."
|
|
17674
18142
|
},
|
|
17675
18143
|
"AuditableItemStreamCreateRequest": {
|
|
@@ -17699,7 +18167,6 @@
|
|
|
17699
18167
|
"description": "After how many entries do we add immutable checks, defaults to service configured value. A value of 0 will disable immutable checks, 1 will be every item, or any other integer for an interval."
|
|
17700
18168
|
}
|
|
17701
18169
|
},
|
|
17702
|
-
"additionalProperties": false,
|
|
17703
18170
|
"description": "The data to be used in the stream."
|
|
17704
18171
|
},
|
|
17705
18172
|
"AuditableItemStreamUpdateEntryRequest": {
|
|
@@ -17712,7 +18179,6 @@
|
|
|
17712
18179
|
"required": [
|
|
17713
18180
|
"entryObject"
|
|
17714
18181
|
],
|
|
17715
|
-
"additionalProperties": false,
|
|
17716
18182
|
"description": "The data to be used in the entry."
|
|
17717
18183
|
},
|
|
17718
18184
|
"AuditableItemStreamUpdateRequest": {
|
|
@@ -17722,7 +18188,6 @@
|
|
|
17722
18188
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
17723
18189
|
}
|
|
17724
18190
|
},
|
|
17725
|
-
"additionalProperties": false,
|
|
17726
18191
|
"description": "The data to be used in the stream."
|
|
17727
18192
|
},
|
|
17728
18193
|
"BlobStorageCreateRequest": {
|
|
@@ -17764,7 +18229,6 @@
|
|
|
17764
18229
|
"required": [
|
|
17765
18230
|
"blob"
|
|
17766
18231
|
],
|
|
17767
|
-
"additionalProperties": false,
|
|
17768
18232
|
"description": "The body parameters."
|
|
17769
18233
|
},
|
|
17770
18234
|
"BlobStorageUpdateRequest": {
|
|
@@ -17782,240 +18246,8 @@
|
|
|
17782
18246
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
17783
18247
|
}
|
|
17784
18248
|
},
|
|
17785
|
-
"additionalProperties": false,
|
|
17786
18249
|
"description": "The body parameters."
|
|
17787
18250
|
},
|
|
17788
|
-
"CatalogOptionalContext": {
|
|
17789
|
-
"type": "object",
|
|
17790
|
-
"additionalProperties": false,
|
|
17791
|
-
"properties": {
|
|
17792
|
-
"@context": {
|
|
17793
|
-
"$ref": "https://schema.twindev.org/dcat/DcatContextType"
|
|
17794
|
-
}
|
|
17795
|
-
},
|
|
17796
|
-
"description": "Catalog omitting LD Context"
|
|
17797
|
-
},
|
|
17798
|
-
"CatalogRecordOptionalContext": {
|
|
17799
|
-
"type": "object",
|
|
17800
|
-
"additionalProperties": false,
|
|
17801
|
-
"properties": {
|
|
17802
|
-
"@context": {
|
|
17803
|
-
"$ref": "https://schema.twindev.org/dcat/DcatContextType"
|
|
17804
|
-
},
|
|
17805
|
-
"@type": {
|
|
17806
|
-
"type": "string",
|
|
17807
|
-
"const": "dcat:CatalogRecord",
|
|
17808
|
-
"description": "The type identifier, typically \"CatalogRecord\"."
|
|
17809
|
-
},
|
|
17810
|
-
"dcterms:title": {
|
|
17811
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
17812
|
-
},
|
|
17813
|
-
"dcterms:description": {
|
|
17814
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
17815
|
-
},
|
|
17816
|
-
"dcterms:issued": {
|
|
17817
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDateTimeType"
|
|
17818
|
-
},
|
|
17819
|
-
"dcterms:modified": {
|
|
17820
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDateTimeType"
|
|
17821
|
-
},
|
|
17822
|
-
"dcterms:conformsTo": {
|
|
17823
|
-
"description": "Object or array data type",
|
|
17824
|
-
"anyOf": [
|
|
17825
|
-
{
|
|
17826
|
-
"type": "string"
|
|
17827
|
-
},
|
|
17828
|
-
{
|
|
17829
|
-
"type": "array",
|
|
17830
|
-
"items": {
|
|
17831
|
-
"type": "string"
|
|
17832
|
-
}
|
|
17833
|
-
}
|
|
17834
|
-
]
|
|
17835
|
-
},
|
|
17836
|
-
"foaf:primaryTopic": {
|
|
17837
|
-
"$ref": "https://schema.twindev.org/dcat/DcatResource"
|
|
17838
|
-
},
|
|
17839
|
-
"@id": {
|
|
17840
|
-
"anyOf": [
|
|
17841
|
-
{
|
|
17842
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17843
|
-
},
|
|
17844
|
-
{
|
|
17845
|
-
"type": "array",
|
|
17846
|
-
"items": {
|
|
17847
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17848
|
-
}
|
|
17849
|
-
},
|
|
17850
|
-
{
|
|
17851
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
17852
|
-
},
|
|
17853
|
-
{
|
|
17854
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
17855
|
-
},
|
|
17856
|
-
{
|
|
17857
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
17858
|
-
},
|
|
17859
|
-
{
|
|
17860
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
17861
|
-
},
|
|
17862
|
-
{
|
|
17863
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
17864
|
-
}
|
|
17865
|
-
]
|
|
17866
|
-
},
|
|
17867
|
-
"@included": {
|
|
17868
|
-
"anyOf": [
|
|
17869
|
-
{
|
|
17870
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17871
|
-
},
|
|
17872
|
-
{
|
|
17873
|
-
"type": "array",
|
|
17874
|
-
"items": {
|
|
17875
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17876
|
-
}
|
|
17877
|
-
},
|
|
17878
|
-
{
|
|
17879
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
17880
|
-
},
|
|
17881
|
-
{
|
|
17882
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
17883
|
-
},
|
|
17884
|
-
{
|
|
17885
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
17886
|
-
},
|
|
17887
|
-
{
|
|
17888
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
17889
|
-
},
|
|
17890
|
-
{
|
|
17891
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
17892
|
-
}
|
|
17893
|
-
]
|
|
17894
|
-
},
|
|
17895
|
-
"@graph": {
|
|
17896
|
-
"anyOf": [
|
|
17897
|
-
{
|
|
17898
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17899
|
-
},
|
|
17900
|
-
{
|
|
17901
|
-
"type": "array",
|
|
17902
|
-
"items": {
|
|
17903
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17904
|
-
}
|
|
17905
|
-
},
|
|
17906
|
-
{
|
|
17907
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
17908
|
-
},
|
|
17909
|
-
{
|
|
17910
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
17911
|
-
},
|
|
17912
|
-
{
|
|
17913
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
17914
|
-
},
|
|
17915
|
-
{
|
|
17916
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
17917
|
-
},
|
|
17918
|
-
{
|
|
17919
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
17920
|
-
}
|
|
17921
|
-
]
|
|
17922
|
-
},
|
|
17923
|
-
"@nest": {
|
|
17924
|
-
"anyOf": [
|
|
17925
|
-
{
|
|
17926
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17927
|
-
},
|
|
17928
|
-
{
|
|
17929
|
-
"type": "array",
|
|
17930
|
-
"items": {
|
|
17931
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17932
|
-
}
|
|
17933
|
-
},
|
|
17934
|
-
{
|
|
17935
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
17936
|
-
},
|
|
17937
|
-
{
|
|
17938
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
17939
|
-
},
|
|
17940
|
-
{
|
|
17941
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
17942
|
-
},
|
|
17943
|
-
{
|
|
17944
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
17945
|
-
},
|
|
17946
|
-
{
|
|
17947
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
17948
|
-
}
|
|
17949
|
-
]
|
|
17950
|
-
},
|
|
17951
|
-
"@reverse": {
|
|
17952
|
-
"anyOf": [
|
|
17953
|
-
{
|
|
17954
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17955
|
-
},
|
|
17956
|
-
{
|
|
17957
|
-
"type": "array",
|
|
17958
|
-
"items": {
|
|
17959
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17960
|
-
}
|
|
17961
|
-
},
|
|
17962
|
-
{
|
|
17963
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
17964
|
-
},
|
|
17965
|
-
{
|
|
17966
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
17967
|
-
},
|
|
17968
|
-
{
|
|
17969
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
17970
|
-
},
|
|
17971
|
-
{
|
|
17972
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
17973
|
-
},
|
|
17974
|
-
{
|
|
17975
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
17976
|
-
}
|
|
17977
|
-
]
|
|
17978
|
-
},
|
|
17979
|
-
"@index": {
|
|
17980
|
-
"anyOf": [
|
|
17981
|
-
{
|
|
17982
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17983
|
-
},
|
|
17984
|
-
{
|
|
17985
|
-
"type": "array",
|
|
17986
|
-
"items": {
|
|
17987
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
17988
|
-
}
|
|
17989
|
-
},
|
|
17990
|
-
{
|
|
17991
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
17992
|
-
},
|
|
17993
|
-
{
|
|
17994
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
17995
|
-
},
|
|
17996
|
-
{
|
|
17997
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
17998
|
-
},
|
|
17999
|
-
{
|
|
18000
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
18001
|
-
},
|
|
18002
|
-
{
|
|
18003
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
18004
|
-
}
|
|
18005
|
-
]
|
|
18006
|
-
}
|
|
18007
|
-
},
|
|
18008
|
-
"required": [
|
|
18009
|
-
"@graph",
|
|
18010
|
-
"@id",
|
|
18011
|
-
"@included",
|
|
18012
|
-
"@index",
|
|
18013
|
-
"@nest",
|
|
18014
|
-
"@reverse",
|
|
18015
|
-
"@type"
|
|
18016
|
-
],
|
|
18017
|
-
"description": "Record omitting LD Context"
|
|
18018
|
-
},
|
|
18019
18251
|
"CatalogRequestResponse": {
|
|
18020
18252
|
"anyOf": [
|
|
18021
18253
|
{
|
|
@@ -18084,7 +18316,6 @@
|
|
|
18084
18316
|
},
|
|
18085
18317
|
"ConflictResponse": {
|
|
18086
18318
|
"type": "object",
|
|
18087
|
-
"additionalProperties": false,
|
|
18088
18319
|
"properties": {
|
|
18089
18320
|
"conflicts": {
|
|
18090
18321
|
"type": "array",
|
|
@@ -18136,7 +18367,6 @@
|
|
|
18136
18367
|
"description": "The concerned datasets."
|
|
18137
18368
|
}
|
|
18138
18369
|
},
|
|
18139
|
-
"additionalProperties": false,
|
|
18140
18370
|
"description": "The description of a Data Asset"
|
|
18141
18371
|
},
|
|
18142
18372
|
"DataAssetItemList": {
|
|
@@ -18165,7 +18395,6 @@
|
|
|
18165
18395
|
"type",
|
|
18166
18396
|
"itemListElement"
|
|
18167
18397
|
],
|
|
18168
|
-
"additionalProperties": false,
|
|
18169
18398
|
"description": "Interface describing a list of entities that are within a Data Asset. Pagination is handled via HTTP Link headers."
|
|
18170
18399
|
},
|
|
18171
18400
|
"DataAssetQueryRequest": {
|
|
@@ -18182,7 +18411,6 @@
|
|
|
18182
18411
|
"dataAsset",
|
|
18183
18412
|
"query"
|
|
18184
18413
|
],
|
|
18185
|
-
"additionalProperties": false,
|
|
18186
18414
|
"description": "Request body containing the data asset and query criteria."
|
|
18187
18415
|
},
|
|
18188
18416
|
"DataProcessingConvertRequest": {
|
|
@@ -18200,7 +18428,6 @@
|
|
|
18200
18428
|
"required": [
|
|
18201
18429
|
"data"
|
|
18202
18430
|
],
|
|
18203
|
-
"additionalProperties": false,
|
|
18204
18431
|
"description": "The params for the convert."
|
|
18205
18432
|
},
|
|
18206
18433
|
"DataProcessingConvertResponse": {
|
|
@@ -18208,1124 +18435,73 @@
|
|
|
18208
18435
|
},
|
|
18209
18436
|
"DataProcessingExtractRequest": {
|
|
18210
18437
|
"type": "object",
|
|
18211
|
-
"properties": {
|
|
18212
|
-
"ruleGroupId": {
|
|
18213
|
-
"type": "string",
|
|
18214
|
-
"description": "The rule group id to use for the extraction."
|
|
18215
|
-
},
|
|
18216
|
-
"data": {
|
|
18217
|
-
"type": "string",
|
|
18218
|
-
"description": "The binary data to extract from in base64."
|
|
18219
|
-
},
|
|
18220
|
-
"overrideExtractorType": {
|
|
18221
|
-
"type": "string",
|
|
18222
|
-
"description": "The default extractor connector will be used if not specified."
|
|
18223
|
-
},
|
|
18224
|
-
"overrideMimeType": {
|
|
18225
|
-
"type": "string",
|
|
18226
|
-
"description": "An optional override for the mime type for conversion, will auto detect if not provided."
|
|
18227
|
-
}
|
|
18228
|
-
},
|
|
18229
|
-
"required": [
|
|
18230
|
-
"ruleGroupId",
|
|
18231
|
-
"data"
|
|
18232
|
-
],
|
|
18233
|
-
"additionalProperties": false,
|
|
18234
|
-
"description": "The params for the extract."
|
|
18235
|
-
},
|
|
18236
|
-
"DataProcessingExtractResponse": {
|
|
18237
|
-
"description": "The extracted data in extended JSON format which keeps types like bigint, dates and uint8array intact. Use ObjectHelper.fromExtended to get the object with original types."
|
|
18238
|
-
},
|
|
18239
|
-
"DataProcessingRuleGroupListResponse": {
|
|
18240
|
-
"type": "object",
|
|
18241
|
-
"properties": {
|
|
18242
|
-
"entities": {
|
|
18243
|
-
"type": "array",
|
|
18244
|
-
"items": {
|
|
18245
|
-
"$ref": "#/components/schemas/RuleGroup"
|
|
18246
|
-
},
|
|
18247
|
-
"description": "The entities, which can be partial if a limited keys list was provided."
|
|
18248
|
-
},
|
|
18249
|
-
"cursor": {
|
|
18250
|
-
"type": "string",
|
|
18251
|
-
"description": "An optional cursor, when defined can be used to call find to get more entities."
|
|
18252
|
-
}
|
|
18253
|
-
},
|
|
18254
|
-
"required": [
|
|
18255
|
-
"entities"
|
|
18256
|
-
],
|
|
18257
|
-
"additionalProperties": false,
|
|
18258
|
-
"description": "The response payload."
|
|
18259
|
-
},
|
|
18260
|
-
"DataProcessingRuleGroupSetRequest": {
|
|
18261
|
-
"type": "object",
|
|
18262
|
-
"properties": {
|
|
18263
|
-
"label": {
|
|
18264
|
-
"type": "string",
|
|
18265
|
-
"description": "The label for the rule group."
|
|
18266
|
-
},
|
|
18267
|
-
"rules": {
|
|
18268
|
-
"type": "array",
|
|
18269
|
-
"items": {
|
|
18270
|
-
"$ref": "#/components/schemas/Rule"
|
|
18271
|
-
},
|
|
18272
|
-
"description": "The rules."
|
|
18273
|
-
}
|
|
18274
|
-
},
|
|
18275
|
-
"required": [
|
|
18276
|
-
"label",
|
|
18277
|
-
"rules"
|
|
18278
|
-
],
|
|
18279
|
-
"additionalProperties": false,
|
|
18280
|
-
"description": "The data to be used in the store."
|
|
18281
|
-
},
|
|
18282
|
-
"DataServiceOptionalContext": {
|
|
18283
|
-
"type": "object",
|
|
18284
|
-
"additionalProperties": false,
|
|
18285
|
-
"properties": {
|
|
18286
|
-
"@context": {
|
|
18287
|
-
"$ref": "https://schema.twindev.org/dcat/DcatContextType"
|
|
18288
|
-
},
|
|
18289
|
-
"@type": {
|
|
18290
|
-
"type": "string",
|
|
18291
|
-
"const": "dcat:DataService",
|
|
18292
|
-
"description": "The type identifier, typically \"DataService\"."
|
|
18293
|
-
},
|
|
18294
|
-
"dcat:endpointURL": {
|
|
18295
|
-
"type": "string",
|
|
18296
|
-
"description": "The root location or primary endpoint of the service (a Web-resolvable IRI)."
|
|
18297
|
-
},
|
|
18298
|
-
"dcat:endpointDescription": {
|
|
18299
|
-
"type": "string",
|
|
18300
|
-
"description": "A description of the services available via the end-points, including their operations, parameters, etc."
|
|
18301
|
-
},
|
|
18302
|
-
"dcat:servesDataset": {
|
|
18303
|
-
"description": "Object or array data type",
|
|
18304
|
-
"anyOf": [
|
|
18305
|
-
{
|
|
18306
|
-
"type": "string"
|
|
18307
|
-
},
|
|
18308
|
-
{
|
|
18309
|
-
"type": "array",
|
|
18310
|
-
"items": {
|
|
18311
|
-
"type": "string"
|
|
18312
|
-
}
|
|
18313
|
-
}
|
|
18314
|
-
]
|
|
18315
|
-
},
|
|
18316
|
-
"dcterms:title": {
|
|
18317
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
18318
|
-
},
|
|
18319
|
-
"dcterms:description": {
|
|
18320
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
18321
|
-
},
|
|
18322
|
-
"dcterms:identifier": {
|
|
18323
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
18324
|
-
},
|
|
18325
|
-
"dcterms:issued": {
|
|
18326
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDateTimeType"
|
|
18327
|
-
},
|
|
18328
|
-
"dcterms:modified": {
|
|
18329
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDateTimeType"
|
|
18330
|
-
},
|
|
18331
|
-
"dcterms:language": {
|
|
18332
|
-
"description": "Object or array data type",
|
|
18333
|
-
"anyOf": [
|
|
18334
|
-
{
|
|
18335
|
-
"type": "string"
|
|
18336
|
-
},
|
|
18337
|
-
{
|
|
18338
|
-
"type": "array",
|
|
18339
|
-
"items": {
|
|
18340
|
-
"type": "string"
|
|
18341
|
-
}
|
|
18342
|
-
}
|
|
18343
|
-
]
|
|
18344
|
-
},
|
|
18345
|
-
"dcterms:publisher": {
|
|
18346
|
-
"anyOf": [
|
|
18347
|
-
{
|
|
18348
|
-
"$ref": "https://schema.twindev.org/foaf/FoafAgent"
|
|
18349
|
-
},
|
|
18350
|
-
{
|
|
18351
|
-
"type": "string"
|
|
18352
|
-
}
|
|
18353
|
-
],
|
|
18354
|
-
"description": "An entity responsible for making the resource available."
|
|
18355
|
-
},
|
|
18356
|
-
"dcterms:creator": {
|
|
18357
|
-
"$ref": "https://schema.twindev.org/foaf/FoafAgent"
|
|
18358
|
-
},
|
|
18359
|
-
"dcterms:accessRights": {
|
|
18360
|
-
"anyOf": [
|
|
18361
|
-
{
|
|
18362
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
18363
|
-
},
|
|
18364
|
-
{
|
|
18365
|
-
"type": "string"
|
|
18366
|
-
}
|
|
18367
|
-
],
|
|
18368
|
-
"description": "Information about who can access the resource or an indication of its security status."
|
|
18369
|
-
},
|
|
18370
|
-
"dcterms:license": {
|
|
18371
|
-
"anyOf": [
|
|
18372
|
-
{
|
|
18373
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
18374
|
-
},
|
|
18375
|
-
{
|
|
18376
|
-
"type": "string"
|
|
18377
|
-
}
|
|
18378
|
-
],
|
|
18379
|
-
"description": "A legal document under which the resource is made available."
|
|
18380
|
-
},
|
|
18381
|
-
"dcterms:rights": {
|
|
18382
|
-
"anyOf": [
|
|
18383
|
-
{
|
|
18384
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
18385
|
-
},
|
|
18386
|
-
{
|
|
18387
|
-
"type": "string"
|
|
18388
|
-
}
|
|
18389
|
-
],
|
|
18390
|
-
"description": "Information about rights held in and over the resource."
|
|
18391
|
-
},
|
|
18392
|
-
"dcterms:conformsTo": {
|
|
18393
|
-
"description": "Object or array data type",
|
|
18394
|
-
"anyOf": [
|
|
18395
|
-
{
|
|
18396
|
-
"type": "string"
|
|
18397
|
-
},
|
|
18398
|
-
{
|
|
18399
|
-
"type": "array",
|
|
18400
|
-
"items": {
|
|
18401
|
-
"type": "string"
|
|
18402
|
-
}
|
|
18403
|
-
}
|
|
18404
|
-
]
|
|
18405
|
-
},
|
|
18406
|
-
"dcterms:type": {
|
|
18407
|
-
"type": "string",
|
|
18408
|
-
"description": "The nature or genre of the resource."
|
|
18409
|
-
},
|
|
18410
|
-
"dcat:contactPoint": {
|
|
18411
|
-
"anyOf": [
|
|
18412
|
-
{
|
|
18413
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
18414
|
-
},
|
|
18415
|
-
{
|
|
18416
|
-
"type": "string"
|
|
18417
|
-
}
|
|
18418
|
-
],
|
|
18419
|
-
"description": "Relevant contact information for the catalogued resource."
|
|
18420
|
-
},
|
|
18421
|
-
"dcat:keyword": {
|
|
18422
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
18423
|
-
},
|
|
18424
|
-
"dcat:theme": {
|
|
18425
|
-
"description": "Object or array data type",
|
|
18426
|
-
"anyOf": [
|
|
18427
|
-
{
|
|
18428
|
-
"type": "string"
|
|
18429
|
-
},
|
|
18430
|
-
{
|
|
18431
|
-
"type": "array",
|
|
18432
|
-
"items": {
|
|
18433
|
-
"type": "string"
|
|
18434
|
-
}
|
|
18435
|
-
}
|
|
18436
|
-
]
|
|
18437
|
-
},
|
|
18438
|
-
"dcat:landingPage": {
|
|
18439
|
-
"description": "Object or array data type",
|
|
18440
|
-
"anyOf": [
|
|
18441
|
-
{
|
|
18442
|
-
"type": "string"
|
|
18443
|
-
},
|
|
18444
|
-
{
|
|
18445
|
-
"type": "array",
|
|
18446
|
-
"items": {
|
|
18447
|
-
"type": "string"
|
|
18448
|
-
}
|
|
18449
|
-
}
|
|
18450
|
-
]
|
|
18451
|
-
},
|
|
18452
|
-
"dcat:qualifiedRelation": {
|
|
18453
|
-
"anyOf": [
|
|
18454
|
-
{
|
|
18455
|
-
"$ref": "https://schema.twindev.org/dcat/DcatRelationship"
|
|
18456
|
-
},
|
|
18457
|
-
{
|
|
18458
|
-
"type": "string"
|
|
18459
|
-
}
|
|
18460
|
-
],
|
|
18461
|
-
"description": "Link to a description of a relationship with another resource."
|
|
18462
|
-
},
|
|
18463
|
-
"odrl:hasPolicy": {
|
|
18464
|
-
"$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
|
|
18465
|
-
},
|
|
18466
|
-
"@id": {
|
|
18467
|
-
"anyOf": [
|
|
18468
|
-
{
|
|
18469
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18470
|
-
},
|
|
18471
|
-
{
|
|
18472
|
-
"type": "array",
|
|
18473
|
-
"items": {
|
|
18474
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18475
|
-
}
|
|
18476
|
-
},
|
|
18477
|
-
{
|
|
18478
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
18479
|
-
},
|
|
18480
|
-
{
|
|
18481
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
18482
|
-
},
|
|
18483
|
-
{
|
|
18484
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
18485
|
-
},
|
|
18486
|
-
{
|
|
18487
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
18488
|
-
},
|
|
18489
|
-
{
|
|
18490
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
18491
|
-
}
|
|
18492
|
-
]
|
|
18493
|
-
},
|
|
18494
|
-
"@included": {
|
|
18495
|
-
"anyOf": [
|
|
18496
|
-
{
|
|
18497
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18498
|
-
},
|
|
18499
|
-
{
|
|
18500
|
-
"type": "array",
|
|
18501
|
-
"items": {
|
|
18502
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18503
|
-
}
|
|
18504
|
-
},
|
|
18505
|
-
{
|
|
18506
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
18507
|
-
},
|
|
18508
|
-
{
|
|
18509
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
18510
|
-
},
|
|
18511
|
-
{
|
|
18512
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
18513
|
-
},
|
|
18514
|
-
{
|
|
18515
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
18516
|
-
},
|
|
18517
|
-
{
|
|
18518
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
18519
|
-
}
|
|
18520
|
-
]
|
|
18521
|
-
},
|
|
18522
|
-
"@graph": {
|
|
18523
|
-
"anyOf": [
|
|
18524
|
-
{
|
|
18525
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18526
|
-
},
|
|
18527
|
-
{
|
|
18528
|
-
"type": "array",
|
|
18529
|
-
"items": {
|
|
18530
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18531
|
-
}
|
|
18532
|
-
},
|
|
18533
|
-
{
|
|
18534
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
18535
|
-
},
|
|
18536
|
-
{
|
|
18537
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
18538
|
-
},
|
|
18539
|
-
{
|
|
18540
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
18541
|
-
},
|
|
18542
|
-
{
|
|
18543
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
18544
|
-
},
|
|
18545
|
-
{
|
|
18546
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
18547
|
-
}
|
|
18548
|
-
]
|
|
18549
|
-
},
|
|
18550
|
-
"@nest": {
|
|
18551
|
-
"anyOf": [
|
|
18552
|
-
{
|
|
18553
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18554
|
-
},
|
|
18555
|
-
{
|
|
18556
|
-
"type": "array",
|
|
18557
|
-
"items": {
|
|
18558
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18559
|
-
}
|
|
18560
|
-
},
|
|
18561
|
-
{
|
|
18562
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
18563
|
-
},
|
|
18564
|
-
{
|
|
18565
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
18566
|
-
},
|
|
18567
|
-
{
|
|
18568
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
18569
|
-
},
|
|
18570
|
-
{
|
|
18571
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
18572
|
-
},
|
|
18573
|
-
{
|
|
18574
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
18575
|
-
}
|
|
18576
|
-
]
|
|
18577
|
-
},
|
|
18578
|
-
"@reverse": {
|
|
18579
|
-
"anyOf": [
|
|
18580
|
-
{
|
|
18581
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18582
|
-
},
|
|
18583
|
-
{
|
|
18584
|
-
"type": "array",
|
|
18585
|
-
"items": {
|
|
18586
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18587
|
-
}
|
|
18588
|
-
},
|
|
18589
|
-
{
|
|
18590
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
18591
|
-
},
|
|
18592
|
-
{
|
|
18593
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
18594
|
-
},
|
|
18595
|
-
{
|
|
18596
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
18597
|
-
},
|
|
18598
|
-
{
|
|
18599
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
18600
|
-
},
|
|
18601
|
-
{
|
|
18602
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
18603
|
-
}
|
|
18604
|
-
]
|
|
18605
|
-
},
|
|
18606
|
-
"@index": {
|
|
18607
|
-
"anyOf": [
|
|
18608
|
-
{
|
|
18609
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18610
|
-
},
|
|
18611
|
-
{
|
|
18612
|
-
"type": "array",
|
|
18613
|
-
"items": {
|
|
18614
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18615
|
-
}
|
|
18616
|
-
},
|
|
18617
|
-
{
|
|
18618
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
18619
|
-
},
|
|
18620
|
-
{
|
|
18621
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
18622
|
-
},
|
|
18623
|
-
{
|
|
18624
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
18625
|
-
},
|
|
18626
|
-
{
|
|
18627
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
18628
|
-
},
|
|
18629
|
-
{
|
|
18630
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
18631
|
-
}
|
|
18632
|
-
]
|
|
18633
|
-
}
|
|
18634
|
-
},
|
|
18635
|
-
"required": [
|
|
18636
|
-
"@graph",
|
|
18637
|
-
"@id",
|
|
18638
|
-
"@included",
|
|
18639
|
-
"@index",
|
|
18640
|
-
"@nest",
|
|
18641
|
-
"@reverse",
|
|
18642
|
-
"@type"
|
|
18643
|
-
],
|
|
18644
|
-
"description": "DataService omitting LD Context"
|
|
18645
|
-
},
|
|
18646
|
-
"DatasetOptionalContext": {
|
|
18647
|
-
"type": "object",
|
|
18648
|
-
"additionalProperties": false,
|
|
18649
|
-
"properties": {
|
|
18650
|
-
"@context": {
|
|
18651
|
-
"$ref": "https://schema.twindev.org/dcat/DcatContextType"
|
|
18652
|
-
},
|
|
18653
|
-
"@type": {
|
|
18654
|
-
"type": "string",
|
|
18655
|
-
"enum": [
|
|
18656
|
-
"dcat:Dataset",
|
|
18657
|
-
"dcat:Catalog",
|
|
18658
|
-
"dcat:DatasetSeries"
|
|
18659
|
-
],
|
|
18660
|
-
"description": "The type identifier, typically \"Dataset\". Can also be \"Catalog\" or \"DatasetSeries\" for subclasses."
|
|
18661
|
-
},
|
|
18662
|
-
"dcat:distribution": {
|
|
18663
|
-
"description": "Object or array data type",
|
|
18664
|
-
"anyOf": [
|
|
18665
|
-
{
|
|
18666
|
-
"$ref": "#/components/schemas/DistributionOptionalContext"
|
|
18667
|
-
},
|
|
18668
|
-
{
|
|
18669
|
-
"type": "array",
|
|
18670
|
-
"items": {
|
|
18671
|
-
"$ref": "#/components/schemas/DistributionOptionalContext"
|
|
18672
|
-
}
|
|
18673
|
-
}
|
|
18674
|
-
]
|
|
18675
|
-
},
|
|
18676
|
-
"dcterms:accrualPeriodicity": {
|
|
18677
|
-
"type": "string",
|
|
18678
|
-
"description": "The frequency at which the dataset is published."
|
|
18679
|
-
},
|
|
18680
|
-
"dcat:inSeries": {
|
|
18681
|
-
"type": "string",
|
|
18682
|
-
"description": "A dataset series of which the dataset is part."
|
|
18683
|
-
},
|
|
18684
|
-
"dcterms:spatial": {
|
|
18685
|
-
"anyOf": [
|
|
18686
|
-
{
|
|
18687
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
18688
|
-
},
|
|
18689
|
-
{
|
|
18690
|
-
"anyOf": [
|
|
18691
|
-
{
|
|
18692
|
-
"type": "string"
|
|
18693
|
-
},
|
|
18694
|
-
{
|
|
18695
|
-
"type": "array",
|
|
18696
|
-
"items": {
|
|
18697
|
-
"type": "string"
|
|
18698
|
-
}
|
|
18699
|
-
}
|
|
18700
|
-
],
|
|
18701
|
-
"description": "Object or array data type"
|
|
18702
|
-
}
|
|
18703
|
-
],
|
|
18704
|
-
"description": "The geographical area covered by the dataset."
|
|
18705
|
-
},
|
|
18706
|
-
"dcat:spatialResolutionInMeters": {
|
|
18707
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDecimalType"
|
|
18708
|
-
},
|
|
18709
|
-
"dcterms:temporal": {
|
|
18710
|
-
"$ref": "https://schema.twindev.org/dublin-core/DublinCorePeriodOfTime"
|
|
18711
|
-
},
|
|
18712
|
-
"dcat:temporalResolution": {
|
|
18713
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDurationType"
|
|
18714
|
-
},
|
|
18715
|
-
"prov:wasGeneratedBy": {
|
|
18716
|
-
"anyOf": [
|
|
18717
|
-
{
|
|
18718
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
18719
|
-
},
|
|
18720
|
-
{
|
|
18721
|
-
"type": "string"
|
|
18722
|
-
}
|
|
18723
|
-
],
|
|
18724
|
-
"description": "An activity that generated, or provides the business context for, the creation of the dataset."
|
|
18725
|
-
},
|
|
18726
|
-
"dcterms:title": {
|
|
18727
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
18728
|
-
},
|
|
18729
|
-
"dcterms:description": {
|
|
18730
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
18731
|
-
},
|
|
18732
|
-
"dcterms:identifier": {
|
|
18733
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
18734
|
-
},
|
|
18735
|
-
"dcterms:issued": {
|
|
18736
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDateTimeType"
|
|
18737
|
-
},
|
|
18738
|
-
"dcterms:modified": {
|
|
18739
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDateTimeType"
|
|
18740
|
-
},
|
|
18741
|
-
"dcterms:language": {
|
|
18742
|
-
"description": "Object or array data type",
|
|
18743
|
-
"anyOf": [
|
|
18744
|
-
{
|
|
18745
|
-
"type": "string"
|
|
18746
|
-
},
|
|
18747
|
-
{
|
|
18748
|
-
"type": "array",
|
|
18749
|
-
"items": {
|
|
18750
|
-
"type": "string"
|
|
18751
|
-
}
|
|
18752
|
-
}
|
|
18753
|
-
]
|
|
18754
|
-
},
|
|
18755
|
-
"dcterms:publisher": {
|
|
18756
|
-
"anyOf": [
|
|
18757
|
-
{
|
|
18758
|
-
"$ref": "https://schema.twindev.org/foaf/FoafAgent"
|
|
18759
|
-
},
|
|
18760
|
-
{
|
|
18761
|
-
"type": "string"
|
|
18762
|
-
}
|
|
18763
|
-
],
|
|
18764
|
-
"description": "An entity responsible for making the resource available."
|
|
18765
|
-
},
|
|
18766
|
-
"dcterms:creator": {
|
|
18767
|
-
"$ref": "https://schema.twindev.org/foaf/FoafAgent"
|
|
18768
|
-
},
|
|
18769
|
-
"dcterms:accessRights": {
|
|
18770
|
-
"anyOf": [
|
|
18771
|
-
{
|
|
18772
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
18773
|
-
},
|
|
18774
|
-
{
|
|
18775
|
-
"type": "string"
|
|
18776
|
-
}
|
|
18777
|
-
],
|
|
18778
|
-
"description": "Information about who can access the resource or an indication of its security status."
|
|
18779
|
-
},
|
|
18780
|
-
"dcterms:license": {
|
|
18781
|
-
"anyOf": [
|
|
18782
|
-
{
|
|
18783
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
18784
|
-
},
|
|
18785
|
-
{
|
|
18786
|
-
"type": "string"
|
|
18787
|
-
}
|
|
18788
|
-
],
|
|
18789
|
-
"description": "A legal document under which the resource is made available."
|
|
18790
|
-
},
|
|
18791
|
-
"dcterms:rights": {
|
|
18792
|
-
"anyOf": [
|
|
18793
|
-
{
|
|
18794
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
18795
|
-
},
|
|
18796
|
-
{
|
|
18797
|
-
"type": "string"
|
|
18798
|
-
}
|
|
18799
|
-
],
|
|
18800
|
-
"description": "Information about rights held in and over the resource."
|
|
18801
|
-
},
|
|
18802
|
-
"dcterms:conformsTo": {
|
|
18803
|
-
"description": "Object or array data type",
|
|
18804
|
-
"anyOf": [
|
|
18805
|
-
{
|
|
18806
|
-
"type": "string"
|
|
18807
|
-
},
|
|
18808
|
-
{
|
|
18809
|
-
"type": "array",
|
|
18810
|
-
"items": {
|
|
18811
|
-
"type": "string"
|
|
18812
|
-
}
|
|
18813
|
-
}
|
|
18814
|
-
]
|
|
18815
|
-
},
|
|
18816
|
-
"dcterms:type": {
|
|
18817
|
-
"type": "string",
|
|
18818
|
-
"description": "The nature or genre of the resource."
|
|
18819
|
-
},
|
|
18820
|
-
"dcat:contactPoint": {
|
|
18821
|
-
"anyOf": [
|
|
18822
|
-
{
|
|
18823
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodeObject"
|
|
18824
|
-
},
|
|
18825
|
-
{
|
|
18826
|
-
"type": "string"
|
|
18827
|
-
}
|
|
18828
|
-
],
|
|
18829
|
-
"description": "Relevant contact information for the catalogued resource."
|
|
18830
|
-
},
|
|
18831
|
-
"dcat:keyword": {
|
|
18832
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
18833
|
-
},
|
|
18834
|
-
"dcat:theme": {
|
|
18835
|
-
"description": "Object or array data type",
|
|
18836
|
-
"anyOf": [
|
|
18837
|
-
{
|
|
18838
|
-
"type": "string"
|
|
18839
|
-
},
|
|
18840
|
-
{
|
|
18841
|
-
"type": "array",
|
|
18842
|
-
"items": {
|
|
18843
|
-
"type": "string"
|
|
18844
|
-
}
|
|
18845
|
-
}
|
|
18846
|
-
]
|
|
18847
|
-
},
|
|
18848
|
-
"dcat:landingPage": {
|
|
18849
|
-
"description": "Object or array data type",
|
|
18850
|
-
"anyOf": [
|
|
18851
|
-
{
|
|
18852
|
-
"type": "string"
|
|
18853
|
-
},
|
|
18854
|
-
{
|
|
18855
|
-
"type": "array",
|
|
18856
|
-
"items": {
|
|
18857
|
-
"type": "string"
|
|
18858
|
-
}
|
|
18859
|
-
}
|
|
18860
|
-
]
|
|
18861
|
-
},
|
|
18862
|
-
"dcat:qualifiedRelation": {
|
|
18863
|
-
"anyOf": [
|
|
18864
|
-
{
|
|
18865
|
-
"$ref": "https://schema.twindev.org/dcat/DcatRelationship"
|
|
18866
|
-
},
|
|
18867
|
-
{
|
|
18868
|
-
"type": "string"
|
|
18869
|
-
}
|
|
18870
|
-
],
|
|
18871
|
-
"description": "Link to a description of a relationship with another resource."
|
|
18872
|
-
},
|
|
18873
|
-
"odrl:hasPolicy": {
|
|
18874
|
-
"$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
|
|
18875
|
-
},
|
|
18876
|
-
"@id": {
|
|
18877
|
-
"anyOf": [
|
|
18878
|
-
{
|
|
18879
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18880
|
-
},
|
|
18881
|
-
{
|
|
18882
|
-
"type": "array",
|
|
18883
|
-
"items": {
|
|
18884
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18885
|
-
}
|
|
18886
|
-
},
|
|
18887
|
-
{
|
|
18888
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
18889
|
-
},
|
|
18890
|
-
{
|
|
18891
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
18892
|
-
},
|
|
18893
|
-
{
|
|
18894
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
18895
|
-
},
|
|
18896
|
-
{
|
|
18897
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
18898
|
-
},
|
|
18899
|
-
{
|
|
18900
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
18901
|
-
}
|
|
18902
|
-
]
|
|
18903
|
-
},
|
|
18904
|
-
"@included": {
|
|
18905
|
-
"anyOf": [
|
|
18906
|
-
{
|
|
18907
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18908
|
-
},
|
|
18909
|
-
{
|
|
18910
|
-
"type": "array",
|
|
18911
|
-
"items": {
|
|
18912
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18913
|
-
}
|
|
18914
|
-
},
|
|
18915
|
-
{
|
|
18916
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
18917
|
-
},
|
|
18918
|
-
{
|
|
18919
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
18920
|
-
},
|
|
18921
|
-
{
|
|
18922
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
18923
|
-
},
|
|
18924
|
-
{
|
|
18925
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
18926
|
-
},
|
|
18927
|
-
{
|
|
18928
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
18929
|
-
}
|
|
18930
|
-
]
|
|
18931
|
-
},
|
|
18932
|
-
"@graph": {
|
|
18933
|
-
"anyOf": [
|
|
18934
|
-
{
|
|
18935
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18936
|
-
},
|
|
18937
|
-
{
|
|
18938
|
-
"type": "array",
|
|
18939
|
-
"items": {
|
|
18940
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18941
|
-
}
|
|
18942
|
-
},
|
|
18943
|
-
{
|
|
18944
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
18945
|
-
},
|
|
18946
|
-
{
|
|
18947
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
18948
|
-
},
|
|
18949
|
-
{
|
|
18950
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
18951
|
-
},
|
|
18952
|
-
{
|
|
18953
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
18954
|
-
},
|
|
18955
|
-
{
|
|
18956
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
18957
|
-
}
|
|
18958
|
-
]
|
|
18959
|
-
},
|
|
18960
|
-
"@nest": {
|
|
18961
|
-
"anyOf": [
|
|
18962
|
-
{
|
|
18963
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18964
|
-
},
|
|
18965
|
-
{
|
|
18966
|
-
"type": "array",
|
|
18967
|
-
"items": {
|
|
18968
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18969
|
-
}
|
|
18970
|
-
},
|
|
18971
|
-
{
|
|
18972
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
18973
|
-
},
|
|
18974
|
-
{
|
|
18975
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
18976
|
-
},
|
|
18977
|
-
{
|
|
18978
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
18979
|
-
},
|
|
18980
|
-
{
|
|
18981
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
18982
|
-
},
|
|
18983
|
-
{
|
|
18984
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
18985
|
-
}
|
|
18986
|
-
]
|
|
18987
|
-
},
|
|
18988
|
-
"@reverse": {
|
|
18989
|
-
"anyOf": [
|
|
18990
|
-
{
|
|
18991
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18992
|
-
},
|
|
18993
|
-
{
|
|
18994
|
-
"type": "array",
|
|
18995
|
-
"items": {
|
|
18996
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
18997
|
-
}
|
|
18998
|
-
},
|
|
18999
|
-
{
|
|
19000
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
19001
|
-
},
|
|
19002
|
-
{
|
|
19003
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
19004
|
-
},
|
|
19005
|
-
{
|
|
19006
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
19007
|
-
},
|
|
19008
|
-
{
|
|
19009
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
19010
|
-
},
|
|
19011
|
-
{
|
|
19012
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
19013
|
-
}
|
|
19014
|
-
]
|
|
19015
|
-
},
|
|
19016
|
-
"@index": {
|
|
19017
|
-
"anyOf": [
|
|
19018
|
-
{
|
|
19019
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19020
|
-
},
|
|
19021
|
-
{
|
|
19022
|
-
"type": "array",
|
|
19023
|
-
"items": {
|
|
19024
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19025
|
-
}
|
|
19026
|
-
},
|
|
19027
|
-
{
|
|
19028
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
19029
|
-
},
|
|
19030
|
-
{
|
|
19031
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
19032
|
-
},
|
|
19033
|
-
{
|
|
19034
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
19035
|
-
},
|
|
19036
|
-
{
|
|
19037
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
19038
|
-
},
|
|
19039
|
-
{
|
|
19040
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
19041
|
-
}
|
|
19042
|
-
]
|
|
19043
|
-
}
|
|
19044
|
-
},
|
|
19045
|
-
"required": [
|
|
19046
|
-
"@graph",
|
|
19047
|
-
"@id",
|
|
19048
|
-
"@included",
|
|
19049
|
-
"@index",
|
|
19050
|
-
"@nest",
|
|
19051
|
-
"@reverse",
|
|
19052
|
-
"@type"
|
|
19053
|
-
],
|
|
19054
|
-
"description": "Dataset omitting LD Context"
|
|
19055
|
-
},
|
|
19056
|
-
"DistributionOptionalContext": {
|
|
19057
|
-
"type": "object",
|
|
19058
|
-
"additionalProperties": false,
|
|
19059
|
-
"properties": {
|
|
19060
|
-
"@context": {
|
|
19061
|
-
"$ref": "https://schema.twindev.org/dcat/DcatContextType"
|
|
19062
|
-
},
|
|
19063
|
-
"@type": {
|
|
19064
|
-
"type": "string",
|
|
19065
|
-
"const": "dcat:Distribution",
|
|
19066
|
-
"description": "The type identifier, typically \"Distribution\"."
|
|
19067
|
-
},
|
|
19068
|
-
"dcterms:title": {
|
|
19069
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
19070
|
-
},
|
|
19071
|
-
"dcterms:description": {
|
|
19072
|
-
"$ref": "https://schema.twindev.org/dcat/DcatLiteralType"
|
|
19073
|
-
},
|
|
19074
|
-
"dcterms:issued": {
|
|
19075
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDateTimeType"
|
|
19076
|
-
},
|
|
19077
|
-
"dcterms:modified": {
|
|
19078
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDateTimeType"
|
|
19079
|
-
},
|
|
19080
|
-
"dcterms:license": {
|
|
19081
|
-
"type": "string",
|
|
19082
|
-
"description": "A legal document under which the distribution is made available."
|
|
19083
|
-
},
|
|
19084
|
-
"dcterms:accessRights": {
|
|
19085
|
-
"type": "string",
|
|
19086
|
-
"description": "Information about who can access the distribution."
|
|
19087
|
-
},
|
|
19088
|
-
"dcterms:rights": {
|
|
19089
|
-
"type": "string",
|
|
19090
|
-
"description": "Information about rights held in and over the distribution."
|
|
19091
|
-
},
|
|
19092
|
-
"dcat:accessURL": {
|
|
19093
|
-
"type": "string",
|
|
19094
|
-
"description": "A URL of the resource that gives access to a distribution of the dataset."
|
|
19095
|
-
},
|
|
19096
|
-
"dcat:accessService": {
|
|
19097
|
-
"type": "string",
|
|
19098
|
-
"description": "A data service that gives access to the distribution."
|
|
19099
|
-
},
|
|
19100
|
-
"dcat:downloadURL": {
|
|
19101
|
-
"type": "string",
|
|
19102
|
-
"description": "The URL of the downloadable file in a given format."
|
|
19103
|
-
},
|
|
19104
|
-
"dcat:byteSize": {
|
|
19105
|
-
"$ref": "https://schema.twindev.org/dcat/DcatNonNegativeIntegerType"
|
|
19106
|
-
},
|
|
19107
|
-
"dcat:spatialResolutionInMeters": {
|
|
19108
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDecimalType"
|
|
19109
|
-
},
|
|
19110
|
-
"dcat:temporalResolution": {
|
|
19111
|
-
"$ref": "https://schema.twindev.org/dcat/DcatDurationType"
|
|
19112
|
-
},
|
|
19113
|
-
"dcterms:conformsTo": {
|
|
19114
|
-
"description": "Object or array data type",
|
|
19115
|
-
"anyOf": [
|
|
19116
|
-
{
|
|
19117
|
-
"type": "string"
|
|
19118
|
-
},
|
|
19119
|
-
{
|
|
19120
|
-
"type": "array",
|
|
19121
|
-
"items": {
|
|
19122
|
-
"type": "string"
|
|
19123
|
-
}
|
|
19124
|
-
}
|
|
19125
|
-
]
|
|
19126
|
-
},
|
|
19127
|
-
"dcat:mediaType": {
|
|
19128
|
-
"type": "string",
|
|
19129
|
-
"description": "The media type of the distribution as defined by IANA."
|
|
19130
|
-
},
|
|
19131
|
-
"dcterms:format": {
|
|
19132
|
-
"type": "string",
|
|
19133
|
-
"description": "The file format of the distribution."
|
|
19134
|
-
},
|
|
19135
|
-
"dcat:compressFormat": {
|
|
19136
|
-
"type": "string",
|
|
19137
|
-
"description": "The compression format of the distribution."
|
|
19138
|
-
},
|
|
19139
|
-
"dcat:packageFormat": {
|
|
19140
|
-
"type": "string",
|
|
19141
|
-
"description": "The package format of the distribution."
|
|
19142
|
-
},
|
|
19143
|
-
"spdx:checksum": {
|
|
19144
|
-
"type": "string",
|
|
19145
|
-
"description": "The checksum property provides a mechanism to verify the data integrity."
|
|
19146
|
-
},
|
|
19147
|
-
"odrl:hasPolicy": {
|
|
19148
|
-
"$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
|
|
19149
|
-
},
|
|
19150
|
-
"@id": {
|
|
19151
|
-
"anyOf": [
|
|
19152
|
-
{
|
|
19153
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19154
|
-
},
|
|
19155
|
-
{
|
|
19156
|
-
"type": "array",
|
|
19157
|
-
"items": {
|
|
19158
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19159
|
-
}
|
|
19160
|
-
},
|
|
19161
|
-
{
|
|
19162
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
19163
|
-
},
|
|
19164
|
-
{
|
|
19165
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
19166
|
-
},
|
|
19167
|
-
{
|
|
19168
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
19169
|
-
},
|
|
19170
|
-
{
|
|
19171
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
19172
|
-
},
|
|
19173
|
-
{
|
|
19174
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
19175
|
-
}
|
|
19176
|
-
]
|
|
19177
|
-
},
|
|
19178
|
-
"@included": {
|
|
19179
|
-
"anyOf": [
|
|
19180
|
-
{
|
|
19181
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19182
|
-
},
|
|
19183
|
-
{
|
|
19184
|
-
"type": "array",
|
|
19185
|
-
"items": {
|
|
19186
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19187
|
-
}
|
|
19188
|
-
},
|
|
19189
|
-
{
|
|
19190
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
19191
|
-
},
|
|
19192
|
-
{
|
|
19193
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
19194
|
-
},
|
|
19195
|
-
{
|
|
19196
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
19197
|
-
},
|
|
19198
|
-
{
|
|
19199
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
19200
|
-
},
|
|
19201
|
-
{
|
|
19202
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
19203
|
-
}
|
|
19204
|
-
]
|
|
19205
|
-
},
|
|
19206
|
-
"@graph": {
|
|
19207
|
-
"anyOf": [
|
|
19208
|
-
{
|
|
19209
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19210
|
-
},
|
|
19211
|
-
{
|
|
19212
|
-
"type": "array",
|
|
19213
|
-
"items": {
|
|
19214
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19215
|
-
}
|
|
19216
|
-
},
|
|
19217
|
-
{
|
|
19218
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
19219
|
-
},
|
|
19220
|
-
{
|
|
19221
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
19222
|
-
},
|
|
19223
|
-
{
|
|
19224
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
19225
|
-
},
|
|
19226
|
-
{
|
|
19227
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
19228
|
-
},
|
|
19229
|
-
{
|
|
19230
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
19231
|
-
}
|
|
19232
|
-
]
|
|
18438
|
+
"properties": {
|
|
18439
|
+
"ruleGroupId": {
|
|
18440
|
+
"type": "string",
|
|
18441
|
+
"description": "The rule group id to use for the extraction."
|
|
19233
18442
|
},
|
|
19234
|
-
"
|
|
19235
|
-
"
|
|
19236
|
-
|
|
19237
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19238
|
-
},
|
|
19239
|
-
{
|
|
19240
|
-
"type": "array",
|
|
19241
|
-
"items": {
|
|
19242
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19243
|
-
}
|
|
19244
|
-
},
|
|
19245
|
-
{
|
|
19246
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
19247
|
-
},
|
|
19248
|
-
{
|
|
19249
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
19250
|
-
},
|
|
19251
|
-
{
|
|
19252
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
19253
|
-
},
|
|
19254
|
-
{
|
|
19255
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
19256
|
-
},
|
|
19257
|
-
{
|
|
19258
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
19259
|
-
}
|
|
19260
|
-
]
|
|
18443
|
+
"data": {
|
|
18444
|
+
"type": "string",
|
|
18445
|
+
"description": "The binary data to extract from in base64."
|
|
19261
18446
|
},
|
|
19262
|
-
"
|
|
19263
|
-
"
|
|
19264
|
-
|
|
19265
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19266
|
-
},
|
|
19267
|
-
{
|
|
19268
|
-
"type": "array",
|
|
19269
|
-
"items": {
|
|
19270
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19271
|
-
}
|
|
19272
|
-
},
|
|
19273
|
-
{
|
|
19274
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
19275
|
-
},
|
|
19276
|
-
{
|
|
19277
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
19278
|
-
},
|
|
19279
|
-
{
|
|
19280
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
19281
|
-
},
|
|
19282
|
-
{
|
|
19283
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
19284
|
-
},
|
|
19285
|
-
{
|
|
19286
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
19287
|
-
}
|
|
19288
|
-
]
|
|
18447
|
+
"overrideExtractorType": {
|
|
18448
|
+
"type": "string",
|
|
18449
|
+
"description": "The default extractor connector will be used if not specified."
|
|
19289
18450
|
},
|
|
19290
|
-
"
|
|
19291
|
-
"
|
|
19292
|
-
|
|
19293
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19294
|
-
},
|
|
19295
|
-
{
|
|
19296
|
-
"type": "array",
|
|
19297
|
-
"items": {
|
|
19298
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
19299
|
-
}
|
|
19300
|
-
},
|
|
19301
|
-
{
|
|
19302
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
19303
|
-
},
|
|
19304
|
-
{
|
|
19305
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
19306
|
-
},
|
|
19307
|
-
{
|
|
19308
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
19309
|
-
},
|
|
19310
|
-
{
|
|
19311
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
19312
|
-
},
|
|
19313
|
-
{
|
|
19314
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
19315
|
-
}
|
|
19316
|
-
]
|
|
18451
|
+
"overrideMimeType": {
|
|
18452
|
+
"type": "string",
|
|
18453
|
+
"description": "An optional override for the mime type for conversion, will auto detect if not provided."
|
|
19317
18454
|
}
|
|
19318
18455
|
},
|
|
19319
18456
|
"required": [
|
|
19320
|
-
"
|
|
19321
|
-
"
|
|
19322
|
-
|
|
19323
|
-
|
|
19324
|
-
|
|
19325
|
-
|
|
19326
|
-
|
|
18457
|
+
"ruleGroupId",
|
|
18458
|
+
"data"
|
|
18459
|
+
],
|
|
18460
|
+
"description": "The params for the extract."
|
|
18461
|
+
},
|
|
18462
|
+
"DataProcessingExtractResponse": {
|
|
18463
|
+
"description": "The extracted data in extended JSON format which keeps types like bigint, dates and uint8array intact. Use ObjectHelper.fromExtended to get the object with original types."
|
|
18464
|
+
},
|
|
18465
|
+
"DataProcessingRuleGroupListResponse": {
|
|
18466
|
+
"type": "object",
|
|
18467
|
+
"properties": {
|
|
18468
|
+
"entities": {
|
|
18469
|
+
"type": "array",
|
|
18470
|
+
"items": {
|
|
18471
|
+
"$ref": "#/components/schemas/RuleGroup"
|
|
18472
|
+
},
|
|
18473
|
+
"description": "The entities, which can be partial if a limited keys list was provided."
|
|
18474
|
+
},
|
|
18475
|
+
"cursor": {
|
|
18476
|
+
"type": "string",
|
|
18477
|
+
"description": "An optional cursor, when defined can be used to call find to get more entities."
|
|
18478
|
+
}
|
|
18479
|
+
},
|
|
18480
|
+
"required": [
|
|
18481
|
+
"entities"
|
|
18482
|
+
],
|
|
18483
|
+
"description": "The response payload."
|
|
18484
|
+
},
|
|
18485
|
+
"DataProcessingRuleGroupSetRequest": {
|
|
18486
|
+
"type": "object",
|
|
18487
|
+
"properties": {
|
|
18488
|
+
"label": {
|
|
18489
|
+
"type": "string",
|
|
18490
|
+
"description": "The label for the rule group."
|
|
18491
|
+
},
|
|
18492
|
+
"rules": {
|
|
18493
|
+
"type": "array",
|
|
18494
|
+
"items": {
|
|
18495
|
+
"$ref": "#/components/schemas/Rule"
|
|
18496
|
+
},
|
|
18497
|
+
"description": "The rules."
|
|
18498
|
+
}
|
|
18499
|
+
},
|
|
18500
|
+
"required": [
|
|
18501
|
+
"label",
|
|
18502
|
+
"rules"
|
|
19327
18503
|
],
|
|
19328
|
-
"description": "
|
|
18504
|
+
"description": "The data to be used in the store."
|
|
19329
18505
|
},
|
|
19330
18506
|
"DocumentManagementCreateRequest": {
|
|
19331
18507
|
"type": "object",
|
|
@@ -19387,7 +18563,6 @@
|
|
|
19387
18563
|
"documentCode",
|
|
19388
18564
|
"blob"
|
|
19389
18565
|
],
|
|
19390
|
-
"additionalProperties": false,
|
|
19391
18566
|
"description": "The body parameters."
|
|
19392
18567
|
},
|
|
19393
18568
|
"DocumentManagementUpdateRequest": {
|
|
@@ -19423,7 +18598,6 @@
|
|
|
19423
18598
|
"description": "The auditable item graph vertices to connect the document to."
|
|
19424
18599
|
}
|
|
19425
18600
|
},
|
|
19426
|
-
"additionalProperties": false,
|
|
19427
18601
|
"description": "The body parameters."
|
|
19428
18602
|
},
|
|
19429
18603
|
"Error": {
|
|
@@ -19458,7 +18632,6 @@
|
|
|
19458
18632
|
"name",
|
|
19459
18633
|
"message"
|
|
19460
18634
|
],
|
|
19461
|
-
"additionalProperties": false,
|
|
19462
18635
|
"description": "Model to describe serialized error."
|
|
19463
18636
|
},
|
|
19464
18637
|
"FilteringQuery": {
|
|
@@ -19483,7 +18656,6 @@
|
|
|
19483
18656
|
"type",
|
|
19484
18657
|
"q"
|
|
19485
18658
|
],
|
|
19486
|
-
"additionalProperties": false,
|
|
19487
18659
|
"description": "A query over a data asset that to be processed by a DS Connector App."
|
|
19488
18660
|
},
|
|
19489
18661
|
"GetDatasetResponse": {
|
|
@@ -19516,7 +18688,6 @@
|
|
|
19516
18688
|
"name",
|
|
19517
18689
|
"status"
|
|
19518
18690
|
],
|
|
19519
|
-
"additionalProperties": false,
|
|
19520
18691
|
"description": "The health component information."
|
|
19521
18692
|
},
|
|
19522
18693
|
"HealthInfo": {
|
|
@@ -19536,7 +18707,6 @@
|
|
|
19536
18707
|
"required": [
|
|
19537
18708
|
"status"
|
|
19538
18709
|
],
|
|
19539
|
-
"additionalProperties": false,
|
|
19540
18710
|
"description": "The status of the server."
|
|
19541
18711
|
},
|
|
19542
18712
|
"HealthStatus": {
|
|
@@ -19567,7 +18737,6 @@
|
|
|
19567
18737
|
"description": "The optional namespace to create the identity in."
|
|
19568
18738
|
}
|
|
19569
18739
|
},
|
|
19570
|
-
"additionalProperties": false,
|
|
19571
18740
|
"description": "The data for the request."
|
|
19572
18741
|
},
|
|
19573
18742
|
"IdentityProfileCreateRequest": {
|
|
@@ -19580,7 +18749,6 @@
|
|
|
19580
18749
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdDocument"
|
|
19581
18750
|
}
|
|
19582
18751
|
},
|
|
19583
|
-
"additionalProperties": false,
|
|
19584
18752
|
"description": "The data for the request."
|
|
19585
18753
|
},
|
|
19586
18754
|
"IdentityProfileGetResponse": {
|
|
@@ -19600,7 +18768,6 @@
|
|
|
19600
18768
|
"required": [
|
|
19601
18769
|
"identity"
|
|
19602
18770
|
],
|
|
19603
|
-
"additionalProperties": false,
|
|
19604
18771
|
"description": "The response payload."
|
|
19605
18772
|
},
|
|
19606
18773
|
"IdentityProfileListResponse": {
|
|
@@ -19634,7 +18801,6 @@
|
|
|
19634
18801
|
"required": [
|
|
19635
18802
|
"items"
|
|
19636
18803
|
],
|
|
19637
|
-
"additionalProperties": false,
|
|
19638
18804
|
"description": "The response payload."
|
|
19639
18805
|
},
|
|
19640
18806
|
"IdentityProfileUpdateRequest": {
|
|
@@ -19647,7 +18813,6 @@
|
|
|
19647
18813
|
"$ref": "https://schema.twindev.org/json-ld/JsonLdDocument"
|
|
19648
18814
|
}
|
|
19649
18815
|
},
|
|
19650
|
-
"additionalProperties": false,
|
|
19651
18816
|
"description": "The data for the request."
|
|
19652
18817
|
},
|
|
19653
18818
|
"IdentityProofCreateRequest": {
|
|
@@ -19664,7 +18829,6 @@
|
|
|
19664
18829
|
"proofType",
|
|
19665
18830
|
"document"
|
|
19666
18831
|
],
|
|
19667
|
-
"additionalProperties": false,
|
|
19668
18832
|
"description": "The data for the request."
|
|
19669
18833
|
},
|
|
19670
18834
|
"IdentityProofVerifyRequest": {
|
|
@@ -19681,7 +18845,6 @@
|
|
|
19681
18845
|
"document",
|
|
19682
18846
|
"proof"
|
|
19683
18847
|
],
|
|
19684
|
-
"additionalProperties": false,
|
|
19685
18848
|
"description": "The data for the request."
|
|
19686
18849
|
},
|
|
19687
18850
|
"IdentityProofVerifyResponse": {
|
|
@@ -19694,7 +18857,6 @@
|
|
|
19694
18857
|
"required": [
|
|
19695
18858
|
"verified"
|
|
19696
18859
|
],
|
|
19697
|
-
"additionalProperties": false,
|
|
19698
18860
|
"description": "The response payload."
|
|
19699
18861
|
},
|
|
19700
18862
|
"IdentityServiceCreateRequest": {
|
|
@@ -19738,7 +18900,6 @@
|
|
|
19738
18900
|
"type",
|
|
19739
18901
|
"endpoint"
|
|
19740
18902
|
],
|
|
19741
|
-
"additionalProperties": false,
|
|
19742
18903
|
"description": "The data for the request."
|
|
19743
18904
|
},
|
|
19744
18905
|
"IdentityVerifiableCredentialCreateRequest": {
|
|
@@ -19763,7 +18924,6 @@
|
|
|
19763
18924
|
"required": [
|
|
19764
18925
|
"subject"
|
|
19765
18926
|
],
|
|
19766
|
-
"additionalProperties": false,
|
|
19767
18927
|
"description": "The data for the request."
|
|
19768
18928
|
},
|
|
19769
18929
|
"IdentityVerifiableCredentialCreateResponse": {
|
|
@@ -19781,22 +18941,8 @@
|
|
|
19781
18941
|
"verifiableCredential",
|
|
19782
18942
|
"jwt"
|
|
19783
18943
|
],
|
|
19784
|
-
"additionalProperties": false,
|
|
19785
18944
|
"description": "The response payload."
|
|
19786
18945
|
},
|
|
19787
|
-
"IdentityVerifiableCredentialVerifyRequest": {
|
|
19788
|
-
"type": "object",
|
|
19789
|
-
"properties": {
|
|
19790
|
-
"credential": {
|
|
19791
|
-
"$ref": "https://schema.twindev.org/w3c-did/DidVerifiableCredential"
|
|
19792
|
-
}
|
|
19793
|
-
},
|
|
19794
|
-
"required": [
|
|
19795
|
-
"credential"
|
|
19796
|
-
],
|
|
19797
|
-
"additionalProperties": false,
|
|
19798
|
-
"description": "The body parameters."
|
|
19799
|
-
},
|
|
19800
18946
|
"IdentityVerifiableCredentialVerifyResponse": {
|
|
19801
18947
|
"type": "object",
|
|
19802
18948
|
"properties": {
|
|
@@ -19811,7 +18957,6 @@
|
|
|
19811
18957
|
"required": [
|
|
19812
18958
|
"revoked"
|
|
19813
18959
|
],
|
|
19814
|
-
"additionalProperties": false,
|
|
19815
18960
|
"description": "The response payload."
|
|
19816
18961
|
},
|
|
19817
18962
|
"IdentityVerifiablePresentationCreateRequest": {
|
|
@@ -19860,7 +19005,6 @@
|
|
|
19860
19005
|
"required": [
|
|
19861
19006
|
"verifiableCredentials"
|
|
19862
19007
|
],
|
|
19863
|
-
"additionalProperties": false,
|
|
19864
19008
|
"description": "The data for the request."
|
|
19865
19009
|
},
|
|
19866
19010
|
"IdentityVerifiablePresentationCreateResponse": {
|
|
@@ -19878,7 +19022,6 @@
|
|
|
19878
19022
|
"verifiablePresentation",
|
|
19879
19023
|
"jwt"
|
|
19880
19024
|
],
|
|
19881
|
-
"additionalProperties": false,
|
|
19882
19025
|
"description": "The response payload."
|
|
19883
19026
|
},
|
|
19884
19027
|
"IdentityVerifiablePresentationVerifyResponse": {
|
|
@@ -19902,7 +19045,6 @@
|
|
|
19902
19045
|
"required": [
|
|
19903
19046
|
"revoked"
|
|
19904
19047
|
],
|
|
19905
|
-
"additionalProperties": false,
|
|
19906
19048
|
"description": "The response payload."
|
|
19907
19049
|
},
|
|
19908
19050
|
"IdentityVerificationMethodCreateRequest": {
|
|
@@ -19919,7 +19061,6 @@
|
|
|
19919
19061
|
"required": [
|
|
19920
19062
|
"verificationMethodType"
|
|
19921
19063
|
],
|
|
19922
|
-
"additionalProperties": false,
|
|
19923
19064
|
"description": "The data for the request."
|
|
19924
19065
|
},
|
|
19925
19066
|
"ImmutableProofCreateRequest": {
|
|
@@ -19932,7 +19073,6 @@
|
|
|
19932
19073
|
"required": [
|
|
19933
19074
|
"document"
|
|
19934
19075
|
],
|
|
19935
|
-
"additionalProperties": false,
|
|
19936
19076
|
"description": "The parameters from the body."
|
|
19937
19077
|
},
|
|
19938
19078
|
"LogEntry": {
|
|
@@ -19967,7 +19107,6 @@
|
|
|
19967
19107
|
"source",
|
|
19968
19108
|
"message"
|
|
19969
19109
|
],
|
|
19970
|
-
"additionalProperties": false,
|
|
19971
19110
|
"description": "Interface describing a log entry."
|
|
19972
19111
|
},
|
|
19973
19112
|
"LogLevel": {
|
|
@@ -20018,7 +19157,6 @@
|
|
|
20018
19157
|
"required": [
|
|
20019
19158
|
"entities"
|
|
20020
19159
|
],
|
|
20021
|
-
"additionalProperties": false,
|
|
20022
19160
|
"description": "The response payload."
|
|
20023
19161
|
},
|
|
20024
19162
|
"LoginRequest": {
|
|
@@ -20037,7 +19175,6 @@
|
|
|
20037
19175
|
"email",
|
|
20038
19176
|
"password"
|
|
20039
19177
|
],
|
|
20040
|
-
"additionalProperties": false,
|
|
20041
19178
|
"description": "The login details."
|
|
20042
19179
|
},
|
|
20043
19180
|
"LoginResponse": {
|
|
@@ -20051,7 +19188,6 @@
|
|
|
20051
19188
|
"required": [
|
|
20052
19189
|
"expiry"
|
|
20053
19190
|
],
|
|
20054
|
-
"additionalProperties": false,
|
|
20055
19191
|
"description": "The login response details."
|
|
20056
19192
|
},
|
|
20057
19193
|
"MetricType": {
|
|
@@ -20095,7 +19231,6 @@
|
|
|
20095
19231
|
"required": [
|
|
20096
19232
|
"tag"
|
|
20097
19233
|
],
|
|
20098
|
-
"additionalProperties": false,
|
|
20099
19234
|
"description": "The data to be used in the minting."
|
|
20100
19235
|
},
|
|
20101
19236
|
"NftResolveResponse": {
|
|
@@ -20125,7 +19260,6 @@
|
|
|
20125
19260
|
"owner",
|
|
20126
19261
|
"tag"
|
|
20127
19262
|
],
|
|
20128
|
-
"additionalProperties": false,
|
|
20129
19263
|
"description": "The data that was resolved."
|
|
20130
19264
|
},
|
|
20131
19265
|
"NftTransferRequest": {
|
|
@@ -20147,7 +19281,6 @@
|
|
|
20147
19281
|
"recipientIdentity",
|
|
20148
19282
|
"recipientAddress"
|
|
20149
19283
|
],
|
|
20150
|
-
"additionalProperties": false,
|
|
20151
19284
|
"description": "The data to be used in the transfer."
|
|
20152
19285
|
},
|
|
20153
19286
|
"NftUpdateRequest": {
|
|
@@ -20157,12 +19290,10 @@
|
|
|
20157
19290
|
"description": "The metadata for the NFT."
|
|
20158
19291
|
}
|
|
20159
19292
|
},
|
|
20160
|
-
"additionalProperties": false,
|
|
20161
19293
|
"description": "The data to be used in the update."
|
|
20162
19294
|
},
|
|
20163
19295
|
"NotFoundResponse": {
|
|
20164
19296
|
"type": "object",
|
|
20165
|
-
"additionalProperties": false,
|
|
20166
19297
|
"properties": {
|
|
20167
19298
|
"notFoundId": {
|
|
20168
19299
|
"type": "string",
|
|
@@ -20201,7 +19332,6 @@
|
|
|
20201
19332
|
},
|
|
20202
19333
|
"PapCreateRequest": {
|
|
20203
19334
|
"type": "object",
|
|
20204
|
-
"additionalProperties": false,
|
|
20205
19335
|
"properties": {
|
|
20206
19336
|
"uid": {
|
|
20207
19337
|
"type": "string"
|
|
@@ -20404,184 +19534,10 @@
|
|
|
20404
19534
|
}
|
|
20405
19535
|
],
|
|
20406
19536
|
"description": "The obligations in the policy. At least one of permission, prohibition, or obligation must be present."
|
|
20407
|
-
},
|
|
20408
|
-
"@id": {
|
|
20409
|
-
"anyOf": [
|
|
20410
|
-
{
|
|
20411
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20412
|
-
},
|
|
20413
|
-
{
|
|
20414
|
-
"type": "array",
|
|
20415
|
-
"items": {
|
|
20416
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20417
|
-
}
|
|
20418
|
-
},
|
|
20419
|
-
{
|
|
20420
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
20421
|
-
},
|
|
20422
|
-
{
|
|
20423
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
20424
|
-
},
|
|
20425
|
-
{
|
|
20426
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
20427
|
-
},
|
|
20428
|
-
{
|
|
20429
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
20430
|
-
},
|
|
20431
|
-
{
|
|
20432
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
20433
|
-
}
|
|
20434
|
-
]
|
|
20435
|
-
},
|
|
20436
|
-
"@included": {
|
|
20437
|
-
"anyOf": [
|
|
20438
|
-
{
|
|
20439
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20440
|
-
},
|
|
20441
|
-
{
|
|
20442
|
-
"type": "array",
|
|
20443
|
-
"items": {
|
|
20444
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20445
|
-
}
|
|
20446
|
-
},
|
|
20447
|
-
{
|
|
20448
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
20449
|
-
},
|
|
20450
|
-
{
|
|
20451
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
20452
|
-
},
|
|
20453
|
-
{
|
|
20454
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
20455
|
-
},
|
|
20456
|
-
{
|
|
20457
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
20458
|
-
},
|
|
20459
|
-
{
|
|
20460
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
20461
|
-
}
|
|
20462
|
-
]
|
|
20463
|
-
},
|
|
20464
|
-
"@graph": {
|
|
20465
|
-
"anyOf": [
|
|
20466
|
-
{
|
|
20467
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20468
|
-
},
|
|
20469
|
-
{
|
|
20470
|
-
"type": "array",
|
|
20471
|
-
"items": {
|
|
20472
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20473
|
-
}
|
|
20474
|
-
},
|
|
20475
|
-
{
|
|
20476
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
20477
|
-
},
|
|
20478
|
-
{
|
|
20479
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
20480
|
-
},
|
|
20481
|
-
{
|
|
20482
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
20483
|
-
},
|
|
20484
|
-
{
|
|
20485
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
20486
|
-
},
|
|
20487
|
-
{
|
|
20488
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
20489
|
-
}
|
|
20490
|
-
]
|
|
20491
|
-
},
|
|
20492
|
-
"@nest": {
|
|
20493
|
-
"anyOf": [
|
|
20494
|
-
{
|
|
20495
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20496
|
-
},
|
|
20497
|
-
{
|
|
20498
|
-
"type": "array",
|
|
20499
|
-
"items": {
|
|
20500
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20501
|
-
}
|
|
20502
|
-
},
|
|
20503
|
-
{
|
|
20504
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
20505
|
-
},
|
|
20506
|
-
{
|
|
20507
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
20508
|
-
},
|
|
20509
|
-
{
|
|
20510
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
20511
|
-
},
|
|
20512
|
-
{
|
|
20513
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
20514
|
-
},
|
|
20515
|
-
{
|
|
20516
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
20517
|
-
}
|
|
20518
|
-
]
|
|
20519
|
-
},
|
|
20520
|
-
"@reverse": {
|
|
20521
|
-
"anyOf": [
|
|
20522
|
-
{
|
|
20523
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20524
|
-
},
|
|
20525
|
-
{
|
|
20526
|
-
"type": "array",
|
|
20527
|
-
"items": {
|
|
20528
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20529
|
-
}
|
|
20530
|
-
},
|
|
20531
|
-
{
|
|
20532
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
20533
|
-
},
|
|
20534
|
-
{
|
|
20535
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
20536
|
-
},
|
|
20537
|
-
{
|
|
20538
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
20539
|
-
},
|
|
20540
|
-
{
|
|
20541
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
20542
|
-
},
|
|
20543
|
-
{
|
|
20544
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
20545
|
-
}
|
|
20546
|
-
]
|
|
20547
|
-
},
|
|
20548
|
-
"@index": {
|
|
20549
|
-
"anyOf": [
|
|
20550
|
-
{
|
|
20551
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20552
|
-
},
|
|
20553
|
-
{
|
|
20554
|
-
"type": "array",
|
|
20555
|
-
"items": {
|
|
20556
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdNodePrimitive"
|
|
20557
|
-
}
|
|
20558
|
-
},
|
|
20559
|
-
{
|
|
20560
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdLanguageMap"
|
|
20561
|
-
},
|
|
20562
|
-
{
|
|
20563
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIndexMap"
|
|
20564
|
-
},
|
|
20565
|
-
{
|
|
20566
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
20567
|
-
},
|
|
20568
|
-
{
|
|
20569
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdIdMap"
|
|
20570
|
-
},
|
|
20571
|
-
{
|
|
20572
|
-
"$ref": "https://schema.twindev.org/json-ld/JsonLdTypeMap"
|
|
20573
|
-
}
|
|
20574
|
-
]
|
|
20575
19537
|
}
|
|
20576
19538
|
},
|
|
20577
19539
|
"required": [
|
|
20578
19540
|
"@context",
|
|
20579
|
-
"@graph",
|
|
20580
|
-
"@id",
|
|
20581
|
-
"@included",
|
|
20582
|
-
"@index",
|
|
20583
|
-
"@nest",
|
|
20584
|
-
"@reverse",
|
|
20585
19541
|
"@type"
|
|
20586
19542
|
],
|
|
20587
19543
|
"description": "The body of the request - the policy to create (uid will be auto-generated)."
|
|
@@ -20707,7 +19663,6 @@
|
|
|
20707
19663
|
"dateCreated",
|
|
20708
19664
|
"state"
|
|
20709
19665
|
],
|
|
20710
|
-
"additionalProperties": false,
|
|
20711
19666
|
"description": "Interface describing a rights management policy negotiation."
|
|
20712
19667
|
},
|
|
20713
19668
|
"RefreshTokenResponse": {
|
|
@@ -20721,7 +19676,6 @@
|
|
|
20721
19676
|
"required": [
|
|
20722
19677
|
"expiry"
|
|
20723
19678
|
],
|
|
20724
|
-
"additionalProperties": false,
|
|
20725
19679
|
"description": "The refresh token details."
|
|
20726
19680
|
},
|
|
20727
19681
|
"Rule": {
|
|
@@ -20747,7 +19701,6 @@
|
|
|
20747
19701
|
"source",
|
|
20748
19702
|
"target"
|
|
20749
19703
|
],
|
|
20750
|
-
"additionalProperties": false,
|
|
20751
19704
|
"description": "Rule defining how to extract data from an object."
|
|
20752
19705
|
},
|
|
20753
19706
|
"RuleGroup": {
|
|
@@ -20774,7 +19727,6 @@
|
|
|
20774
19727
|
"label",
|
|
20775
19728
|
"rules"
|
|
20776
19729
|
],
|
|
20777
|
-
"additionalProperties": false,
|
|
20778
19730
|
"description": "Group of rules for extraction."
|
|
20779
19731
|
},
|
|
20780
19732
|
"ServerInfo": {
|
|
@@ -20793,7 +19745,6 @@
|
|
|
20793
19745
|
"name",
|
|
20794
19746
|
"version"
|
|
20795
19747
|
],
|
|
20796
|
-
"additionalProperties": false,
|
|
20797
19748
|
"description": "The information about the server."
|
|
20798
19749
|
},
|
|
20799
19750
|
"ServerLivezResponse": {
|
|
@@ -20844,7 +19795,6 @@
|
|
|
20844
19795
|
"operation",
|
|
20845
19796
|
"id"
|
|
20846
19797
|
],
|
|
20847
|
-
"additionalProperties": false,
|
|
20848
19798
|
"description": "The object definition for a sync change."
|
|
20849
19799
|
},
|
|
20850
19800
|
"SyncChangeOperation": {
|
|
@@ -20913,7 +19863,6 @@
|
|
|
20913
19863
|
"nodeIdentity",
|
|
20914
19864
|
"changes"
|
|
20915
19865
|
],
|
|
20916
|
-
"additionalProperties": false,
|
|
20917
19866
|
"description": "The object definition for a sync change set."
|
|
20918
19867
|
},
|
|
20919
19868
|
"SyncDecryptionKeyResponse": {
|
|
@@ -20927,7 +19876,6 @@
|
|
|
20927
19876
|
"required": [
|
|
20928
19877
|
"decryptionKey"
|
|
20929
19878
|
],
|
|
20930
|
-
"additionalProperties": false,
|
|
20931
19879
|
"description": "The body of the response."
|
|
20932
19880
|
},
|
|
20933
19881
|
"SynchronisedEntityCore": {
|
|
@@ -20941,7 +19889,6 @@
|
|
|
20941
19889
|
"required": [
|
|
20942
19890
|
"dateModified"
|
|
20943
19891
|
],
|
|
20944
|
-
"additionalProperties": false,
|
|
20945
19892
|
"description": "The base definition for synchronised entries."
|
|
20946
19893
|
},
|
|
20947
19894
|
"TaskApp": {
|
|
@@ -20960,7 +19907,6 @@
|
|
|
20960
19907
|
"taskId",
|
|
20961
19908
|
"dataSpaceConnectorAppId"
|
|
20962
19909
|
],
|
|
20963
|
-
"additionalProperties": false,
|
|
20964
19910
|
"description": "Denotes a task associated with a Data Space Connector App"
|
|
20965
19911
|
},
|
|
20966
19912
|
"TelemetryAddMetricValueRequest": {
|
|
@@ -20991,7 +19937,6 @@
|
|
|
20991
19937
|
"required": [
|
|
20992
19938
|
"value"
|
|
20993
19939
|
],
|
|
20994
|
-
"additionalProperties": false,
|
|
20995
19940
|
"description": "The data to be used in the update."
|
|
20996
19941
|
},
|
|
20997
19942
|
"TelemetryGetMetricResponse": {
|
|
@@ -21008,7 +19953,6 @@
|
|
|
21008
19953
|
"metric",
|
|
21009
19954
|
"value"
|
|
21010
19955
|
],
|
|
21011
|
-
"additionalProperties": false,
|
|
21012
19956
|
"description": "The body parameters."
|
|
21013
19957
|
},
|
|
21014
19958
|
"TelemetryListResponse": {
|
|
@@ -21029,7 +19973,6 @@
|
|
|
21029
19973
|
"required": [
|
|
21030
19974
|
"entities"
|
|
21031
19975
|
],
|
|
21032
|
-
"additionalProperties": false,
|
|
21033
19976
|
"description": "The response payload."
|
|
21034
19977
|
},
|
|
21035
19978
|
"TelemetryMetric": {
|
|
@@ -21060,7 +20003,6 @@
|
|
|
21060
20003
|
"label",
|
|
21061
20004
|
"type"
|
|
21062
20005
|
],
|
|
21063
|
-
"additionalProperties": false,
|
|
21064
20006
|
"description": "Interface describing a telemetry metric."
|
|
21065
20007
|
},
|
|
21066
20008
|
"TelemetryMetricValue": {
|
|
@@ -21089,7 +20031,6 @@
|
|
|
21089
20031
|
"ts",
|
|
21090
20032
|
"value"
|
|
21091
20033
|
],
|
|
21092
|
-
"additionalProperties": false,
|
|
21093
20034
|
"description": "Interface describing a telemetry metric value."
|
|
21094
20035
|
},
|
|
21095
20036
|
"TelemetryUpdateMetricRequest": {
|
|
@@ -21111,7 +20052,6 @@
|
|
|
21111
20052
|
"required": [
|
|
21112
20053
|
"label"
|
|
21113
20054
|
],
|
|
21114
|
-
"additionalProperties": false,
|
|
21115
20055
|
"description": "The data to be used in the update."
|
|
21116
20056
|
},
|
|
21117
20057
|
"TelemetryValuesListResponse": {
|
|
@@ -21136,7 +20076,6 @@
|
|
|
21136
20076
|
"metric",
|
|
21137
20077
|
"entities"
|
|
21138
20078
|
],
|
|
21139
|
-
"additionalProperties": false,
|
|
21140
20079
|
"description": "The response payload."
|
|
21141
20080
|
},
|
|
21142
20081
|
"TrustVerificationInfo": {
|
|
@@ -21157,7 +20096,6 @@
|
|
|
21157
20096
|
"required": [
|
|
21158
20097
|
"identity"
|
|
21159
20098
|
],
|
|
21160
|
-
"additionalProperties": false,
|
|
21161
20099
|
"description": "Interface describing a trust verifier information."
|
|
21162
20100
|
},
|
|
21163
20101
|
"UpdatePasswordRequest": {
|
|
@@ -21176,7 +20114,6 @@
|
|
|
21176
20114
|
"currentPassword",
|
|
21177
20115
|
"newPassword"
|
|
21178
20116
|
],
|
|
21179
|
-
"additionalProperties": false,
|
|
21180
20117
|
"description": "The body of the request."
|
|
21181
20118
|
},
|
|
21182
20119
|
"VerifiableStorageCreateRequest": {
|
|
@@ -21206,7 +20143,6 @@
|
|
|
21206
20143
|
"required": [
|
|
21207
20144
|
"data"
|
|
21208
20145
|
],
|
|
21209
|
-
"additionalProperties": false,
|
|
21210
20146
|
"description": "The data to be stored."
|
|
21211
20147
|
},
|
|
21212
20148
|
"VerifiableStorageCreateResponse": {
|
|
@@ -21224,7 +20160,6 @@
|
|
|
21224
20160
|
"receipt",
|
|
21225
20161
|
"id"
|
|
21226
20162
|
],
|
|
21227
|
-
"additionalProperties": false,
|
|
21228
20163
|
"description": "The data that was stored."
|
|
21229
20164
|
},
|
|
21230
20165
|
"VerifiableStorageGetRequest": {
|
|
@@ -21241,7 +20176,6 @@
|
|
|
21241
20176
|
"default": true
|
|
21242
20177
|
}
|
|
21243
20178
|
},
|
|
21244
|
-
"additionalProperties": false,
|
|
21245
20179
|
"description": "The body optional param."
|
|
21246
20180
|
},
|
|
21247
20181
|
"VerifiableStorageGetResponse": {
|
|
@@ -21265,7 +20199,6 @@
|
|
|
21265
20199
|
"required": [
|
|
21266
20200
|
"receipt"
|
|
21267
20201
|
],
|
|
21268
|
-
"additionalProperties": false,
|
|
21269
20202
|
"description": "The data that was obtained."
|
|
21270
20203
|
},
|
|
21271
20204
|
"VerifiableStorageUpdateRequest": {
|
|
@@ -21283,7 +20216,6 @@
|
|
|
21283
20216
|
"description": "An updated list of identities that are allowed to modify the item, send an empty list to remove all entries."
|
|
21284
20217
|
}
|
|
21285
20218
|
},
|
|
21286
|
-
"additionalProperties": false,
|
|
21287
20219
|
"description": "The data to be updated."
|
|
21288
20220
|
},
|
|
21289
20221
|
"VerifyDepth": {
|