Skip to content

Commit

Permalink
RAD-139: Add Members Keyword to Resample Schema (spacetelescope#396)
Browse files Browse the repository at this point in the history
* Initial commit.

* Updated changelog.
  • Loading branch information
PaulHuwe authored Mar 29, 2024
1 parent 0c39024 commit 34b997a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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]


Expand Down
11 changes: 9 additions & 2 deletions src/rad/resources/schemas/resample-1.0.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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]
...

0 comments on commit 34b997a

Please sign in to comment.