1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/asdf/asdf-schema-1.0.0"
4id: "http://astropy.org/schemas/astropy/time/time-1.1.0"
5title: Represents an instance of TimeDelta from astropy
6description: |
7  Represents the time difference between two times.
8
9type: object
10properties:
11    jd1:
12      anyOf:
13        - type: number
14        - $ref: "tag:stsci.edu:asdf/core/ndarray-1.0.0"
15      description: |
16        Value representing first 64 bits of precision
17    jd2:
18      anyOf:
19        - type: number
20        - $ref: "tag:stsci.edu:asdf/core/ndarray-1.0.0"
21      description: |
22        Value representing second 64 bits of precision
23    format:
24      type: string
25      description: |
26        Format of time value representation.
27    scale:
28      type: string
29      description: |
30        Time scale of input value(s).
31      enum: [tdb, tt, ut1, tcg, tcb, tai, local]
32required: [jd1, jd2, format]
33additionalProperties: False
34...
35