import {JSONSchema7} from 'json-schema'; export default { $id: 'https://schemas.coastapp.com/card/v1/sortBy.json', $schema: 'http://json-schema.org/draft-07/schema', title: 'Sort By', type: 'object', additionalProperties: false, properties: { field: {type: 'string', default: 'name'}, direction: {type: 'string', enum: ['ASC', 'DESC'], default: 'ASC'}, }, required: ['field'], } as JSONSchema7;