UNPKG

unleash-server

Version:

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

19 lines 643 B
export const doraFeaturesSchema = { $id: '#/components/schemas/doraFeaturesSchema', type: 'object', additionalProperties: false, required: ['name', 'timeToProduction'], description: 'The representation of a dora time to production feature metric', properties: { name: { type: 'string', description: 'The name of a feature flag', }, timeToProduction: { type: 'number', description: 'The average number of days it takes a feature flag to get into production', }, }, components: {}, }; //# sourceMappingURL=dora-features-schema.js.map