reference_files/wfi_img_photom-1.1.0

WFI Imaging Photometric Flux Conversion Data Model

Outline

Schema Definitions

This type is an object with the following properties:

  • meta

    objectRequired

    This node must validate against all of the following:

  • phot_table

    objectRequired

    Photometric Flux Conversion Factors Table

    Table containing photometric flux conversion factors to physical units of MJy / steradian.

    object

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/wfi_img_photom-1.1.0

title: WFI Imaging Photometric Flux Conversion Data Model

datamodel_name: WfiImgPhotomRefModel

type: object
properties:
  meta:
    allOf:
      - $ref: asdf://stsci.edu/datamodels/roman/schemas/reference_files/ref_common-1.0.0
      - type: object
        properties:
          reftype:
            type: string
            enum: [PHOTOM]
  phot_table:
    title: Photometric Flux Conversion Factors Table
    description: |
      Table containing photometric flux conversion factors to physical units of
      MJy / steradian.
    type: object
    patternProperties:
      "^(F062|F087|F106|F129|F146|F158|F184|F213|GRISM|PRISM|DARK|NOT_CONFIGURED)$":
        type: object
        properties:
          photmjsr:
            title: Surface Brightness
            description: |
              Surface brightness, in MJy / steradian.
            anyOf:
              - type: number
              - type: "null"
          uncertainty:
            title: Surface Brightness Uncertainty
            description: |
              Uncertainty of surface brightness, in MJy / steradian.
            anyOf:
              - type: number
              - type: "null"
          pixelareasr:
            title: Pixel Area
            description: |
              The nominal pixel area, in steradian.
            anyOf:
              - type: number
              - type: "null"
        required: [photmjsr, uncertainty, pixelareasr]
    additionalProperties: false
required: [meta, phot_table]
flowStyle: block
propertyOrder: [meta, phot_table]