From 34b997aa10fe4d599c49625d518ced8a6d6afc4e Mon Sep 17 00:00:00 2001 From: Paul Huwe <42071634+PaulHuwe@users.noreply.github.com> Date: Thu, 28 Mar 2024 21:29:03 -0400 Subject: [PATCH] RAD-139: Add Members Keyword to Resample Schema (#396) * Initial commit. * Updated changelog. --- CHANGES.rst | 2 ++ src/rad/resources/schemas/resample-1.0.0.yaml | 11 +++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d7c8d41a..f0324435 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -20,6 +20,8 @@ - Add attributes under the ``basic`` schema to ``WfiMosaic.meta``. [#390] +- Add Members Keyword to Resample Schema. [#396] + - Create the flux step schema. [#395] diff --git a/src/rad/resources/schemas/resample-1.0.0.yaml b/src/rad/resources/schemas/resample-1.0.0.yaml index be4ad2ca..53b22f22 100644 --- a/src/rad/resources/schemas/resample-1.0.0.yaml +++ b/src/rad/resources/schemas/resample-1.0.0.yaml @@ -29,6 +29,13 @@ properties: description: | The total exposure time for the resampled product. type: number + members: + title: Resample Members + description: | + Filenames of resample members + type: array + items: + type: string weight_type: title: Weight Type description: | @@ -37,7 +44,7 @@ properties: variance map ("ivm"). type: string enum: ["exptime", "ivm"] -propertyOrder: [pixel_scale_ratio, pixfrac, pointings, product_exposure_time, weight_type] +propertyOrder: [members, pixel_scale_ratio, pixfrac, pointings, product_exposure_time, weight_type] flowStyle: block -required: [pixel_scale_ratio, pixfrac, weight_type] +required: [members, pixel_scale_ratio, pixfrac, weight_type] ...