unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
18 lines • 662 B
JavaScript
import { splashRequestSchema } from './splash-request-schema.js';
export const splashResponseSchema = {
...splashRequestSchema,
$id: '#/components/schemas/splashResponseSchema',
additionalProperties: false,
description: 'Data related to a user having seen a splash screen.',
required: [...splashRequestSchema.required, 'seen'],
properties: {
...splashRequestSchema.properties,
seen: {
type: 'boolean',
description: 'Indicates whether the user has seen the splash screen or not.',
example: true,
},
},
components: {},
};
//# sourceMappingURL=splash-response-schema.js.map