aws/process/gas_component-1.0.0

Shielding gas component

Description

A single gas element of a mixture and its percentage of the mixture by weight.

Outline

Schema Definitions

This type is an object with the following properties:
  • gas_chemical_name
    stringRequired
    Name of a single element or compound of gas.

    No length restriction
    Only the following values are valid for this node:
    • argon

    • carbon dioxide

    • helium

    • hydrogen

    • oxygen

  • gas_percentage
    tag:stsci.edu:asdf/unit/quantity-1.1.0Required
    Percentage by weight this gas occupies of the total gas mixture.

Original Schema

%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://weldx.bam.de/schemas/weldx/aws/process/gas_component-1.0.0"
tag: "tag:weldx.bam.de:weldx/aws/process/gas_component-1.0.0"

title: |
  Shielding gas component
description: |
  A single gas element of a mixture and its percentage of the mixture by weight.
type: object
properties:
  gas_chemical_name:
    description: |
      Name of a single element or compound of gas.
    type: string
    enum:
      - argon
      - carbon dioxide
      - helium
      - hydrogen
      - oxygen

  gas_percentage:
    description: |
      Percentage by weight this gas occupies of the total gas mixture.
    $ref: tag:stsci.edu:asdf/unit/quantity-1.1.0



required: [gas_chemical_name, gas_percentage]
propertyOrder: [gas_chemical_name, gas_percentage]
flowStyle: block
...