unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
16 lines • 430 B
JavaScript
export const nameSchema = {
$id: '#/components/schemas/nameSchema',
type: 'object',
additionalProperties: false,
required: ['name'],
description: 'An object with a name',
properties: {
name: {
description: 'The name of the represented object.',
example: 'betaUser',
type: 'string',
},
},
components: {},
};
//# sourceMappingURL=name-schema.js.map