diff --git a/src/rad/resources/schemas/reference_files/dark-1.0.0.yaml b/src/rad/resources/schemas/reference_files/dark-1.0.0.yaml index 150b7417..85138ce8 100644 --- a/src/rad/resources/schemas/reference_files/dark-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/dark-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/dark-1.0.0 -title: Dark reference schema +title: Dark Reference File Schema datamodel_name: DarkRefModel @@ -21,29 +21,42 @@ properties: type: object properties: ngroups: - title: Number of groups in integration + title: Number of Resultants + description: | + The number of resultants averaged according to + Multi-Accumulation (MA) Table read pattern. type: integer nframes: - title: Number of frames per group + title: Number of frames per group # should be removed type: integer groupgap: - title: Number of frames dropped between groups + title: Number of Skips Between Resultants + description: | + The number of frames skipped between resultants according to + MA Table read pattern. type: integer ma_table_name: - title: Identifier for the multi-accumulation table used + title: Multi-Accumulation Table Name + description: | + The name of the MA Table used. Not a unique identifier; see + ma_table_number. type: string ma_table_number: - title: Number of the multi-accumulation table used + title: Multi-Accumulation Table Number + description: | + The unique number of the MA Table used. A modification to a MA + Table that keeps the same name will have a new + ma_table_number. type: integer required: [ngroups, nframes, groupgap, ma_table_name, ma_table_number] required: [exposure] - $ref: ref_exposure_type-1.0.0 - $ref: ref_optical_element-1.0.0 data: - title: Dark current array + title: Dark Current Array description: | - The dark current array represents the integrated number of counts - due to the accumulation of dark current electrons in the pixels. + The dark current array represents the integrated number of counts due to + the accumulation of dark current electrons in the pixels. tag: tag:stsci.edu:asdf/unit/quantity-1.* properties: value: @@ -55,17 +68,19 @@ properties: tag: tag:astropy.org:astropy/units/unit-1.* enum: ["DN"] dq: - title: 2-D data quality array for all planes + title: 2-D Data Quality Array + description: | + The 2-D data quality array for the Dark Current Array. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: uint32 exact_datatype: true ndim: 2 dark_slope: - title: Dark current slope array + title: Dark Current Rate Array description: | - The dark current slope array represents the slope of the - integrated number of counts due to the accumulation of dark - current electrons in the pixels for slope fitting purposes. + The dark current rate array represents the slope of the integrated number + of counts due to the accumulation of dark current electrons in the pixels + calculated from slope fitting the Dark Current Array. tag: tag:stsci.edu:asdf/unit/quantity-1.* properties: value: @@ -77,7 +92,10 @@ properties: tag: tag:astropy.org:astropy/units/unit-1.* enum: ["DN / s"] dark_slope_error: - title: Uncertainty in dark current slope array + title: Dark Current Rate Uncertainty Array + description: | + The uncertainty calculated from the slope fitting of the Dark Current + Array. tag: tag:stsci.edu:asdf/unit/quantity-1.* properties: value: diff --git a/src/rad/resources/schemas/reference_files/distortion-1.0.0.yaml b/src/rad/resources/schemas/reference_files/distortion-1.0.0.yaml index 54f63a22..cc7a623f 100644 --- a/src/rad/resources/schemas/reference_files/distortion-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/distortion-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/distortion-1.0.0 -title: Distortion reference schema +title: Distortion Reference Schema datamodel_name: DistortionRefModel @@ -18,17 +18,23 @@ properties: type: string enum: [DISTORTION] input_units: - title: Units of the detector coordinate inputs to this model. + title: Input Model Units + description: | + The pixel input units of the detector coordinate model. tag: tag:stsci.edu:asdf/unit/unit-1.* enum: ["pixel"] output_units: - title: Output units of V2/V3 coordinates after the model is applied. + title: Output Model Units + description: | + The V2/V3 coordinates output units after the model is applied. tag: tag:stsci.edu:asdf/unit/unit-1.* enum: ["arcsec"] required: [output_units, input_units] - $ref: ref_optical_element-1.0.0 coordinate_distortion_transform: - title: Distortion transform as an instance of astropy.modeling.Model. + title: Distortion Transform Model + description: | + The astropy.modeling.Model instance of of the distortion transform model. type: object required: [meta, coordinate_distortion_transform] flowStyle: block diff --git a/src/rad/resources/schemas/reference_files/flat-1.0.0.yaml b/src/rad/resources/schemas/reference_files/flat-1.0.0.yaml index 1a3152af..8f03eec1 100644 --- a/src/rad/resources/schemas/reference_files/flat-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/flat-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/flat-1.0.0 -title: Flat reference schema +title: Flat Reference File Schema datamodel_name: FlatRefModel @@ -19,19 +19,27 @@ properties: enum: [FLAT] - $ref: ref_optical_element-1.0.0 data: - title: Flat data array + title: Flat Data Array + description: | + The Flat Data Array represents the small and large pixel-to-pixel + mitigations necessary to account for wavelength dependent detector + sensitivity and distortions in the optical path. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: float32 exact_datatype: true ndim: 2 dq: - title: Data quality array + title: 2-D Data Quality Array + description: | + The 2-D data quality array for the Flat Data Array. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: uint32 exact_datatype: true ndim: 2 err: - title: Error array + title: Flat Data Uncertainty Array + description: | + The uncertainty in the Flat Data Array. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: float32 exact_datatype: true diff --git a/src/rad/resources/schemas/reference_files/gain-1.0.0.yaml b/src/rad/resources/schemas/reference_files/gain-1.0.0.yaml index ff829f54..10641440 100644 --- a/src/rad/resources/schemas/reference_files/gain-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/gain-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/gain-1.0.0 -title: Gain reference schema +title: Gain Reference File Schema datamodel_name: GainRefModel @@ -18,7 +18,10 @@ properties: type: string enum: [GAIN] data: - title: The detector gain map + title: Gain Data Array + description: | + The Gain Data Array represents the pixel to pixel conversion from digital + numbers (DN) to electrons (e). The units are e/DN. tag: tag:stsci.edu:asdf/unit/quantity-1.* properties: value: diff --git a/src/rad/resources/schemas/reference_files/inverselinearity-1.0.0.yaml b/src/rad/resources/schemas/reference_files/inverselinearity-1.0.0.yaml index a331e6f7..b072bfe9 100644 --- a/src/rad/resources/schemas/reference_files/inverselinearity-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/inverselinearity-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/inverselinearity-1.0.0 -title: Inverse linearity correction reference schema +title: Inverse Linearity Correction Reference Schema datamodel_name: InverselinearityRefModel @@ -18,27 +18,34 @@ properties: type: string enum: [INVERSELINEARITY] input_units: - title: Units of the input to the inverse linearity polynomial. + title: Inverse Linearity Input Units + description: | + Units of the input to the inverse linearity polynomial. tag: tag:astropy.org:astropy/units/unit-1.* enum: ["DN"] output_units: - title: Units of the output of the inverse linearity polynomial. + title: Inverse Linearity Output Units + description: | + Units of the output of the inverse linearity polynomial. tag: tag:astropy.org:astropy/units/unit-1.* enum: ["DN"] required: [output_units, input_units] coeffs: - title: Inverse linearity coefficients + title: Inverse Linearity Coefficients description: | - Contains the coefficients of a polynomial to add classic non-linearity - to pixels. Both the input to and output from the polynomial are in units - of DN. The coefficients have units that contain various powers of DN. + Contains the coefficients of a polynomial which describe the non-linear + response of each pixel to a linear signal. Both the input to and output + from the polynomial are in units of DN. The coefficients have units that + contain various powers of DN. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: float32 exact_datatype: true # Dimensions: numcoeffs, ysize, xsize ndim: 3 dq: - title: 2-D data quality array for all planes + title: Two Dimensional Data Quality Array for All Resultants + description: | + Two Dimensional data Quality Array for all Resultants tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: uint32 exact_datatype: true diff --git a/src/rad/resources/schemas/reference_files/ipc-1.0.0.yaml b/src/rad/resources/schemas/reference_files/ipc-1.0.0.yaml index a8b6f674..b94a625e 100644 --- a/src/rad/resources/schemas/reference_files/ipc-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/ipc-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/ipc-1.0.0 -title: IPC kernel reference schema +title: Interpixel Capacitance Reference File Schema datamodel_name: IpcRefModel @@ -19,10 +19,10 @@ properties: type: string enum: [IPC] data: - title: Interpixel capacitance correction kernel array + title: Interpixel Capacitance Kernel Array description: | - Reference kernel used for convolving with data in order to correct - for interpixel capacitance + The kernel array used for convolving data to correct for interpixel + capacitance of neighboring pixels. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: float32 exact_datatype: true diff --git a/src/rad/resources/schemas/reference_files/linearity-1.0.0.yaml b/src/rad/resources/schemas/reference_files/linearity-1.0.0.yaml index 5e7d38ed..e0247585 100644 --- a/src/rad/resources/schemas/reference_files/linearity-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/linearity-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/linearity-1.0.0 -title: Linearity correction reference schema +title: Linearity Correction Reference Schema datamodel_name: LinearityRefModel @@ -18,28 +18,34 @@ properties: type: string enum: [LINEARITY] input_units: - title: Units of the input to the linearity polynomial. + title: Units of the input to the linearity polynomial + description: | + Units of the input to the linearity polynomial. tag: tag:astropy.org:astropy/units/unit-1.* enum: ["DN"] output_units: - title: Units of the output of the linearity polynomial. + title: Units of the output of the linearity polynomial + description: | + Units of the output to the linearity polynomial. tag: tag:astropy.org:astropy/units/unit-1.* enum: ["DN"] required: [output_units, input_units] coeffs: - title: Linearity coefficients + title: Linearity Coefficients description: | - Contains the coefficients of a polynomial to correct pixel - values for classic non-linearity. Both the input to and - output from the polynomial are in units of DN. The coefficients - have units that contain various powers of DN. + Contains the coefficients of a polynomial to correct the non-linear + response of each pixel to a linear signal. Both the input to and output + from the polynomial are in units of DN. The coefficients have units that + contain various powers of DN. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: float32 exact_datatype: true # Dimensions: numcoeffs, ysize, xsize ndim: 3 dq: - title: 2-D data quality array for all planes + title: Two Dimensional Data Quality Array for All Resultants + description: | + Two Dimensional data Quality Array for all Resultants tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: uint32 exact_datatype: true diff --git a/src/rad/resources/schemas/reference_files/mask-1.0.0.yaml b/src/rad/resources/schemas/reference_files/mask-1.0.0.yaml index 6ef2eead..cf8bd9be 100644 --- a/src/rad/resources/schemas/reference_files/mask-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/mask-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/mask-1.0.0 -title: DQ Mask reference schema +title: Mask Reference File Schema datamodel_name: MaskRefModel @@ -18,7 +18,10 @@ properties: type: string enum: [MASK] dq: - title: Data quality mask array + title: Mask Data Quality Array + description: | + The Mask Data Quality Array is the pixel value of the sum of bit integer + dq flags. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: uint32 exact_datatype: true diff --git a/src/rad/resources/schemas/reference_files/pixelarea-1.0.0.yaml b/src/rad/resources/schemas/reference_files/pixelarea-1.0.0.yaml index 9557b183..5e88e728 100644 --- a/src/rad/resources/schemas/reference_files/pixelarea-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/pixelarea-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/pixelarea-1.0.0 -title: Pixel area reference schema +title: Pixel Area Reference Schema datamodel_name: PixelareaRefModel @@ -21,7 +21,9 @@ properties: type: object properties: pixelarea_steradians: - title: Nominal pixel area in steradians + title: Pixel Area (steradians) + description: | + The nominal pixel area in steradians. anyOf: - tag: tag:stsci.edu:asdf/unit/quantity-1.* properties: @@ -32,7 +34,9 @@ properties: enum: ["sr"] - type: "null" pixelarea_arcsecsq: - title: Nominal pixel area in arcsec^2 + title: Pixel Area (arcsec^2) + description: + The nominal pixel area in arcec^2. anyOf: - tag: tag:stsci.edu:asdf/unit/quantity-1.* properties: @@ -46,7 +50,9 @@ properties: required: [photometry] - $ref: ref_optical_element-1.0.0 data: - title: Pixel area array + title: Pixel Area Array + description: | + Pixel area in units of of either arcseconds or steradians. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: float32 exact_datatype: true diff --git a/src/rad/resources/schemas/reference_files/readnoise-1.0.0.yaml b/src/rad/resources/schemas/reference_files/readnoise-1.0.0.yaml index 43238396..ebdbd89b 100644 --- a/src/rad/resources/schemas/reference_files/readnoise-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/readnoise-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/readnoise-1.0.0 -title: Read noise reference schema +title: Read Noise Reference File Schema datamodel_name: ReadnoiseRefModel @@ -18,7 +18,10 @@ properties: enum: [READNOISE] - $ref: ref_exposure_type-1.0.0 data: - title: Read noise data array + title: Read Noise Data Array + description: | + The pixel-by-pixel map read noise data array is used in estimating the + expected noise in each pixel. tag: tag:stsci.edu:asdf/unit/quantity-1.* properties: value: diff --git a/src/rad/resources/schemas/reference_files/ref_common-1.0.0.yaml b/src/rad/resources/schemas/reference_files/ref_common-1.0.0.yaml index 317ec971..a614f8aa 100644 --- a/src/rad/resources/schemas/reference_files/ref_common-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/ref_common-1.0.0.yaml @@ -3,43 +3,65 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/ref_common-1.0.0 -title: Common reference metadata properties +title: Common Reference File Metadata Properties type: object properties: reftype: - title: Reference File type + title: Reference File Type + description: | + The capitalized string of the reference file type (e.g., DARK). type: string pedigree: - title: The pedigree of the reference file + title: Pedigree + description: | + The pedigree of the reference file (e.g., GROUND). type: string enum: [GROUND, MODEL, DUMMY, SIMULATION] description: - title: Description of the reference file + title: Description + description: | + A string describing the reference file, its intended usage, etc. type: string author: - title: Author of the reference file + title: Author + description: | + The author of who or what created the reference file. type: string useafter: - title: Use after date of the reference file + title: Use After + description: | + The use after date of the reference file for CRDS best references + matching. tag: tag:stsci.edu:asdf/time/time-1.* telescope: - title: Telescope data reference data is used to calibrate + title: Telescope + description: | + The telescope data used to select reference files, e.g. ROMAN for the + Nancy Grace Roman Space Telescope. anyOf: - tag: asdf://stsci.edu/datamodels/roman/tags/telescope-1.0.0 - type: string enum: [ROMAN] origin: - title: Organization responsible for creating file + title: Title + description: | + The organization responsible for creating file, e.g. STSCI for the Space + Telescope Science Institute. type: string instrument: type: object properties: name: - title: Instrument used to acquire the data + title: Instrument + description: | + The Wide Field Instrument (WFI). type: string enum: [WFI] detector: + title: Detector + description: | + The numbered WFI detector in the focal plane (e.g., WFI01 for SCA 01). $ref: ../wfi_detector-1.0.0 required: [name, detector] required: [reftype, author, description, pedigree, useafter, telescope, origin, instrument] diff --git a/src/rad/resources/schemas/reference_files/ref_exposure_type-1.0.0.yaml b/src/rad/resources/schemas/reference_files/ref_exposure_type-1.0.0.yaml index 466a7926..2a6bdb78 100644 --- a/src/rad/resources/schemas/reference_files/ref_exposure_type-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/ref_exposure_type-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/ref_exposure_type-1.0.0 -title: Type of data in the reference file exposure (viewing mode) +title: Exposure Type Reference Schema type: object properties: @@ -11,9 +11,17 @@ properties: type: object properties: type: - $ref: ../exposure_type-1.0.0 + title: WFI Mode + description: | + The type of data taken with the WFI. Allowed values are WFI_IMAGE for + imaging mode, WFI_GRISM and WFI_PRISM for spectral mode, WFI_DARK for + dark exposures, WFI_FLAT for flat fields, and WFI_WFSC. + $ref: ../exposure_type-1.0.0 p_exptype: - title: Applicable exposure type. + title: WFI Mode for CRDS + description: | + The potentially multiple mode strings applied to data for reference + file matching in CRDS. Modes are separated by "|". type: string pattern: "^((WFI_IMAGE|WFI_GRISM|WFI_PRISM|WFI_DARK|WFI_FLAT|WFI_WFSC)\\s*\\|\\s*)+$" required: [type,p_exptype] diff --git a/src/rad/resources/schemas/reference_files/ref_optical_element-1.0.0.yaml b/src/rad/resources/schemas/reference_files/ref_optical_element-1.0.0.yaml index 18d1c506..ee499477 100644 --- a/src/rad/resources/schemas/reference_files/ref_optical_element-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/ref_optical_element-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/ref_optical_element-1.0.0 -title: Name of the filter element used +title: Optical Element Reference Schema type: object properties: @@ -11,6 +11,9 @@ properties: type: object properties: optical_element: + title: Optical Element + description: | + The optical element filter name used. $ref: ../wfi_optical_element-1.0.0 required: [optical_element] required: [instrument] diff --git a/src/rad/resources/schemas/reference_files/refpix-1.0.0.yaml b/src/rad/resources/schemas/reference_files/refpix-1.0.0.yaml index c382cfcd..09c85039 100644 --- a/src/rad/resources/schemas/reference_files/refpix-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/refpix-1.0.0.yaml @@ -5,6 +5,8 @@ id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/refpix-1.0.0 title: Reference Pixel Correction Reference Schema +# NOTE: this needs titles and descriptions added. + datamodel_name: RefpixRefModel type: object diff --git a/src/rad/resources/schemas/reference_files/saturation-1.0.0.yaml b/src/rad/resources/schemas/reference_files/saturation-1.0.0.yaml index a10bb7ba..4ef038f4 100644 --- a/src/rad/resources/schemas/reference_files/saturation-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/saturation-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/saturation-1.0.0 -title: Saturation reference schema +title: Saturation Reference File Schema datamodel_name: SaturationRefModel @@ -18,7 +18,10 @@ properties: type: string enum: [SATURATION] data: - title: Saturation threshold + title: Saturation Threshold Array + description: | + The pixel level threshold for determining saturation before non-linearity + corrections are applied. tag: tag:stsci.edu:asdf/unit/quantity-1.* properties: value: @@ -30,7 +33,9 @@ properties: tag: tag:astropy.org:astropy/units/unit-1.* enum: ["DN"] dq: - title: 2-D data quality array for all planes + title: 2-D Data Quality Array + description: | + The 2-D data quality array for the Saturation Threshold Array. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: uint32 exact_datatype: true diff --git a/src/rad/resources/schemas/reference_files/superbias-1.0.0.yaml b/src/rad/resources/schemas/reference_files/superbias-1.0.0.yaml index 36426f26..b5c57c4e 100644 --- a/src/rad/resources/schemas/reference_files/superbias-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/superbias-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/superbias-1.0.0 -title: Super-bias reference schema +title: Super-bias Reference Schema datamodel_name: SuperbiasRefModel @@ -18,19 +18,25 @@ properties: type: string enum: [BIAS] data: - title: 2-D super-bias array + title: Two Dimensional Bias Array + description: | + Two Dimensional Bias Array. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: float32 exact_datatype: true ndim: 2 dq: + title: Two Dimensional Quality Array for all Resultants + description: | + Two Dimensional Quality Array for all Resultants. title: 2-D data quality array for all planes - tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: uint32 exact_datatype: true ndim: 2 err: - title: 2-D Error array + title: Two Dimensional Error Array + description: | + Two Dimensional Error Array. tag: tag:stsci.edu:asdf/core/ndarray-1.* datatype: float32 exact_datatype: true diff --git a/src/rad/resources/schemas/reference_files/wfi_img_photom-1.0.0.yaml b/src/rad/resources/schemas/reference_files/wfi_img_photom-1.0.0.yaml index 564b7025..53c90c62 100644 --- a/src/rad/resources/schemas/reference_files/wfi_img_photom-1.0.0.yaml +++ b/src/rad/resources/schemas/reference_files/wfi_img_photom-1.0.0.yaml @@ -3,7 +3,7 @@ $schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 id: asdf://stsci.edu/datamodels/roman/schemas/reference_files/wfi_img_photom-1.0.0 -title: WFI imaging photometric flux conversion data model +title: WFI Imaging Photometric Flux Conversion Data Mode datamodel_name: WfiImgPhotomRefModel @@ -18,14 +18,19 @@ properties: type: string enum: [PHOTOM] phot_table: - title: Photometric flux conversion factors table + title: Photometric Flux Conversion Factors Table + description: | + Table containing photometric flux conversion factors to physical units of + MJy / steradian. type: object patternProperties: "^(F062|F087|F106|F129|F146|F158|F184|F213|GRISM|PRISM|DARK)$": type: object properties: photmjsr: - title: Surface brightness, in MJy/steradian + title: Surface Brightness + description: | + Surface brightness, in MJy / steradian. anyOf: - tag: tag:stsci.edu:asdf/unit/quantity-1.* properties: @@ -36,7 +41,9 @@ properties: enum: [MJy.sr**-1] - type: "null" uncertainty: - title: Uncertainty of surface brightness, in MJy/steradian + title: Surface Brightness Uncertainty + description: | + Uncertainty of surface brightness, in MJy / steradian. anyOf: - tag: tag:stsci.edu:asdf/unit/quantity-1.* properties: @@ -47,7 +54,9 @@ properties: enum: [MJy.sr**-1] - type: "null" pixelareasr: - title: Nominal pixel area, in steradian + title: Pixel Area + description: | + The nominal pixel area, in steradian. anyOf: - tag: tag:stsci.edu:asdf/unit/quantity-1.* properties: