1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
4id: "http://astropy.org/schemas/astropy/coordinates/spectralcoord-1.0.0"
5tag: "tag:astropy.org:astropy/coordinates/spectralcoord-1.0.0"
6
7title: >
8  Represents a SpectralCoord object from astropy
9
10type: object
11properties:
12  value:
13    description: |
14      A vector of one or more values
15    anyOf:
16      - type: number
17      - $ref: "http://stsci.edu/schemas/asdf/core/ndarray-1.0.0"
18  unit:
19    description: |
20      The unit corresponding to the values
21    $ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0"
22  observer:
23    description: |
24      The observer frame for this coordinate
25    $ref: "http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.0.0"
26  target:
27    description: |
28      The target frame for this coordinate
29    $ref: "http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.0.0"
30required: [value, unit]
31...
32