import {JSONSchema7} from 'json-schema'; const Colors = [ 'tagPink', 'tagYellow', 'tagDewGreen', 'tagCoastGreen', 'tagCoolBlue', 'tagPurple', 'tagGray', ]; export default { $id: 'https://schemas.coastapp.com/card/v1/color.json', $schema: 'http://json-schema.org/draft-07/schema', title: 'Color', type: 'string', tsEnumNames: Colors, enum: Colors, } as JSONSchema7;