-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/434618_datasets_count
- Loading branch information
Showing
20 changed files
with
691 additions
and
343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# S3 Asset API | ||
Federated Catalog API | ||
|
||
Provides a management API for uploading files to S3 and creating assets. | ||
Provides a management API for getting the federated catalog paginated. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,43 @@ | ||
@startuml | ||
entity edc_catalog { | ||
* id: string <<PK>> | ||
* participantId: string | ||
* properties: Map<String, Object> | ||
* expired: boolean | ||
-- | ||
} | ||
@enduml | ||
|
||
entity edc_dataset { | ||
* id: string <<PK>> | ||
* offers: Map<String, Object> | ||
* properties: Map<String, Object> | ||
* catalogId: string <<FK>> | ||
-- | ||
} | ||
|
||
entity edc_data_service { | ||
* id: string <<PK>> | ||
* terms: string | ||
* endpointUrl: string | ||
-- | ||
} | ||
|
||
entity edc_distribution { | ||
* format: string | ||
* dataServiceId: string <<FK>> | ||
* datasetId: string <<FK>> | ||
-- | ||
} | ||
|
||
entity edc_catalog_data_service { | ||
* catalogId: string <<FK>> | ||
* dataServiceId: string <<FK>> | ||
-- | ||
} | ||
|
||
edc_catalog ||--o{ edc_dataset: contains | ||
edc_catalog ||--o{ edc_catalog_data_service: contains | ||
edc_data_service ||--o{ edc_distribution: provides | ||
edc_dataset ||--o{ edc_distribution: contains | ||
edc_data_service ||--o{ edc_catalog_data_service: contains | ||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.