UNPKG

unleash-server

Version:

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

20 lines 672 B
import { requestsPerSecondSchema } from './requests-per-second-schema.js'; export const requestsPerSecondSegmentedSchema = { $id: '#/components/schemas/requestsPerSecondSegmentedSchema', type: 'object', description: 'Get usage metrics separated by client and admin paths', properties: { clientMetrics: { $ref: '#/components/schemas/requestsPerSecondSchema', }, adminMetrics: { $ref: '#/components/schemas/requestsPerSecondSchema', }, }, components: { schemas: { requestsPerSecondSchema, }, }, }; //# sourceMappingURL=requests-per-second-segmented-schema.js.map