unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
19 lines • 630 B
JavaScript
export const tokenStringListSchema = {
$id: '#/components/schemas/tokenStringListSchema',
type: 'object',
description: 'A list of unleash tokens to validate against known tokens',
required: ['tokens'],
properties: {
tokens: {
description: 'Tokens that we want to get access information about',
type: 'array',
items: { type: 'string' },
example: [
'aproject:development.randomstring',
'[]:production.randomstring',
],
},
},
components: {},
};
//# sourceMappingURL=token-string-list-schema.js.map