core/dimension-0.1.0#

Schema that describes a dimension

Description

This class is a slight modification of the corresponding NetCDF datamodel item. (See https://www.unidata.ucar.edu/software/netcdf/docs/netcdf_data_model.html)

Outline

Schema Definitions

This type is an object with the following properties:
  • name
    stringRequired
    Name of the dimension.

    No length restriction
  • length
    integerRequired
    Length of the dimension.

Original Schema

%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "asdf://weldx.bam.de/weldx/schemas/core/dimension-0.1.0"

title: |
  Schema that describes a dimension
description: |
  This class is a slight modification of the corresponding NetCDF datamodel item.
  (See https://www.unidata.ucar.edu/software/netcdf/docs/netcdf_data_model.html)
type: object
properties:
  name:
    description: |
      Name of the dimension.
    type: string
  length:
    description: |
      Length of the dimension.
    type: integer


required: [name, length]
propertyOrder: [name, length]
flowStyle: block
...