scale-1.0.0

A Scale model.

Description

Multiply the input by a factor.

Outline

Schema Definitions

This node must validate against all of the following:

  • This type is an object with the following properties:

    • factor

      numberRequired

      Multiplication factor.

Original Schema

%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/scale-1.0.0"
title: >
  A Scale model.
description: >
  Multiply the input by a factor.

allOf:
  - $ref: "transform-1.0.0"
  - type: object
    properties:
      factor:
        type: number
        description: Multiplication factor.
    required: [factor]
...