Skip to content

Commit

Permalink
fix: AssetEditMetadataRequest for new mds attributes (#739)
Browse files Browse the repository at this point in the history
  • Loading branch information
kulgg authored Jan 23, 2024
1 parent 12f675f commit e5fee02
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions docs/sovity-edc-api-wrapper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -815,19 +815,19 @@ components:
items:
type: string
description: Data sample URLs
referenceFilesDescription:
referenceFileUrls:
type: array
description: Reference file/schema URLs
items:
type: string
description: Reference file/schema URLs
additionalDescription:
referenceFilesDescription:
type: string
description: Instructions for use that are not legally relevant e.g. information
on how to cite the dataset in papers
description: Additional information on reference files/schemas
conditionsForUse:
type: string
description: Conditions for use
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ public class UiAssetEditMetadataRequest {
private List<String> dataSampleUrls;

@Schema(description = "Reference file/schema URLs", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
private List<String> referenceFilesDescription;
private List<String> referenceFileUrls;

@Schema(description = "Instructions for use that are not legally relevant e.g. information on how to cite the dataset in papers", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
private String additionalDescription;
@Schema(description = "Additional information on reference files/schemas", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
private String referenceFilesDescription;

@Schema(description = "Conditions for use", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@Schema(description = "Instructions for use that are not legally relevant e.g. information on how to cite the dataset in papers", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
private String conditionsForUse;

@Schema(description = "Data update frequency", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
Expand Down

0 comments on commit e5fee02

Please sign in to comment.