From c7aac9142e4b11ba62a1b4f2dd7db373d768342c Mon Sep 17 00:00:00 2001 From: DerekFurstPitt Date: Wed, 25 Oct 2023 14:28:11 -0400 Subject: [PATCH] Updated entity api spec entry for datasets/components to include dataset_link_abs_dir as a required field --- entity-api-spec.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/entity-api-spec.yaml b/entity-api-spec.yaml index c6652cc0..50c6944c 100644 --- a/entity-api-spec.yaml +++ b/entity-api-spec.yaml @@ -2557,7 +2557,14 @@ paths: datasets: type: array items: - $ref: '#/components/schemas/Dataset' + type: object + properties: + dataset_link_abs_dir: + type: string + required: true + description: The file path to the component's sub-directory beneath the ancestor dataset on globus. The created symbolic link will point to this subdirectory + $ref: '#/components/schemas/Dataset' + responses: '200':