meta/rcs-1.0.0

Relative Calibration System Information

Outline

Schema Definitions

This type is an object with the following properties:

  • active

    booleanRequired

    Status of the Relative Calibration System (RCS)

    A boolean flag to indicate if the Relative Calibration System (RCS) is on (True) or off (False) during the exposure.

  • electronics

    objectRequired

    Relative Calibration System (RCS) Electronics Side

    The active redundant electronics used to control the Relative Calibration System (RCS). Values may be “A” or “B” if the RCS is on, and “N/A” if the RCS is off.

    This node must validate against any of the following:

    • string

      No length restriction

      Only the following values are valid for this node:

      • A

      • B

      • None

    • null

  • bank

    objectRequired

    Light Emitting Diode (LED) Bank Selection

    The bank of light emitting diodes (LEDs) selected in the program specification in the Astronomer’s Proposal Tool (APT). Values may be either “1” or “2” if the RCS is on, and “N/A” if the RCS is off.

    This node must validate against any of the following:

    • string

      No length restriction

      Only the following values are valid for this node:

      • 1

      • 2

      • None

    • null

  • led

    objectRequired

    Light Emitting Diode (LED) Passband

    The light emitting diode (LED) passband selected in the program specification in the Astronomer’s Proposal Tool (APT). Values are integer strings between “1” and “6” inclusive, when the RCS is on, and “N/A” when the RCS is off.

    This node must validate against any of the following:

    • string

      No length restriction

      Only the following values are valid for this node:

      • 1

      • 2

      • 3

      • 4

      • 5

      • 6

      • None

    • null

  • counts

    integerRequired

    Light Emitting Diode (LED) Flux (DN)

    The integrated number of counts of the light emitting diode (LED) selected in the program specification in the Astronomer’s Proposal Tool (APT). Values are between 0 and 65,535 in units of DN.

Original Schema

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

title: Relative Calibration System Information
type: object
properties:
  active:
    title: Status of the Relative Calibration System (RCS)
    description: |
      A boolean flag to indicate if the Relative Calibration
      System (RCS) is on (True) or off (False) during the exposure.
    type: boolean
    sdf:
      special_processing: VALUE_REQUIRED
      source:
        origin: TBD
    archive_catalog:
      datatype: nchar(1)
      destination: [WFIExposure.active]
  electronics:
    title: Relative Calibration System (RCS) Electronics Side
    description: |
      The active redundant electronics used to control the
      Relative Calibration System (RCS). Values may be "A" or "B" if
      the RCS is on, and "N/A" if the RCS is off.
    anyOf:
      - type: string
        enum: ["A", "B", None]
      - type: "null"
    archive_catalog:
      datatype: nvarchar(5)
      destination: [WFIExposure.electronics]
  bank:
    title: Light Emitting Diode (LED) Bank Selection
    description: |
      The bank of light emitting diodes (LEDs) selected in
      the program specification in the Astronomer's Proposal Tool
      (APT). Values may be either "1" or "2" if the RCS is on, and
      "N/A" if the RCS is off.
    anyOf:
      - type: string
        enum: ["1", "2", None]
      - type: "null"
    archive_catalog:
      datatype: nvarchar(5)
      destination: [WFIExposure.bank]
  led:
    title: Light Emitting Diode (LED) Passband
    description: |
      The light emitting diode (LED) passband selected in
      the program specification in the Astronomer's Proposal Tool
      (APT). Values are integer strings between "1" and "6" inclusive,
      when the RCS is on, and "N/A" when the RCS is off.
    anyOf:
      - type: string
        enum: ["1", "2", "3", "4", "5", "6", None]
      - type: "null"
    archive_catalog:
      datatype: nvarchar(5)
      destination: [WFIExposure.led]
  counts:
    title: Light Emitting Diode (LED) Flux (DN)
    description: |
      The integrated number of counts of the light emitting
      diode (LED) selected in the program specification in the
      Astronomer's Proposal Tool (APT). Values are between 0 and
      65,535 in units of DN.
    type: integer
    archive_catalog:
      datatype: int
      destination: [WFIExposure.counts]
required: [active, electronics, bank, led, counts]