1%YAML 1.1
2---
3$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
4id: "http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.0.0"
5
6title: |
7  Represents a coordinate frame object from astropy
8
9description: |
10  This schema is designed to be extended by other schemas to restrict the
11  allowable frame_attributes.
12
13type: object
14properties:
15  data:
16    description: |
17      The representation object holding any data associated with the frame.
18    $ref: "../representation-1.0.0"
19  frame_attributes:
20    description: |
21      Attributes on the coordinate frame.
22    type: object
23
24
25additionalProperties: false
26required: [frame_attributes]
27...
28