UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

21 lines 691 B
import { unknownFlagSchema } from './unknown-flag-schema.js'; export const unknownFlagsResponseSchema = { $id: '#/components/schemas/unknownFlagsResponseSchema', type: 'object', additionalProperties: false, required: ['unknownFlags'], description: 'A list of unknown flags that have been reported by the system', properties: { unknownFlags: { description: 'The list of recently reported unknown flags.', type: 'array', items: { $ref: unknownFlagSchema.$id }, }, }, components: { schemas: { unknownFlagSchema, }, }, }; //# sourceMappingURL=unknown-flags-response-schema.js.map