Skip to content

Commit

Permalink
implemented previous_revision_uuids and next_revision_uuids properties
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekFurstPitt committed Nov 21, 2023
1 parent 8dc9dd4 commit c7d7851
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/schema/provenance_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -426,13 +426,27 @@ ENTITIES:
description: "The uuid of previous revision dataset"
after_create_trigger: link_to_previous_revision
on_read_trigger: get_previous_revision_uuid
previous_revision_uuids:
type: list
generated: true
transient: true
immutable: true
description: "The list of the uuids of previous revision datasets"
on_read_trigger: get_previous_revision_uuids
next_revision_uuid:
type: string
generated: true
transient: true
immutable: true
description: "The uuid of next revision dataset"
on_read_trigger: get_next_revision_uuid
next_revision_uuids:
type: list
generated: true
transient: true
immutable: true
description: "The list of the uuids of next revision datasets"
on_read_trigger: get_next_revision_uuids
# No like image and metadata files handling for Donor/Sample
# Dataset has only one thumbnail file
thumbnail_file:
Expand Down Expand Up @@ -657,10 +671,10 @@ ENTITIES:
on_read_trigger: get_previous_revision_uuid
previous_revision_uuids:
type: list
generated: true
transient: true
immutable: true
description: "The list of the uuids of previous revision datasets"
after_create_trigger: link_to_previous_revision
on_read_trigger: get_previous_revision_uuids
next_revision_uuid:
type: string
Expand Down

0 comments on commit c7d7851

Please sign in to comment.