forked from sovity/edc-ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sovity-edc-api-wrapper.yaml
1577 lines (1577 loc) · 48.9 KB
/
sovity-edc-api-wrapper.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.1
info:
title: sovity EDC API Wrapper
description: "sovity's EDC API Wrapper contains a selection of APIs for multiple\
\ consumers, e.g. our EDC UI API, our generic Use Case API, our Commercial APIs,\
\ etc. We bundled these APIs, so we can have an easier time generating our API\
\ Client Libraries."
contact:
name: Sovity GmbH
url: https://github.com/sovity/edc-extensions/issues/new/choose
email: contact@sovity.de
license:
name: Apache 2.0
url: https://github.com/sovity/edc-extensions/blob/main/LICENSE
version: 0.0.0
externalDocs:
description: EDC API Wrapper Project in sovity/edc-extensions
url: https://github.com/sovity/edc-extensions/tree/main/extensions/wrapper
servers:
- url: https://my-connector/api/management
tags:
- name: Enterprise Edition
description: sovity Enterprise Edition EDC API Endpoints. Requires our sovity Enterprise
Edition EDC Extensions.
- name: UI
description: EDC UI API Endpoints
- name: Use Case
description: Generic Use Case Application API Endpoints.
paths:
/wrapper/ee/connector-limits:
get:
tags:
- Enterprise Edition
description: Available and used resources of a connector.
operationId: connectorLimits
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/ConnectorLimits'
/wrapper/ee/file-upload/blobs/{blobId}/asset:
post:
tags:
- Enterprise Edition
summary: Create an asset from an uploaded file.
description: Creates an asset using the uploaded file as data source.
operationId: fileUploadCreateAsset
parameters:
- name: blobId
in: path
description: The Blob ID / URL the file was uploaded into.
required: true
schema:
type: string
requestBody:
description: Metadata for the Asset. File-related metadata might be overridden.
content:
application/json:
schema:
$ref: '#/components/schemas/UiAssetCreateRequest'
required: true
responses:
default:
description: default response
content:
'*/*': {}
/wrapper/ee/file-upload/blobs:
post:
tags:
- Enterprise Edition
summary: Requests a Blob for file upload.
description: Requests a Blob URL with a SAS Token so that the UI can directly
upload the file to the Azure Blob Storage. Returns the Blob ID / Token.
operationId: fileUploadRequestSasToken
responses:
default:
description: default response
content:
application/json:
schema:
type: string
/wrapper/ui/pages/asset-page/assets:
post:
tags:
- UI
description: Create a new Asset
operationId: createAsset
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UiAssetCreateRequest'
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/IdResponseDto'
/wrapper/ui/pages/contract-definition-page/contract-definitions:
post:
tags:
- UI
description: Create a new Contract Definition
operationId: createContractDefinition
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ContractDefinitionRequest'
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/IdResponseDto'
/wrapper/ui/pages/policy-page/policy-definitions:
post:
tags:
- UI
description: Create a new Policy Definition
operationId: createPolicyDefinition
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PolicyDefinitionCreateRequest'
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/IdResponseDto'
/wrapper/ui/pages/asset-page/assets/{assetId}:
delete:
tags:
- UI
description: Delete an Asset
operationId: deleteAsset
parameters:
- name: assetId
in: path
required: true
schema:
type: string
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/IdResponseDto'
/wrapper/ui/pages/contract-definition-page/contract-definitions/{contractDefinitionId}:
delete:
tags:
- UI
description: Delete a Contract Definition
operationId: deleteContractDefinition
parameters:
- name: contractDefinitionId
in: path
required: true
schema:
type: string
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/IdResponseDto'
/wrapper/ui/pages/policy-page/policy-definitions/{policyId}:
delete:
tags:
- UI
description: Delete a Policy Definition
operationId: deletePolicyDefinition
parameters:
- name: policyId
in: path
required: true
schema:
type: string
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/IdResponseDto'
/wrapper/ui/pages/asset-page/assets/{assetId}/metadata:
put:
tags:
- UI
description: Updates an Asset's metadata
operationId: editAssetMetadata
parameters:
- name: assetId
in: path
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UiAssetEditMetadataRequest'
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/IdResponseDto'
/wrapper/ui/pages/asset-page:
get:
tags:
- UI
description: Collect all data for Asset Page
operationId: getAssetPage
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/AssetPage'
/wrapper/ui/pages/catalog-page/data-offers:
get:
tags:
- UI
description: Fetch a connector's data offers
operationId: getCatalogPageDataOffers
parameters:
- name: connectorEndpoint
in: query
schema:
type: string
responses:
default:
description: default response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/UiDataOffer'
/wrapper/ui/pages/contract-agreement-page:
get:
tags:
- UI
description: Collect all data for the Contract Agreement Page
operationId: getContractAgreementPage
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/ContractAgreementPage'
/wrapper/ui/pages/contract-definition-page:
get:
tags:
- UI
description: Collect all data for Contract Definition Page
operationId: getContractDefinitionPage
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/ContractDefinitionPage'
/wrapper/ui/pages/catalog-page/contract-negotiations/{contractNegotiationId}:
get:
tags:
- UI
description: Get Contract Negotiation Information
operationId: getContractNegotiation
parameters:
- name: contractNegotiationId
in: path
required: true
schema:
type: string
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/UiContractNegotiation'
/wrapper/ui/pages/dashboard-page:
get:
tags:
- UI
description: Collect all data for the Dashboard Page
operationId: getDashboardPage
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/DashboardPage'
/wrapper/ui/pages/policy-page:
get:
tags:
- UI
description: Collect all data for Policy Definition Page
operationId: getPolicyDefinitionPage
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/PolicyDefinitionPage'
/wrapper/ui/pages/transfer-history-page:
get:
tags:
- UI
description: Collect all data for the Transfer History Page
operationId: getTransferHistoryPage
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/TransferHistoryPage'
/wrapper/ui/pages/transfer-history-page/transfer-processes/{transferProcessId}/asset:
get:
tags:
- UI
description: Queries a transfer process' asset
operationId: getTransferProcessAsset
parameters:
- name: transferProcessId
in: path
required: true
schema:
type: string
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/UiAsset'
/wrapper/ui/pages/catalog-page/contract-negotiations:
post:
tags:
- UI
description: Initiate a new Contract Negotiation
operationId: initiateContractNegotiation
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ContractNegotiationRequest'
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/UiContractNegotiation'
/wrapper/ui/pages/contract-agreement-page/transfers/custom:
post:
tags:
- UI
description: "Initiate a Transfer Process via a custom Transfer Process JSON-LD.\
\ Fields such as connectorId, assetId, providerConnectorId, providerConnectorAddress\
\ will be set automatically."
operationId: initiateCustomTransfer
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/InitiateCustomTransferRequest'
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/IdResponseDto'
/wrapper/ui/pages/contract-agreement-page/transfers:
post:
tags:
- UI
description: Initiate a Transfer Process
operationId: initiateTransfer
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/InitiateTransferRequest'
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/IdResponseDto'
/wrapper/use-case-api/kpis:
get:
tags:
- Use Case
description: Basic KPIs about the running EDC Connector.
operationId: getKpis
responses:
default:
description: default response
content:
application/json:
schema:
$ref: '#/components/schemas/KpiResult'
/wrapper/use-case-api/supported-policy-functions:
get:
tags:
- Use Case
description: "List available functions in policies, prohibitions and obligations."
operationId: getSupportedFunctions
responses:
default:
description: default response
content:
application/json:
schema:
type: array
items:
type: string
components:
schemas:
ConnectorLimits:
required:
- numActiveConsumingContractAgreements
type: object
properties:
numActiveConsumingContractAgreements:
type: integer
description: Current amount of active consuming contract agreements.
format: int32
maxActiveConsumingContractAgreements:
type: integer
description: Maximum amount of active consuming contract agreements. A value
of 'null' or a negative value means that there are no limit.
format: int32
description: Available and used resources of a connector.
UiAssetCreateRequest:
required:
- dataAddressProperties
- id
type: object
properties:
id:
type: string
description: Asset Id
title:
type: string
description: Asset Title
language:
type: string
description: Asset Language
description:
type: string
description: Asset Description
publisherHomepage:
type: string
description: Asset Homepage
licenseUrl:
type: string
description: License URL
version:
type: string
description: Version
keywords:
type: array
description: Asset Keywords
items:
type: string
description: Asset Keywords
mediaType:
type: string
description: Asset MediaType
landingPageUrl:
type: string
description: Landing Page URL
dataCategory:
type: string
description: Data Category
dataSubcategory:
type: string
description: Data Subcategory
dataModel:
type: string
description: Data Model
geoReferenceMethod:
type: string
description: Geo-Reference Method
transportMode:
type: string
description: Transport Mode
sovereignLegalName:
type: string
description: The sovereign is distinct from the publisher by being the legal
owner of the data.
geoLocation:
type: string
description: Geo location
nutsLocation:
type: array
description: Locations by NUTS standard which divides countries into administrative
divisions
items:
type: string
description: Locations by NUTS standard which divides countries into administrative
divisions
dataSampleUrls:
type: array
description: Data sample URLs
items:
type: string
description: Data sample URLs
referenceFileUrls:
type: array
description: Reference file/schema URLs
items:
type: string
description: Reference file/schema URLs
referenceFilesDescription:
type: string
description: Additional information on reference files/schemas
conditionsForUse:
type: string
description: Instructions for use that are not legally relevant e.g. information
on how to cite the dataset in papers
dataUpdateFrequency:
type: string
description: Data update frequency
temporalCoverageFrom:
type: string
description: Temporal coverage start date
format: date
temporalCoverageToInclusive:
type: string
description: Temporal coverage end date (inclusive)
format: date
dataAddressProperties:
type: object
additionalProperties:
type: string
description: Data Address
description: Data Address
customJsonAsString:
type: string
description: Contains serialized custom properties in the JSON format.
customJsonLdAsString:
type: string
description: "Contains serialized custom properties in the JSON LD format.\
\ Contrary to the customJsonAsString field, this string must represent\
\ a JSON LD object and will be affected by JSON LD compaction and expansion.\
\ Due to a technical limitation, the properties can't be booleans."
privateCustomJsonAsString:
type: string
description: Same as customJsonAsString but the data will be stored in the
private properties.
privateCustomJsonLdAsString:
type: string
description: Same as customJsonLdAsString but the data will be stored in
the private properties. The same limitations apply.
description: Type-Safe OpenAPI generator friendly Asset Create DTO that supports
an opinionated subset of the original EDC Asset Entity.
IdResponseDto:
required:
- id
- lastUpdatedDate
type: object
properties:
id:
type: string
description: ID
lastUpdatedDate:
type: string
description: Change Date
format: date-time
description: Marks the operation as successful
ContractDefinitionRequest:
required:
- accessPolicyId
- assetSelector
- contractDefinitionId
- contractPolicyId
type: object
properties:
contractDefinitionId:
type: string
description: Contract Definition ID
contractPolicyId:
type: string
description: Contract Policy ID
accessPolicyId:
type: string
description: Access Policy ID
assetSelector:
type: array
description: List of Criteria for the contract
items:
$ref: '#/components/schemas/UiCriterion'
description: Data for creating a Contract Definition
UiCriterion:
required:
- operandLeft
- operandRight
- operator
type: object
properties:
operandLeft:
type: string
description: Left Operand
operator:
$ref: '#/components/schemas/UiCriterionOperator'
operandRight:
$ref: '#/components/schemas/UiCriterionLiteral'
description: Contract Definition Criterion as supported by the UI
UiCriterionLiteral:
type: object
properties:
type:
$ref: '#/components/schemas/UiCriterionLiteralType'
value:
type: string
description: Only for type VALUE. The single value representation.
valueList:
type: array
description: "Only for type VALUE_LIST. List of values, e.g. for the IN-Operator."
items:
type: string
description: "Only for type VALUE_LIST. List of values, e.g. for the IN-Operator."
description: Criterion Literal
UiCriterionLiteralType:
type: string
description: Value type of an asset selector criterion right expression value
enum:
- VALUE
- VALUE_LIST
UiCriterionOperator:
type: string
description: Operator for constraints
enum:
- EQ
- IN
- LIKE
OperatorDto:
type: string
description: Operator for policies
enum:
- EQ
- NEQ
- GT
- GEQ
- LT
- LEQ
- IN
- HAS_PART
- IS_A
- IS_ALL_OF
- IS_ANY_OF
- IS_NONE_OF
PolicyDefinitionCreateRequest:
required:
- policy
- policyDefinitionId
type: object
properties:
policyDefinitionId:
type: string
description: Policy Definition ID
policy:
$ref: '#/components/schemas/UiPolicyCreateRequest'
description: Data for creating a Policy Definition
UiPolicyConstraint:
required:
- left
- operator
- right
type: object
properties:
left:
type: string
description: Left side of the expression.
operator:
$ref: '#/components/schemas/OperatorDto'
right:
$ref: '#/components/schemas/UiPolicyLiteral'
description: ODRL AtomicConstraint as supported by our UI
UiPolicyCreateRequest:
type: object
properties:
constraints:
type: array
description: Conjunction of required expressions for the policy to evaluate
to TRUE.
items:
$ref: '#/components/schemas/UiPolicyConstraint'
description: Type-Safe OpenAPI generator friendly Policy Create DTO that supports
an opinionated subset of the original EDC Policy Entity.
UiPolicyLiteral:
required:
- type
type: object
properties:
type:
$ref: '#/components/schemas/UiPolicyLiteralType'
value:
type: string
description: Only for types STRING and JSON
valueList:
type: array
description: Only for type STRING_LIST
items:
type: string
description: Only for type STRING_LIST
description: "Sum type: A String, a list of Strings or a generic JSON value."
UiPolicyLiteralType:
type: string
description: Supported Types of values for the right hand side of an expression
enum:
- STRING
- STRING_LIST
- JSON
UiAssetEditMetadataRequest:
type: object
properties:
title:
type: string
description: Asset Title
language:
type: string
description: Asset Language
description:
type: string
description: Asset Description
publisherHomepage:
type: string
description: Asset Homepage
licenseUrl:
type: string
description: License URL
version:
type: string
description: Version
keywords:
type: array
description: Asset Keywords
items:
type: string
description: Asset Keywords
mediaType:
type: string
description: Asset MediaType
landingPageUrl:
type: string
description: Landing Page URL
dataCategory:
type: string
description: Data Category
dataSubcategory:
type: string
description: Data Subcategory
dataModel:
type: string
description: Data Model
geoReferenceMethod:
type: string
description: Geo-Reference Method
transportMode:
type: string
description: Transport Mode
sovereignLegalName:
type: string
description: The sovereign is distinct from the publisher by being the legal
owner of the data.
geoLocation:
type: string
description: Geo location
nutsLocation:
type: array
description: Locations by NUTS standard which divides countries into administrative
divisions
items:
type: string
description: Locations by NUTS standard which divides countries into administrative
divisions
dataSampleUrls:
type: array
description: Data sample URLs
items:
type: string
description: Data sample URLs
referenceFileUrls:
type: array
description: Reference file/schema URLs
items:
type: string
description: Reference file/schema URLs
referenceFilesDescription:
type: string
description: Additional information on reference files/schemas
conditionsForUse:
type: string
description: Instructions for use that are not legally relevant e.g. information
on how to cite the dataset in papers
dataUpdateFrequency:
type: string
description: Data update frequency
temporalCoverageFrom:
type: string
description: Temporal coverage start date
format: date
temporalCoverageToInclusive:
type: string
description: Temporal coverage end date (inclusive)
format: date
customJsonAsString:
type: string
description: Contains serialized custom properties in the JSON format.
customJsonLdAsString:
type: string
description: "Contains serialized custom properties in the JSON LD format.\
\ Contrary to the customJsonAsString field, this string must represent\
\ a JSON LD object and will be affected by JSON LD compaction and expansion.\
\ Due to a technical limitation, the properties can't be booleans."
privateCustomJsonAsString:
type: string
description: Same as customJsonAsString but the data will be stored in the
private properties.
privateCustomJsonLdAsString:
type: string
description: Same as customJsonLdAsString but the data will be stored in
the private properties. The same limitations apply.
description: Data for editing an asset.
AssetPage:
required:
- assets
type: object
properties:
assets:
type: array
description: Visible Assets
items:
$ref: '#/components/schemas/UiAsset'
description: All data for the Asset Page
UiAsset:
required:
- assetId
- connectorEndpoint
- creatorOrganizationName
- isOwnConnector
- participantId
- title
type: object
properties:
assetId:
type: string
description: Asset Id
connectorEndpoint:
type: string
description: Providing Connector's Connector Endpoint
participantId:
type: string
description: Providing Connector's Participant ID
title:
type: string
description: Asset Title
creatorOrganizationName:
type: string
description: Asset Organization Name
language:
type: string
description: Asset Language
description:
type: string
description: Asset Description. Supports markdown.
descriptionShortText:
type: string
description: Asset Description Short Text generated from description. Contains
no markdown.
isOwnConnector:
type: boolean
description: Flag that indicates whether this asset is created by this connector.
publisherHomepage:
type: string
description: Asset Homepage
licenseUrl:
type: string
description: License URL
version:
type: string
description: Version
keywords:
type: array
description: Asset Keywords
items:
type: string
description: Asset Keywords
mediaType:
type: string
description: Asset MediaType
landingPageUrl:
type: string
description: Homepage URL associated with the Asset
httpDatasourceHintsProxyMethod:
type: boolean
description: HTTP Datasource Hints Proxy Method
httpDatasourceHintsProxyPath:
type: boolean
description: HTTP Datasource Hints Proxy Path
httpDatasourceHintsProxyQueryParams:
type: boolean
description: HTTP Datasource Hints Proxy Query Params
httpDatasourceHintsProxyBody:
type: boolean
description: HTTP Datasource Hints Proxy Body
dataCategory:
type: string
description: Data Category
dataSubcategory:
type: string
description: Data Subcategory
dataModel:
type: string
description: Data Model
geoReferenceMethod:
type: string
description: Geo-Reference Method
transportMode:
type: string
description: Transport Mode
sovereignLegalName:
type: string
description: The sovereign is distinct from the publisher by being the legal
owner of the data.
geoLocation:
type: string
description: Geo location
nutsLocation:
type: array
description: Locations by NUTS standard which divides countries into administrative
divisions
items:
type: string
description: Locations by NUTS standard which divides countries into administrative
divisions
dataSampleUrls:
type: array
description: Data sample URLs
items:
type: string
description: Data sample URLs
referenceFileUrls:
type: array
description: Reference file/schema URLs
items:
type: string
description: Reference file/schema URLs
referenceFilesDescription:
type: string
description: Additional information on reference files/schemas
conditionsForUse:
type: string
description: Instructions for use that are not legally relevant e.g. information
on how to cite the dataset in papers
dataUpdateFrequency:
type: string
description: Data update frequency
temporalCoverageFrom:
type: string
description: Temporal coverage start date
format: date
temporalCoverageToInclusive:
type: string
description: Temporal coverage end date (inclusive)
format: date
assetJsonLd:
type: string
description: Contains the entire asset in the JSON-LD format
customJsonAsString:
type: string
description: Contains serialized custom properties in the JSON format.
customJsonLdAsString:
type: string
description: "Contains serialized custom properties in the JSON LD format.\
\ Contrary to the customJsonAsString field, this string must represent\