Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DT-97]Update DAR schema to allow Progress Report entities #2449

Merged
merged 4 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/main/resources/assets/schemas/CloseOutSupplement.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
type: string
description: An enumeration of Closeout Supplement values.
enum:
- PROJECT_COMPLETED
- REQUESTOR_MOVED_INSTITUTION
- PROJECT_TRANSFERRED
- PROJECT_SUPERSEDED
23 changes: 23 additions & 0 deletions src/main/resources/assets/schemas/DataAccessRequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,3 +203,26 @@ properties:
including any data that are downloaded or utilized in the cloud.
items:
$ref: './Collaborator.yaml'
progressReportSummary:
type: string
description: A Progress Report Summary.
intellectualPropertySummary:
type: string
description: An Intellectual Property Summary.
publications:
type: array
description: An array of publications.
items:
$ref: './Publication.yaml'
presentations:
type: array
description: An array of presentations.
items:
$ref: './Presentation.yaml'
dataManagementIncident:
$ref: './DataManagementIncident.yaml'
researchPlans:
type: String
description: Research Plans.
closeOutSupplement:
$ref: './CloseOutSupplement.yaml'
11 changes: 11 additions & 0 deletions src/main/resources/assets/schemas/DataManagementIncident.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
type: object
description: A Data Management Incident.
properties:
incidents:
type: array
items:
type: string
description: A list of incidents.
description:
type: string
description: A description of the data management incident.
22 changes: 22 additions & 0 deletions src/main/resources/assets/schemas/Presentation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
type: object
description: A Presentation object.
properties:
title:
type: string
description: The title of the presentation.
link:
type: string
description: The link to the presentation.
date:
type: string
format: date
description: The presentation date.
authors:
type: string
description: The authors of the presentation.
datasetCitation:
type: string
description: The dataset citation of the presentation.
citation:
type: boolean
description: Indicates if the dataset(s) were cited in the Presentation.
25 changes: 25 additions & 0 deletions src/main/resources/assets/schemas/Publication.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
type: object
description: A Publication object.
properties:
title:
type: string
description: The title of the publication.
pubmedId:
type: string
description: The PubMed ID of the publication.
date:
type: string
format: date
description: The publication date.
authors:
type: string
description: The authors of the publication.
bibliographicCitation:
type: string
description: The bibliographic citation of the publication.
datasetCitation:
type: string
description: The dataset citation of the publication.
citation:
type: boolean
description: Indicates if the dataset(s) were cited in the Publication.
Loading