import {JSONSchema7} from 'json-schema'; export default { $id: 'https://schemas.coastapp.com/card/v1/textStyle.json', $schema: 'http://json-schema.org/draft-07/schema', title: 'Text Style', type: 'string', enum: [ 'h1', 'h2', 'h3', 'h4', 'subtitle', 'body1', 'body1inactive', 'body1bold', 'body2', 'body2bold', 'overline', 'overlinebold', 'caption1', 'caption1bold', 'caption2', 'caption2bold', ], default: 'body1', } as JSONSchema7;