mask-1.0.0

Mask Reference File Schema

Outline

Schema Definitions

This type is an object with the following properties:

  • meta

    objectRequired

    This node must validate against all of the following:

    • This type is an object with the following properties:

      • reftype

        string
        No length restriction

        Only the following values are valid for this node:

        • MASK

  • dq

    tag:stsci.edu:asdf/core/ndarray-1.*Required

    The Mask Data Quality Array is the pixel value of the sum of bit integer dq flags.

Original Schema

%YAML 1.1
---
$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: Mask Reference File Schema

datamodel_name: MaskRefModel

type: object
properties:
  meta:
    allOf:
      - $ref: ref_common-1.0.0
      - type: object
        properties:
          reftype:
            type: string
            enum: [MASK]
  dq:
    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
    ndim: 2
required: [meta, dq]
flowStyle: block
propertyOrder: [meta, dq]
...