unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
20 lines • 667 B
JavaScript
export const feedbackCreateSchema = {
$id: '#/components/schemas/feedbackCreateSchema',
required: ['feedbackId'],
type: 'object',
description: 'User feedback information to be created.',
properties: {
neverShow: {
description: '`true` if the user has asked never to see this feedback questionnaire again. Defaults to `false`.',
type: 'boolean',
example: false,
},
feedbackId: {
description: 'The name of the feedback session',
type: 'string',
example: 'pnps',
},
},
components: {},
};
//# sourceMappingURL=feedback-create-schema.js.map