msos_stack-1.0.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

    objectRequired

    Flux array of stacked image data.

    This node has no type definition (unrestricted)
  • uncertainty

    objectRequired

    Uncertainty array of stacked image data.

    This node has no type definition (unrestricted)
  • mask

    objectRequired

    Mask array of stacked image data.

    This node has no type definition (unrestricted)
  • coverage

    objectRequired

    Coverage array of stacked image data.

    This node has no type definition (unrestricted)

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.0.0

title: |
  MSOS Stack Level 3 Schema

datamodel_name: MsosStackModel

type: object
properties:
  meta:
    allOf:
      - $ref: common-1.0.0
      - image_list:
          type: string
  data:
    title: Flux Data
    description: |
      Flux array of stacked image data.
    value:
      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.
    value:
      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.
    value:
      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.
    value:
      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]
...