wfi_mode-1.0.0

WFI Observing Configuration

Outline

Schema Definitions

This type is an object with the following properties:

  • name

    stringRequired

    Instrument used to acquire the data.

    No length restriction

    Only the following values are valid for this node:

    • WFI

  • detector

    wfi_detector-1.0.0Required

    WFI detector used to take the data.

  • optical_element

    wfi_optical_element-1.0.0Required

    WFI optical element used to take the 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/wfi_mode-1.0.0


title: WFI Observing Configuration
type: object
properties:
  name:
    title: Instrument Used to Acquire the Data
    description: |
      Instrument used to acquire the data.
    type: string
    enum: [WFI]
    sdf:
      special_processing: VALUE_REQUIRED
      source:
        origin: TBD
    archive_catalog:
      datatype: nvarchar(5)
      destination: [WFIExposure.instrument_name, GuideWindow.instrument_name, WFICommon.instrument_name]
  detector:
    title: WFI Detector
    description: |
      WFI detector used to take the data.
    $ref: wfi_detector-1.0.0
    sdf:
      special_processing: VALUE_REQUIRED
      source:
        origin: TBD
    archive_catalog:
      datatype: nvarchar(10)
      destination: [WFIExposure.detector, GuideWindow.detector, WFICommon.detector]
  optical_element:
    title: WFI Optical Element
    description: |
      WFI optical element used to take the data.
    $ref: wfi_optical_element-1.0.0
    sdf:
      special_processing: VALUE_REQUIRED
      source:
        origin: TBD
    archive_catalog:
      datatype: nvarchar(20)
      destination: [WFIExposure.optical_element, GuideWindow.optical_element, WFICommon.optical_element]
propertyOrder: [detector, optical_element, name]
flowStyle: block
required: [detector, optical_element, name]
...