import {JSONSchema7} from 'json-schema'; export default { $id: 'https://schemas.coastapp.com/card/v1/tagOption.json', $schema: 'http://json-schema.org/draft-07/schema', title: 'Tag Option', type: 'object', additionalProperties: false, properties: { name: {type: 'string'}, value: {type: 'string'}, label: {type: 'string'}, theme: { $ref: 'https://schemas.coastapp.com/card/v1/theme.json', }, }, required: ['name', 'value'], } as JSONSchema7;