Descriptive is an interface for types that have a description. The description is used in the schema. To provide a full definition, implement Definitive instead.
| 1272 | // The description is used in the schema. To provide a full definition, |
| 1273 | // implement Definitive instead. |
| 1274 | type Descriptive interface { |
| 1275 | TypeDescription() string |
| 1276 | } |
| 1277 | |
| 1278 | // Definitive is a type that knows how to define itself in the schema. |
| 1279 | type Definitive interface { |
no outgoing calls
no test coverage detected