msos_stack-1.3.0

MSOS Stack Level 3 Schema

Outline

Schema Definitions

This type is an object with the following properties:

  • meta

    objectRequired

    This node must validate against all of the following:

  • data

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

    Flux Data

    Flux array of stacked image data.

  • uncertainty

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

    Uncertainty Data

    Uncertainty array of stacked image data.

  • mask

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

    Mask Data

    Mask array of stacked image data.

  • coverage

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

    Coverage Data

    Coverage array of stacked image data.

Original Schema

%YAML 1.1
---
$schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0
id: asdf://stsci.edu/datamodels/roman/schemas/msos_stack-1.3.0

title: |
  MSOS Stack Level 3 Schema

datamodel_name: MsosStackModel

type: object
properties:
  meta:
    allOf:
      - $ref: asdf://stsci.edu/datamodels/roman/schemas/common-1.3.0
      - type: object
        properties:
          image_list:
            type: string
  data:
    title: Flux Data
    description: |
      Flux array of stacked image data.
    tag: tag:stsci.edu:asdf/core/ndarray-1.*
    datatype: float64
    exact_datatype: true
    ndim: 2
  uncertainty:
    title: Uncertainty Data
    description: |
      Uncertainty array of stacked image data.
    tag: tag:stsci.edu:asdf/core/ndarray-1.*
    datatype: float64
    exact_datatype: true
    ndim: 2
  mask:
    title: Mask Data
    description: |
      Mask array of stacked image data.
    tag: tag:stsci.edu:asdf/core/ndarray-1.*
    datatype: uint8
    exact_datatype: true
    ndim: 2
  coverage:
    title: Coverage Data
    description: |
      Coverage array of stacked image data.
    tag: tag:stsci.edu:asdf/core/ndarray-1.*
    datatype: uint8
    exact_datatype: true
    ndim: 2
propertyOrder: [meta, data, uncertainty, mask, coverage]
flowStyle: block
required: [meta, data, uncertainty, mask, coverage]