1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
4id: "http://astropy.org/schemas/astropy/coordinates/skycoord-1.0.0"
5tag: "tag:astropy.org:astropy/coordinates/skycoord-1.0.0"
6
7title: |
8  Represents a SkyCoord object from astropy
9
10allOf:
11  - type: object
12    properties:
13      frame:
14        description: |
15          A string describing the kind of frame that is represented by this
16          SkyCoord object. This value is used when reconstructing SkyCoord.
17        type: string
18required: [frame]
19additionalProperties: true
20...
21