unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
21 lines • 735 B
JavaScript
import { edgeTokenSchema } from './edge-token-schema.js';
export const validatedEdgeTokensSchema = {
$id: '#/components/schemas/validatedEdgeTokensSchema',
type: 'object',
additionalProperties: false,
required: ['tokens'],
description: `A object containing a list of valid Unleash tokens.`,
properties: {
tokens: {
description: 'The list of Unleash token objects. Each object contains the token itself and some additional metadata.',
type: 'array',
items: { $ref: '#/components/schemas/edgeTokenSchema' },
},
},
components: {
schemas: {
edgeTokenSchema,
},
},
};
//# sourceMappingURL=validated-edge-tokens-schema.js.map